@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/Inter-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/Inter-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/Inter-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/Inter-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("assets/webfonts/fa-brands-400.woff2") format("woff2"),
        url("assets/webfonts/fa-brands-400.ttf") format("truetype");
}

@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("assets/webfonts/fa-solid-900.woff2") format("woff2"),
        url("assets/webfonts/fa-solid-900.ttf") format("truetype");
}

:root {
    /* NEON tema palitrası (mavi / bənövşəyi neon) */
    --main-color: #19a8ff;
    /* neon mavi */
    --second-color: #b14bff;
    /* neon bənövşəyi */
    --extra-color: #ff3d71;
    /* neon çəhrayı */
    --text-color: #8b9bc4;
    /* solğun mavi-boz mətn */
    --light-color: #131a36;
    /* tünd "açıq" fon */
    --border-color: #1e2a52;
    /* tünd kənar */
    /* neon köməkçi dəyişənlər */
    --neon-bg: #070b1c;
    --neon-bg-2: #0a1130;
    --neon-panel: rgba(17, 25, 55, .72);
    --neon-panel-solid: #0e1633;
    --neon-text: #e7ecff;
    --neon-glow: 0 0 18px rgba(25, 168, 255, .55);
    --neon-glow-strong: 0 0 26px rgba(25, 168, 255, .8), 0 0 8px rgba(177, 75, 255, .6);
    --neon-border: 1px solid rgba(25, 168, 255, .35);
    --canvas-width: 300px;
    --form-height: 48px;
    --border-radius: 5px;
    --font-size: 15px;
    --aspect-ratio: 1;
    --font-family: 'Inter', Arial, Helvetica, sans-serif;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    line-height: 1.3;
    color: var(--neon-text);
}

* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: var(--font-size);
    color: var(--neon-text);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    width: 100%;
    font-family: var(--font-family);
    /* NEON: tünd kosmik fon + mavi/bənövşəyi işıqlar */
    background-color: var(--neon-bg);
    background-image:
        radial-gradient(circle at 12% 8%, rgba(25, 168, 255, .18), transparent 42%),
        radial-gradient(circle at 88% 4%, rgba(177, 75, 255, .18), transparent 40%),
        radial-gradient(circle at 50% 100%, rgba(25, 168, 255, .12), transparent 55%),
        linear-gradient(180deg, var(--neon-bg) 0%, var(--neon-bg-2) 100%);
    background-attachment: fixed;
}

a {
    color: var(--neon-text);
}

a:hover {
    color: var(--main-color);
}

#outer-wrap {
    overflow: hidden;
}

.full-width {
    width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    left: 50%;
    right: 50%;
    position: relative;
}

.container,
.has-sidebar #content-wrap {
    width: 1350px;
    margin: 0 auto;
    max-width: 90%;
    position: relative;
    z-index: 1;
}

#primary {
    padding-bottom: 60px;
}

.home #primary,
.single-product #primary {
    padding-bottom: 0;
}

ul,
ol {
    margin: 0 0 20px 30px;
    padding: 0;
}

button {
    padding: 0;
    border: 0;
    cursor: pointer;
    font-size: var(--font-size);
    font-family: var(--font-family);
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

p {
    margin: 0 0 15px;
}

a,
:visited {
    text-decoration: none;
    transition: .15s all;
}

iframe {
    border: 0;
    max-width: 100%;
}



/* Layout */
.right-sidebar #content-wrap,
.left-sidebar #content-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.right-sidebar #primary {
    width: calc(100% - 380px);
}

.left-sidebar #primary {
    width: calc(100% - 380px);
}

.has-sidebar #sidebar {
    width: 300px;
}

.right-sidebar #sidebar {
    order: 2;
}

@media (max-width: 959px) {

    .has-sidebar #primary,
    .has-sidebar #sidebar {
        width: 100%;
        padding: 0;
    }

    #primary {
        order: 1;
    }

    #sidebar {
        margin-top: 40px;
        order: 2;
    }
}


/* Header */
#site-header {
    position: relative;
    z-index: 10;
}

.master-header-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100px;
    gap: 40px;
}

#site-logo {
    width: 130px;
    flex: 0 0 auto;
    flex-shrink: 0;
}

#navigation {
    position: relative;
    z-index: 5;
}

#site-navigation-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-top: 1px solid var(--border-color);
}

#site-navigation-wrap .master-main-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0 0 0 30px;
    gap: 30px;
}

#site-navigation-wrap .master-main-menu>.menu-item {
    height: 55px;
    display: flex;
    align-items: center;
}

#site-navigation-wrap .master-main-menu a {
    white-space: nowrap;
    font-weight: 600;
}

#site-navigation-wrap .master-main-menu a:hover,
#site-navigation-wrap .current-menu-item>a {
    color: var(--main-color);
}

#site-navigation-wrap .master-main-menu>.menu-item-has-children>a:after {
    content: "\e973";
    font-family: 'Feather';
    padding-left: 5px;
}

#site-navigation-wrap .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin: 0;
    list-style: none;
    padding: 0;
    border: 1px solid #ddd;
    border-bottom: 0;
    z-index: 10;
    background: white;
    min-width: 120px;
}

#site-navigation-wrap .master-main-menu>.menu-item-has-children>.sub-menu {
    border-top: 3px solid var(--main-color);
}

#site-navigation-wrap .menu-item-has-children:hover>.sub-menu {
    display: block;
}

#site-navigation-wrap .master-main-menu .sub-menu li {
    margin: 0;
    position: relative;
}

#site-navigation-wrap .sub-menu a {
    padding: 10px 15px;
    display: block;
    border-bottom: 1px solid #ddd;
    height: auto;
    line-height: normal;
    white-space: nowrap;
}

#site-navigation-wrap .sub-menu a:hover {
    background: #f5f5f5;
}

#site-navigation-wrap .sub-menu .sub-menu {
    position: absolute;
    left: 100%;
    top: 0;
    display: none;
}

#site-navigation-wrap .sub-menu .menu-item-has-children>a:after {
    content: "\e930";
    font-family: 'Feather';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

#site-navigation-wrap .sub-menu .menu-item-has-children>a {
    padding-right: 30px;
    position: relative;
}

@media (max-width: 1200px) {
    #site-navigation-wrap .master-main-menu {
        padding: 0 0 0 20px;
        gap: 20px;
    }
}

@media (max-width: 1100px) {
    #navigation {
        display: none;
    }
}



/* Header contact */
.header-contact {
    line-height: 1.5;
    font-weight: 500;
    white-space: nowrap;
}

.header-contact i {
    margin-right: 10px;
    opacity: .3;
    width: 15px;
    display: inline-block;
}

@media (max-width: 1200px) {
    #header-contact {
        display: none;
    }
}



/* Mobile menu */
#mobile-sidebar-menu {
    position: absolute;
    right: 0;
    font-size: 22px;
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
}

.mobile-menu-area {
    position: fixed;
    width: 300px;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    background: white;
    overflow: hidden;
    transform: translate3d(100%, 0, 0);
    transition: .3s all;
}

.active-mobile-menu {
    transform: none;
}

.mobile-menu-sidebar {
    height: calc(100% - 71px);
    overflow-y: auto;
}

.mobil-menu-line-icon {
    position: relative;
    cursor: pointer;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    transition: .3s all;
}

.mobile-menu>ul>li ul {
    display: none;
}

.has_child_menu>ul {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
}

.mobile-menu-item-label {
    position: relative;
}

.mobile-menu-item-label:after {
    content: "\e930";
    font-family: 'Feather';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu li a,
.has_child_menu>div {
    display: block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
}

.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.mobile-menu-action-icon {
    font-size: 20px;
    background: #eee;
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.mobile-menu-back-button {
    visibility: hidden;
}

.master-overlay,
.cart-overlay,
.product-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    display: none;
}

@media (min-width: 1100px) {

    #mobile-sidebar-menu,
    .mobile-menu-area {
        display: none;
    }
}



/* Page header */
#page-header {
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin-bottom: 25px;
}

#page-header::-webkit-scrollbar {
    display: none;
}

.breadcrumbs {
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    white-space: nowrap;
}

.breadcrumbs {
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--text-color);
}

.breadcrumbs a:hover {
    color: #000;
}



/* Index */
.master-posts {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px -60px;
}

.master-post {
    width: 25%;
    padding: 0 15px 60px;
}

.master-post-thumbnail {
    margin-bottom: 20px;
}

.master-post-thumbnail img {
    background: var(--light-color);
    aspect-ratio: 5 / 3.2;
    object-fit: cover;
}

.master-post-thumbnail a {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.master-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    transition: .3s all;
}

.master-post-thumbnail a:hover .master-post-overlay {
    opacity: .3;
}

.master-post-title {
    margin-bottom: 15px;
}

.master-post-title a {
    font-size: 17px;
    line-height: 1.4;
    display: block;
    font-weight: 600;
}

.master-post-date {
    position: absolute;
    top: 15px;
    left: 0;
    background: white;
    padding: 3px 15px;
    font-size: 14px;
    border-top-right-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}

.master-post-excerpt {
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--text-color, #9aa4c4);
}

.master-post-button a {
    display: table;
    font-size: 16px;
}

.master-post-button a:after {
    content: '\e912';
    font-family: feather;
    margin-left: 10px;
    transition: .3s all;
}

.master-post-inner:hover .master-post-button a:after {
    margin-left: 15px;
}

@media (max-width: 500px) {
    .master-post {
        width: 100% !important;
    }
}

@media (min-width: 501px) and (max-width: 999px) {
    .master-post {
        width: 50% !important;
    }
}


/* Footer */
#footer {
    background-color: #f9fafc;
    font-size: 14px;
}

#footer,
#footer a {
    color: #000;
}

#footer a:hover {
    color: #999;
}

.footer-blocks {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 0;
    margin: 0 -15px -40px;
}

.footer-block {
    width: 25%;
    padding: 0 15px 40px;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.3;
}

.solid-menu {
    list-style: none;
    margin: 0;
}

.solid-menu li:not(:last-child) {
    margin-bottom: 3px;
}

.footer-stores {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px -10px;
}

.footer-store {
    width: 50%;
    padding: 0 5px 10px;
}

.footer-desc {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 15px;
}

@media (max-width: 1000px) {
    .footer-block {
        width: 33.3%;
    }
}

@media (max-width: 600px) {
    .footer-block {
        width: 50%;
    }

    .footer-block:last-child {
        width: 100%;
    }

    .footer-store {
        max-width: 150px;
    }
}




/* Footer top */
#footer-top-area {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.footer-top-blocks {
    display: flex;
    justify-content: center;
    margin: 0 -15px -30px;
}

.footer-top-block {
    width: 50%;
    padding: 0 15px 30px;
}

.ftb-1 {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.footer-icon-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.footer-icon-details {
    line-height: 1.4;
}

.footer-icon-heading {
    font-weight: 600;
    margin-bottom: 5px;
}

.footer-icon-desc {
    color: var(--text-color);
}

.subscribe-blocks {
    display: flex;
    gap: 10px;
}

@media (max-width: 1000px) {
    .footer-top-blocks {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .ftb-2 {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 500px) {
    .footer-top-blocks {
        justify-content: flex-start;
    }

    .ftb-1 {
        width: 100%;
    }

    .footer-icon-box {
        gap: 10px;
    }

    .footer-icon-details {
        width: 100%;
    }
}




/* Footer bottom */
#footer-bottom {
    font-size: 14px;
    text-align: center;
}

#footer-bottom a {
    color: #767676;
}

#footer-bottom a:hover {
    color: var(--second-color);
}

#footer-bottom-inner {
    padding: 25px 0;
    border-top: 1px solid var(--border-color);
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.footer-bottom-desc {
    width: 800px;
    max-width: 100%;
    margin: 0 auto 15px;
    color: var(--text-color);
}



/* Scroll to top */
#site-scroll-top {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 998;
    cursor: pointer;
    display: none;
    width: var(--form-height);
    height: var(--form-height);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    color: white;
    font-size: 26px;
    text-align: center;
    border-radius: var(--border-radius);
}

#site-scroll-top:hover {
    background: var(--main-color);
}

@media (max-width: 767px) {
    #site-scroll-top {
        right: 20px;
        bottom: 70px;
    }
}



/* Axtaris neticeleri */
.search-title a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: black;
}


/* Pagination */
.pagination {
    margin-top: 30px;
}

.page-numbers {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    display: inline-block;
    background: #eee;
    -webkit-transition: .15s all;
    -o-transition: .15s all;
    transition: .15s all;
    color: black;
}

.page-numbers:hover,
.page-numbers.current {
    background: var(--main-color);
    color: white;
}

.page-numbers .fa {
    font-size: 12px;
}



/* Social share */
.master-social-share-area {
    margin-top: 40px;
}

.master-title {
    border-bottom: 1px solid var(--light-color);
    margin-bottom: 15px;
    padding-bottom: 5px;
    font-weight: 500;
}

.master-social-share-area ul {
    padding: 0;
    margin: 0 -5px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.master-social-share-area.share-with-label ul {
    justify-content: space-between;
}

.master-social-share-area:not(.share-with-label) {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.master-social-share-area:not(.share-with-label) .master-title {
    border-bottom: 0;
    margin: 0;
    padding: 0 15px 0 0;
}

.master-social-share-area.share-with-label li {
    width: 20%;
}

.master-social-share-area li {
    padding: 0 5px;
    text-align: center;
    -webkit-transition: .15s all;
    -o-transition: .15s all;
    transition: .15s all;
}

.master-social-share-area a {
    display: block;
}

.master-social-share-area:not(.simple-share-area) a {
    color: white;
}

.master-social-share-area.simple-share-area a {
    color: black;
}

.master-social-share-area.share-with-label a {
    padding: 5px 15px;
    border-radius: var(--border-radius);
}

.master-social-share-area:not(.share-with-label) a {
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    border-radius: var(--border-radius);
}

.share-with-label li i {
    margin-right: 10px;
}

.simple-share-area.share-with-label a {
    border: 1px solid #eee;
}

.master-social-share-area:not(.simple-share-area) .twitter-share a {
    background: #00aced;
}

.master-social-share-area:not(.simple-share-area) .twitter-share a:hover {
    background: #0093cb;
}

.master-social-share-area:not(.simple-share-area) .facebook-share a {
    background: #3b5998;
}

.master-social-share-area:not(.simple-share-area) .facebook-share a:hover {
    background: #324b80;
}

.master-social-share-area:not(.simple-share-area) .telegram-share a {
    background: #0088cc;
}

.master-social-share-area:not(.simple-share-area) .telegram-share a:hover {
    background: #3e659c;
}

.master-social-share-area:not(.simple-share-area) .email-share a {
    background: #e40303;
}

.master-social-share-area:not(.simple-share-area) .email-share a:hover {
    background: #ca0303;
}

.master-social-share-area:not(.simple-share-area) .whatsapp-share a {
    background: #30d244;
}

.master-social-share-area:not(.simple-share-area) .whatsapp-share a:hover {
    background: #25b938;
}

@media (min-width: 960px) {
    .whatsapp-mobile-share {
        display: none;
    }
}

@media (max-width: 959px) {
    .whatsapp-desktop-share {
        display: none;
    }
}

@media (min-width: 960px) and (max-width: 1050px) {
    .master-label {
        display: none;
    }

    .master-social-share-area li .fa {
        margin-right: 0;
    }
}

@media (min-width: 270px) and (max-width: 767px) {
    .master-label {
        display: none;
    }

    .master-social-share-area li .fa {
        margin-right: 0;
    }
}

@media (max-width: 269px) {
    .master-social-share-area li {
        width: 100%;
        margin-bottom: 5px;
    }
}


/* Post navigation */
#post-navigation-wrap {
    background: #eee;
    padding: 20px 0;
}

.post-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -15px;
}

.next-previous-post {
    padding: 5px 15px;
}

.no-prev-es-post {
    display: table;
    margin-left: auto;
}

.post-navigation a {
    color: black;
    position: relative;
    width: 50%;
}

.next-previous-heading {
    display: table;
    background-color: var(--main-color);
    color: white;
    padding: 3px 20px;
    margin-bottom: 10px;
    -webkit-transition: .15s all;
    -o-transition: .15s all;
    transition: .15s all;
}

.post-navigation a:hover .next-previous-heading {
    background: var(--second-color);
}

.next-post .next-previous-heading {
    margin-left: auto;
    margin-right: 0;
}

.next-post {
    text-align: right;
}

.prev-post .fa {
    margin: 0 5px 0 -5px;
}

.next-post .fa {
    margin: 0 -5px 0 5px;
}

.prev-post-no {
    display: table;
    margin-right: 0;
    margin-left: auto;
}

@media (max-width: 767px) {
    .post-navigation a {
        width: 100%;
    }
}



/* Wordpress default gallery css */
.ms-gallery-type-false {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.ms-gallery-type-true {
    column-gap: 0;
}

.ms-gallery-type-false .ms-image-9 {
    width: calc(100% / 9);
}

.ms-gallery-type-false .ms-image-8 {
    width: calc(100% / 8);
}

.ms-gallery-type-false .ms-image-7 {
    width: calc(100% / 7);
}

.ms-gallery-type-false .ms-image-6 {
    width: calc(100% / 6);
}

.ms-gallery-type-false .ms-image-5 {
    width: 20%;
}

.ms-gallery-type-false .ms-image-4 {
    width: 25%;
}

.ms-gallery-type-false .ms-image-3 {
    width: 33.3%;
}

.ms-gallery-type-false .ms-image-2 {
    width: 50%;
}

.ms-gallery-type-false .ms-image-1 {
    width: 100%;
}

.ms-image {
    padding: 0 10px 20px;
    margin: 0;
}

.ms-image a {
    display: block;
}

.ms-image img {
    background: #eee;
}

figure.image {
    margin: 0 0 20px;
}

.image figcaption {
    font-style: italic;
    margin-top: 5px;
}

.ms-gallery-tools {
    display: none;
}

@media (max-width: 340px) {
    .ms-gallery {
        margin: 0 -7.5px;
    }

    .ms-gallery-type-true {
        column-count: 1 !important;
    }

    .ms-image {
        width: 100% !important;
        padding: 0 7.5px 15px;
    }
}

@media (min-width: 341px) and (max-width: 767px) {
    .ms-gallery {
        margin: 0 -7.5px;
    }

    .ms-gallery-type-true {
        column-count: 2 !important;
    }

    .ms-image {
        width: 50% !important;
        padding: 0 7.5px 15px;
    }
}

@media (min-width: 767px) and (max-width: 959px) {
    .ms-gallery-type-true {
        column-count: 3 !important;
    }

    .ms-image {
        width: 33.3% !important;
    }
}



/* Sidebar */
.master-widget:not(:last-child) {
    margin-bottom: 40px;
}

.master-sidebar-title {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 15px;
}



/* Sidebar types */
.sidebar-type-item {
    margin-bottom: 10px;
}

.sidebar-type-item a {
    color: black;
    height: 80px;
    display: flex;
    align-items: center;
    background: #eee;
    border-radius: var(--border-radius);
    padding: 0 50px 0 20px;
    line-height: 1.4;
    font-weight: 600;
    position: relative;
    transition: .3s all;
}

.sidebar-type-item a:hover {
    transform: translateX(5px);
}

.active-type-item a {
    background: var(--main-color);
    color: white;
    pointer-events: none;
}

.sidebar-type-icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}


/* Sidebar posts */
.sidebar-post-item {
    margin-bottom: 25px;
}

.sidebar-post-item a {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    color: black;
    line-height: 1.4;
}

.sidebar-post-item a:hover {
    color: var(--main-color);
}

.sidebar-post-thumbnail {
    width: 100px;
}

.sidebar-post-thumbnail img {
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.sidebar-post-details {
    width: calc(100% - 120px);
}

.sidebar-post-title {
    font-weight: 600;
    margin-bottom: 10px;
}



/* Sidebar products (Yeni daxil olanlar) */
.master-widget-heading {
    font-weight: 700;
    font-size: 18px;
    color: var(--neon-text);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.master-widget-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--main-color), var(--second-color));
    box-shadow: var(--neon-glow);
}

.sidebar-products {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-product {
    background: var(--neon-panel);
    border: var(--neon-border);
    border-radius: var(--border-radius);
    backdrop-filter: blur(6px);
    transition: .3s all;
}

.sidebar-product:hover {
    border-color: rgba(25, 168, 255, .6);
    box-shadow: var(--neon-glow);
    transform: translateY(-2px);
}

.sidebar-product>a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px;
    color: var(--neon-text);
}

.sidebar-product-thumbnail {
    flex: 0 0 70px;
    width: 70px;
}

.sidebar-product-thumbnail img {
    width: 70px;
    height: 70px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--border-radius);
    display: block;
}

.sidebar-product-details {
    flex: 1;
    min-width: 0;
    line-height: 1.4;
}

.sidebar-product-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--neon-text);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: .3s color;
}

.sidebar-product:hover .sidebar-product-title {
    color: var(--main-color);
}

.sidebar-product-price .product-price-area {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px;
}

.sidebar-product-price .final-price {
    font-weight: 700;
    font-size: 15px;
    color: var(--main-color);
}

.sidebar-product-price .currency {
    font-size: 13px;
    color: var(--text-color);
}

.sidebar-product-price .sale-price {
    font-size: 12px;
    color: var(--text-color);
    text-decoration: line-through;
}



/* Sidebar archives */
.widget-archives {
    margin-top: 7px;
}

.widget-archives a {
    display: block;
    border-bottom: 1px solid var(--light-color);
    padding-bottom: 7px;
    padding-top: 7px;
    color: black;
}

.widget-archives a:hover {
    color: var(--main-color);
}

.widget-archives a:before {
    content: '\f114';
    font-family: FontAwesome;
    margin-right: 10px;
    color: black;
}

.sidebar-search {
    position: relative;
}

.sidebar-search input {
    width: 100%;
    height: 45px;
    border: 1px solid #ddd;
    color: black;
    padding: 0 15px;
    font-size: 15px;
}

.sidebar-search button {
    position: absolute;
    top: 0;
    right: 0;
    width: var(--form-height);
    height: var(--form-height);
    line-height: var(--form-height);
    background: var(--main-color);
    color: white;
}


/* Single post */
.single-post-title {
    padding: 40px 0 60px;
    text-align: center;
}

.single-post-thumbnail img {
    background: #eee;
    margin: 0 auto 40px;
}

.single-post-meta {
    margin-top: 10px;
}

.single-post-date,
.single-post-meta a {
    color: #666;
}

.single-post-date,
.single-post-category,
.single-post-author {
    display: inline-block;
    vertical-align: middle;
    padding-right: 30px;
}

.single-post-date:before {
    content: '\f073';
    font-family: 'FontAwesome';
    margin-right: 10px;
    color: black;
}

.single-post-category:before {
    content: '\f044';
    font-family: 'FontAwesome';
    margin-right: 5px;
}

.single-post-author:before {
    content: '\f2be';
    font-family: 'FontAwesome';
    margin-right: 5px;
}

.single-post-container-main {
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

.single-content {
    font-size: 16px;
    text-align: justify;
    line-height: 1.7;
}

.single-content h1,
.single-content h2,
.compssingle-content h3 {
    margin-bottom: 20px;
}

.single-content .ms-gallery img {
    width: 100% !important;
    max-height: inherit !important;
    height: auto !important;
}

img.aligncenter {
    margin: 0 auto;
}

.single-content h2,
.single-content h3,
.single-content h4,
.single-content h5,
.single-content h6 {
    text-align: left;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 18px;
}

.single-content ul,
.single-content ol {
    text-align: left;
}

.master-embed {
    position: relative;
    padding-top: 56%;
}

.master-embed iframe {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.alignleft {
    float: left;
}

.alignright {
    float: right;
}

.master-table {
    overflow-x: auto;
    max-width: 100%;
}

@media (max-width: 959px) {
    .single-content-part {
        width: 100%;
    }
}



/* Muellif */
.single-author-area {
    margin-bottom: 40px;
}

.single-author-heading {
    padding-right: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.single-author {
    display: table;
    width: 100%;
}

.single-author-block {
    display: table-cell;
    vertical-align: top;
}

.single-author-first {
    width: 150px;
}

.single-author-second {
    width: calc(100% - 150px);
    padding-left: 25px;
    padding-top: 5px;
}

.single-author img {
    height: 150px;
    width: 150px;
    -o-object-fit: cover;
    object-fit: cover;
}

.single-author-name {
    font-size: 20px;
}

.single-author-profession {
    font-size: 17px;
    margin-bottom: 10px;
}

.single-author-description {
    margin-bottom: 10px;
}

.no-image-author:before {
    content: '\f2be';
    font-family: FontAwesome;
    width: 150px;
    height: 150px;
    background: #eee;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 76px;
    color: #999;
}

@media (max-width: 550px) {
    .single-author-block {
        display: block;
    }

    .single-author-second {
        width: 100%;
        padding-left: 0px;
        padding-top: 15px;
    }
}


/* Youtube */
.youtube-videos {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.youtube-video {
    padding: 0 10px 20px;
    width: calc(100% / 6);
}

.youtube-thumbnail {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--light-color);
    height: 100%;
    aspect-ratio: 3 / 5.35;
    position: relative;
    cursor: pointer;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.youtube-icon-block {
    position: relative;
    width: 100%;
    cursor: pointer;
    height: 100%;
}

.youtube-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: white;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    background: rgba(22, 22, 22, 0.65);
    border-radius: 50%;
    font-size: 24px;
    opacity: 0;
    -webkit-transition: .5s all;
    -o-transition: .5s all;
    transition: .5s all;
}

.youtube-thumbnail:hover .youtube-icon {
    opacity: 1;
    width: 75px;
    height: 75px;
    line-height: 75px;
}

.youtube-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    color: white;
    transition: .5s all;
}

.youtube-thumbnail:hover .youtube-play-icon {
    opacity: 1;
}

.youtube-iframe {
    width: 100%;
    position: absolute;
    height: 100%;
    z-index: 10;
    top: 0;
}

.youtube-heading a {
    font-size: 15px;
    display: block;
    padding: 10px 0;
    line-height: 1.3;
    font-weight: 600;
}

.youtube-videos .next-videos {
    padding: 0 15px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.youtube-loading-area {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    font-size: 16px;
    color: white;
    text-shadow: 0 0 5px black;
    opacity: 0;
}

@media (max-width: 960px) {

    .youtube-icon,
    .youtube-play-icon {
        opacity: 1;
    }

    .play-video:before {
        font-size: 22px;
    }
}

@media (max-width: 1100px) {
    .youtube-video {
        width: 33.3%;
    }
}

@media (max-width: 850px) {
    .youtube-video {
        width: 50%;
    }
}

@media (max-width: 500px) {
    .youtube-video {
        width: 100%;
    }
}



/* Instagram */
.instagram-images {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.instagram-image {
    width: 25%;
    padding: 0 10px 20px;
}

.instagram-ratio {
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 100%;
}

.instagram-image-link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: block;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
    overflow: hidden;
    background-color: var(--light-color);
}

.instagram-image-link:hover .instagram-image-details {
    opacity: 1;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
}

.instagram-image-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
    opacity: 0;
}

.instagram-image-link:hover:before {
    opacity: 1;
}

.instagram-image-detallar {
    color: white;
    z-index: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-weight: 600;
    opacity: 0;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
}

.instagram-icon {
    margin: 0 3px;
}

.instagram-icon:before {
    font-family: 'FontAwesome';
    margin-right: 7px;
}

.next-images {
    width: 100%;
    padding: 0 15px;
}

.next-image-button {
    display: table;
    margin: 0 auto;
    background: var(--main-color);
    color: white;
    padding: 10px 25px;
    line-height: 1.3;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: .15s all;
    -o-transition: .15s all;
    transition: .15s all;
}

.next-image-button:hover {
    background: var(--second-color);
}

.next-image-button::-moz-selection {
    background: transparent;
}

.next-image-button::selection {
    background: transparent;
}

.instagram-nav-button {
    position: absolute;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    z-index: 1;
    font-size: 36px;
    text-shadow: 0 0 15px black;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.instagram-button-prev {
    left: 0;
}

.instagram-button-next {
    right: 0;
}

.instagram-ratio-carousel {
    position: relative;
    width: 100%;
    padding-top: 100%;
}

.instagram-carousel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.instagram-carousel,
.instagram-carousel .swiper-wrapper,
.instagram-carousel .swipet-slide {
    height: 100%;
}

.instagram-icon-area {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.instagram-icon-inner {
    position: relative;
    width: 100%;
    padding-top: 100%;
}

.instagram-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: white;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    background: var(--main-color);
    border-radius: 50%;
    font-size: 24px;
    opacity: 0;
    -webkit-transition: .5s all;
    -o-transition: .5s all;
    transition: .5s all;
}

.instagram-video:hover .instagram-icon {
    opacity: 1;
    width: 75px;
    height: 75px;
    line-height: 75px;
}

@media (min-width: 601px) and (max-width: 999px) {
    .instagram-image {
        width: 33.3%;
    }
}

@media (max-width: 600px) {
    .instagram-image {
        width: 50%;
    }
}



/* Error 404 */
.error404-content {
    text-align: center;
    padding: 20px 0;
}

.error404-content h1 {
    font-size: 44px;
}



/* Sual cavab */
.faq {
    width: 700px;
    max-width: 100%;
    margin: 0 auto 60px;
}

.master-accordion:nth-child(1) {
    border-top: 1px solid rgb(118 114 156 / 38%);
}

.master-accordion {
    border-bottom: 1px solid rgb(118 114 156 / 38%);
}

.master-accordion-title {
    font-size: 17px;
    padding: 20px 40px 20px 0;
    cursor: pointer;
    position: relative;
    line-height: 1.4;
    user-select: none;
}

.master-accordion-title:after {
    content: "\e92e";
    font-family: Feather;
    font-weight: 400;
    font-size: 16px;
    position: absolute;
    right: 0;
    top: 20px;
    transition: .3s all;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    color: white;
    background: var(--main-color);
    border-radius: 50%;
}

.master-accordion-title.active:after {
    transform: rotate(180deg);
}

.master-accordion-content {
    color: #525252;
    line-height: 1.8;
    padding-bottom: 20px;
    display: none;
}


/* Default input */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select {
    box-shadow: none;
    appearance: none;
    font-family: var(--font-family);
    width: 100%;
    border: 1px solid #41538e;
    height: var(--form-height);
    line-height: var(--form-height);
    padding: 0 15px;
    color: black;
    font-size: var(--font-size);
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 0.0625rem 0.125rem rgba(2, 6, 23, 0.05);
}

textarea {
    box-shadow: none;
    appearance: none;
    font-family: var(--font-family);
    border: 1px solid #41538e;
    width: 100%;
    padding: 10px 15px;
    color: black;
    font-size: var(--font-size);
    resize: vertical;
    min-height: 90px;
    border-radius: var(--border-radius);
    box-shadow: 0 0.0625rem 0.125rem rgba(2, 6, 23, 0.05);
}

input[type=radio] {
    box-shadow: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #c6c6c8;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    position: absolute;
    cursor: pointer;
    background: white;
    top: 1.5px;
    left: 0;
    border-radius: 50%;
}

input[type=radio]:checked {
    border-color: var(--main-color);
}

input[type=radio]:checked:before {
    content: '';
    width: 9px;
    height: 9px;
    display: block;
    border-radius: 50%;
    background: var(--main-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

input[type=radio]+label {
    user-select: none;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    padding-left: 30px;
}

input[type=checkbox] {
    box-shadow: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #41538e;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    background: white;
    top: 2px;
    left: 0;
    margin: 0;
    cursor: pointer;
    border-radius: var(--border-radius);
}

input[type=checkbox]:checked {
    background: var(--main-color);
    color: white;
}

input[type=checkbox]:checked:before {
    content: "\e92b";
    font-family: 'Feather';
    font-weight: 800;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 11px;
}

input[type=checkbox]+label {
    user-select: none;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    padding-left: 30px;
    margin-bottom: 0;
    line-height: 1.4;
}

input[type=file]::file-selector-button {
    background: var(--light-color);
    border: 1px solid var(--border-color);
    padding: 5px 15px;
}

sup,
sub {
    font-size: 12px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

select {
    -webkit-appearance: none;
    background: white;
    width: 100%;
    background-image: url(/uploads/extra/chevron-down.svg);
    background-repeat: no-repeat;
    background-position-x: calc(100% - 5px);
    background-position-y: 15px;
    background-size: 18px;
    cursor: pointer;
    padding-right: 30px;
}


/* Form */
.grecaptcha-badge {
    display: none;
}

.form-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -10px;
}

.ecommerce-address-area .form-group {
    justify-content: flex-start;
}

.form-group .form-element {
    padding: 0 10px 20px;
}

.form-100 {
    width: 100%;
}

.form-85 {
    width: 85%;
}

.form-55 {
    width: 55%;
}

.form-50 {
    width: 50%;
}

.form-33 {
    width: 33.3%;
}

.form-25 {
    width: 25%;
}

.form-15 {
    width: 15%;
}

.form-element {
    padding-bottom: 20px;
    position: relative;
}

.form-element label {
    display: block;
    width: 100%;
    margin-bottom: 7px;
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.3;
}

.form-simple-file label {
    border: 1px solid #ddd;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: var(--border-radius);
    box-shadow: 0 0.0625rem 0.125rem rgba(2, 6, 23, 0.05);
}

.form-element span {
    color: red;
    font-size: 18px;
    line-height: 0;
    margin-left: 2px;
    transform: translateY(1px);
    display: inline-block;
}

.fsf-blocks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.fsf-button {
    border: 1px solid #ddd;
    background: #eee;
    padding: 5px 15px;
    line-height: 1.3;
    margin-right: 10px;
}

.faf-items {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}

.faf-items label {
    width: auto;
}

.faf-item {
    padding: 0 5px;
}

.faf-preview img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.faf-item i {
    width: 80px;
    height: 80px;
    border: 2px dashed #ddd;
    line-height: 80px;
    text-align: center;
    font-size: 22px;
    background: #f5f5f5;
    cursor: pointer;
}

.form-result:not(:empty) {
    margin-top: 20px;
}

.form-simple-file input,
.form-advanced-file input {
    display: none;
}

.form-choices {
    display: flex;
    flex-wrap: wrap;
}

.form-choices .form-choice {
    padding-right: 30px;
}

.form-choice {
    position: relative;
}

.form-choice label {
    font-weight: 400;
}

.alert {
    padding: 10px 15px 10px 55px;
    text-align: left;
    min-height: 42px;
    position: relative;
    border-radius: var(--border-radius);
    line-height: 1.4;
}

.alert-danger {
    color: #8d423b;
    background-color: #ffe2df;
    border-color: #ffd7d3;
}

.alert-success {
    color: #1d6944;
    background-color: #d4ffd3;
    border-color: #c3ecd8;
}

.alert-info {
    color: #281b80;
    background-color: #e0e0ff;
    border-color: #e0e0ff;
}

.alert:before {
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    top: 50%;
    left: 5px;
    height: calc(100% - 10px);
    width: 35px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    border-radius: 3px;
    transform: translateY(-50%);
}

.alert-danger:before {
    content: "\f071";
    background: #da6f64;
}

.alert-success:before {
    content: '\f058';
    background: #48c346;
}

.alert-info:before {
    content: "\f05a";
    background: #464fc3;
}

@media (max-width: 700px) {

    .form-50,
    .form-33,
    .form-25,
    .form-55 {
        width: 100%;
    }

    .form-15 {
        width: 33.3%;
    }
}


/* Progress bar */
.progress {
    background: #eee;
    border-radius: 5px;
    display: none;
    position: relative;
    margin-bottom: 20px;
    margin-top: 30px;
}

.progress-bar {
    height: 5px;
    line-height: 5px;
    background: red;
    font-weight: 600;
    color: white;
    padding: 0 15px;
    width: 0%;
    position: relative;
    max-width: 100%;
}

.progress-bar-text-area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    right: 0;
    top: -25px;
    font-weight: 600;
    width: 100%;
}



/* Animations */
@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}



/* Designed List */
.designed-list ul {
    list-style: none;
    margin-left: 20px;
}

.designed-list ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 7px;
    line-height: 1.4;
}

.designed-list ul li:before {
    content: '\f138';
    font-family: 'Font Awesome 6 Free';
    position: absolute;
    top: 2px;
    left: 0;
    font-weight: 900;
    color: var(--main-color);
    font-size: 13px;
}




/* Comments */
.default-comment-form-area {
    display: none;
}

.comment-form {
    display: none;
    margin-top: 30px;
}

.comments-count-heading {
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.write-comment-heading {
    padding-bottom: 10px;
}

.comment-list {
    list-style: none;
    margin: 0;
}

.comment {
    display: table;
    width: 100%;
    margin-bottom: 15px;
}

.comment-author,
.comment-block {
    display: table-cell;
    vertical-align: top;
}

.comment-author {
    width: 70px;
    padding-right: 10px;
}

.comment-author .fa {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border: 1px solid #ddd;
    background: #f5f5f5;
    font-size: 30px;
    color: #999;
}

.comment-author img {
    border: 1px solid #ddd;
    padding: 3px;
    width: 60px;
    height: 60px;
    -o-object-fit: cover;
    object-fit: cover;
}

.comment-block {
    border: 1px solid #ddd;
    padding: 10px 15px;
}

.comment-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.comment-name {
    padding-right: 5px;
}

.date.float-right {
    color: #a7a7a7;
}

.comment-text p {
    margin-bottom: 5px;
}

.comment-reply {
    text-decoration: underline;
    color: var(--main-color);
    cursor: pointer;
    display: inline-block;
}

.comments .children {
    margin: 0 0 0 20px;
    list-style: none;
}

.comments .children>.comment {
    margin-bottom: 0;
}

.byuser .comment-block {
    background: #f5f5f5;
}

.comment-reply-heading-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
}

.comment-reply-heading,
.comment-reply-cancel {
    padding: 5px 0;
}

.comment-reply-cancel {
    text-decoration: underline;
    color: red;
    cursor: pointer;
    font-size: 14px;
}

.logged-user-comment-author {
    margin-bottom: 10px;
}

.comment-rating {
    color: orange;
    font-size: 14px;
}

.load-more-comments-button {
    padding: 10px 35px;
    display: table;
    margin-top: 15px;
    font-size: 15px;
}

@-webkit-keyframes wd-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes wd-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@media (max-width: 600px) {
    .comment-author {
        width: 40px;
        padding-right: 5px;
    }

    .comment-author img {
        width: 35px;
        height: 35px;
    }
}


/* Rating */
.comment-ratings {
    display: flex;
    align-items: center;
    margin: 0 -2px;
}

.comment-ratings input {
    display: none;
}

.comment-rating label {
    padding: 0 2px !important;
}

.comment-rating label:before {
    content: '\f005';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #ddd;
    font-size: 14px;
}

.active-comment-rating label:before {
    color: orange;
}

.form-element-rating {
    padding-left: 10px;
}


/* Sekiller */
.master-gallery {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px -20px;
}

.master-image {
    width: 25%;
    padding: 0 10px 20px;
}

.master-image a {
    display: block;
    overflow: hidden;
    position: relative;
}

.master-image img {
    background: #eee;
}

.master-image-overlay {
    background: black;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: .3s all;
}

.master-image a:hover .master-image-overlay {
    opacity: .3;
}

@media (max-width: 350px) {
    .master-image {
        width: 100%;
    }
}

@media (min-width: 351px) and (max-width: 767px) {
    .master-gallery {
        margin: 0 -5px;
    }

    .master-image {
        width: 50%;
        padding: 0 5px 10px;
    }
}

@media (min-width: 768px) and (max-width: 999px) {
    .master-image {
        width: 33.3%;
    }
}



/* Table */
table {
    width: 100%;
    line-height: 1.5;
    border-collapse: collapse;
    margin: 20px 0;
    text-align: left;
}

th,
td {
    border: 1px solid #ddd;
    padding: 10px 15px;
}

tr:nth-child(odd) {
    background: #f5f5f5;
}



/* Toolbar */
.toolbar-area {
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 1000000;
}

.toolbar-area a {
    position: absolute;
    color: white;
    border-radius: 50%;
    left: 0;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    font-size: 20px;
    display: block;
}

.toolbar-phone {
    background: #6565ff;
    bottom: 0;
}

.toolbar-whatsapp {
    background: #45c71b;
    bottom: 55px;
}

@media (min-width: 768px) {
    .toolbar-area {
        display: none;
    }
}



/* Loading */
.loading {
    color: transparent !important;
    position: relative;
    pointer-events: none;
}

.loading:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transition: opacity 0s ease;
    -webkit-transition: opacity 0s ease;
    opacity: 1;
    -webkit-animation: loading 450ms infinite linear;
    animation: loading 450ms infinite linear;
    transition: opacity .25s ease;
    -webkit-transition: opacity .25s ease;
}

.loading:before {
    visibility: hidden;
}

.small-loading-icon:after {
    width: 15px;
    height: 15px;
    margin-left: -7.5px;
    margin-top: -7.5px;
}

.big-loading-icon:after {
    width: 45px;
    height: 45px;
    margin-left: -22.5px;
    margin-top: -22.5px;
}

.light-loading-icon:after {
    border: 1px solid rgba(255, 255, 255, .3);
    border-left-color: #fff;
}

.dark-loading-icon:after {
    border: 1px solid rgba(0, 0, 0, .3);
    border-left-color: #000;
}

@-webkit-keyframes loading {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loading {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}



/* QR code */
.qr-code img {
    width: 150px;
}



/* Swiper js */
.master-slider {
    overflow: hidden;
}

.master-slider.swiper-initialized {
    height: auto;
}



/* Hide admin bar */
.active-admin-bar {
    margin-top: 35px;
}

.admin-bar {
    display: none;
}

.active-admin-bar .admin-bar {
    display: flex;
}

.hide-admin-bar {
    position: fixed;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    display: block;
    cursor: pointer;
    z-index: 100000;
}

.active-admin-bar .hide-admin-bar {
    top: 35px;
}


/* Pagination */
.pagination {
    margin: 30px 0 0;
    list-style: none;
}

.page-item {
    display: inline-block;
}

.page-item a {
    display: block;
    width: var(--form-height);
    height: var(--form-height);
    line-height: var(--form-height);
    text-align: center;
    border-radius: 50%;
    margin-right: 5px;
    padding: 0;
}

.page-item.active a,
.page-item a:hover {
    background: var(--main-color);
    color: white;
}



/* Notify template */
.notify-block-area {
    text-align: center;
    margin-bottom: 30px;
}

.notify-block-icon-area {
    width: 150px;
    height: 150px;
    background: #00a900;
    display: flex;
    align-items: center;
    margin: 0 auto 30px;
    justify-content: center;
    border-radius: 30px;
    color: white;
    font-size: 100px;
}

.notify-fe-fe-check {
    background: #00a900;
}

.notify-fe-fe-x {
    background: #ff0000;
}

.notify-block-area h3 {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.notify-block-description {
    color: #666;
    margin: 0 auto 25px;
    width: 600px;
    max-width: 100%;
}



/* Social networks */
.social-networks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.colorfull-social .social-networks a {
    color: white;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    font-size: 16px;
    transition: .3s all;
}

.colorfull-social .facebook-social a {
    background: #6f6fd2;
}

.colorfull-social .instagram-social a {
    background: #bb8181;
}

.colorfull-social .youtube-social a {
    background: #e00000;
}

.colorfull-social .whatsapp-social a {
    background: #00da00;
}

.colorfull-social .twitter-social a {
    background: #55adee;
}

.colorfull-social .telegram-social a {
    background: #0088cc;
}

.colorfull-social .linkedin-social a {
    background: #0077b5;
}

.colorfull-social .tiktok-social a {
    background: #333333;
}

.colorfull-social .social-networks a:hover {
    background: #555;
}

.colorfull-icon-social .social-network-item a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    font-size: 17px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.colorfull-icon-social .facebook-social a {
    color: #6f6fd2 !important;
}

.colorfull-icon-social .instagram-social a {
    color: #bb8181 !important;
}

.colorfull-icon-social .youtube-social a {
    color: #e00000 !important;
}

.colorfull-icon-social .whatsapp-social a {
    color: #00da00 !important;
}

.colorfull-icon-social .twitter-social a {
    color: #55adee !important;
}

.colorfull-icon-social .telegram-social a {
    color: #0088cc !important;
}

.colorfull-icon-social .linkedin-social a {
    color: #0077b5 !important;
}

.colorfull-icon-social .tiktok-social a {
    color: #333333 !important;
}

.colorfull-icon-social .social-networks a:hover {
    color: #555 !important;
}



/* Topbar */
#topbar-wrap {
    font-size: 13px;
    position: relative;
    z-index: 11;
    color: #64748b;
}

#topbar-wrap .container {
    border-bottom: 1px solid var(--border-color);
}

#topbar-wrap a {
    color: var(--text-color);
    transition: .3s all;
}

#topbar-wrap a:hover {
    opacity: .4;
}

#topbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0 -25px;
    padding: 8px 0;
}

.topbar-block {
    padding: 0 25px;
}

.topbar-elements {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -15px;
}

.topbar-element {
    padding: 0 15px;
}

.topbar-social a {
    font-size: 16px;
}



/* Tabs */
.tabs {
    margin-top: 20px;
}

.tabs-heading {
    list-style: none;
    margin: 0;
    display: flex;
    border-bottom: 1px solid #ccc;
}

.tabs-heading li {
    text-align: center;
    font-weight: 500;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    padding: 0 20px;
    line-height: 1.2;
    color: #888;
}

.tabs-heading .active-tab {
    color: black;
}

.tabs-heading .active-tab:before {
    content: '';
    height: 3px;
    width: 100%;
    background: var(--main-color);
    left: 0;
    bottom: -1.5px;
    position: absolute;
}

.tabs-body>div:not(:first-child) {
    display: none;
}


/* Default page content */
.default-page-template .site-content h2,
.default-page-template .site-content h3 {
    margin-bottom: 15px;
}


/* Author panel */
.author-panel {
    margin-bottom: 40px;
}


/* Menu categories */
.menu-mehsul:hover .menu-categories-area {
    display: block;
}

.menu-categories-area {
    position: absolute;
    background: white;
    z-index: 1;
    top: 100%;
    display: none;
    border-bottom: 1px solid #ddd;
    transition: .15s;
}

.menu-categories-headings-area {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.menu-categories-headings {
    height: 50px !important;
    line-height: 50px !important;
}

.menu-categories-heading {
    display: inline-block;
    height: 50px;
    line-height: 50px;
    text-transform: uppercase;
    margin-right: 30px;
    position: relative;
    cursor: pointer;
}

.active-categories-heading {
    cursor: default;
    color: var(--second-color);
}

.active-categories-heading:before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--second-color);
}

.menu-categories-list {
    column-count: 3;
    column-gap: 30px;
    padding: 30px 0;
}

.menu-categories a {
    display: block;
    color: #1f1f1f;
    line-height: 1.2;
    margin-bottom: 10px;
    font-family: Arial;
    font-size: 15px !important;
}

.master-slider {
    height: 0;
}

.master-slider .swiper-products-nav {
    opacity: 0;
}

.swiper-container-initialized {
    height: auto;
}

.swiper-container-initialized .swiper-products-nav {
    opacity: 1;
}



/* Fancybox */
body.compensate-for-scrollbar {
    overflow: unset !important;
}

.fancybox-active .admin-bar {
    z-index: 1;
}



/* Header aside ucun custom css */
.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.master-block {
    text-align: center;
    cursor: pointer;
}

.master-shop-icon-link {
    display: flex;
    position: relative;
    align-items: center;
    gap: 10px;
}

.master-shop-icon {
    width: 35px;
    position: relative;
}

.master-shop-icon-item {
    font-size: 26px;
}

.master-shop-icon-count {
    width: 18px;
    height: 18px;
    line-height: 18px;
    background: var(--main-color);
    color: white;
    font-size: 10px;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    font-weight: 600;
    top: -5px;
    right: -5px;
}

.master-shop-icon-details {
    line-height: 1.3;
    text-align: left;
}

.master-shop-icon-heading {
    color: var(--text-color);
    font-size: 13px;
}

.master-shop-icon-value {
    font-size: 14px;
    white-space: nowrap;
}

@media (min-width: 1100px) {
    .master-shop-icon-search-area {
        display: none;
    }
}

@media (max-width: 1100px) {
    #header-aside {
        padding-right: 70px;
    }
}

@media (max-width: 767px) {
    #header-aside {
        padding-right: 50px;
    }

    .master-block:not(:first-child) {
        display: none;
    }

    .master-shop-icon-search-area .master-shop-icon {
        border: 1px solid var(--border-color);
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: var(--border-radius);
    }

    .master-shop-icon-search-area .master-shop-icon-item {
        font-size: 20px;
    }
}




/* Header categories */
.header-menu-area {
    position: absolute;
    width: 260px;
    display: none;
}

.header-categories:hover .header-menu-area {
    display: block;
}

.header-categories-heading {
    width: 260px;
    height: 40px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    border-right: 1px solid var(--border-color);
}

.header-categories-heading:before {
    content: "\e973";
    font-family: Feather;
    margin-right: 15px;
    font-weight: 400;
    font-size: 16px;
    display: inline-block;
    vertical-align: middle;
}

.header-categories-heading:after {
    content: '\e92e';
    font-family: Feather;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}

.categories-item {
    list-style: none;
    margin: 0;
    padding: 5px;
    position: relative;
    background: white;
}

.categories-item:not(.category-parent-0) {
    display: none;
    position: absolute;
    left: calc(100% - 5px);
    width: 300px;
    margin-top: -43px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
}

.category-parent-0 {
    border-radius: var(--border-radius);
    border: 1px solid #ddd;
    margin-top: 5px;
}

.category-item a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    font-weight: 600;
    font-size: 15px;
    color: black;
    line-height: 1.4;
    position: relative;
    border-radius: var(--border-radius);
}

.category-item a:hover {
    background: #eee;
}

.category-item:last-child a {
    border-bottom: 0;
}

.category-item a img {
    width: 20px;
    opacity: .2;
}

.has-child-categories>a:before {
    content: "\e930";
    font-family: 'Feather';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    color: #999;
    font-weight: 400;
}

.home:not(.has-fixed-header) .header-menu-area {
    display: block;
}

@media (min-width: 900px) {
    .category-item:hover>.categories-item {
        display: block;
    }
}

@media (max-width: 900px) {
    .header-menu-area {
        width: 100%;
        position: relative;
    }

    .has-child-categories>a:before {
        transform: translateY(-50%) rotate(90deg);
    }

    .categories-item:not(.category-parent-0) {
        position: relative;
        left: 0;
        width: 100%;
        margin-top: 0;
        border-top: 0;
        border-right: 0;
        background: #eee;
    }
}



/* Related posts */
.related-posts-area {
    padding-top: 60px;
}


/* Callout */
.callout-form-element {
    margin-bottom: 10px;
}

.callout-form-element input {
    width: 100%;
    border: 1px solid #ddd;
    height: var(--form-height);
    font-size: 15px;
    padding: 0 15px;
}

.success-message {
    text-align: center;
    color: #ccc;
    display: none;
}

.success-message:before {
    content: '\f058';
    font-family: "Font Awesome 6 Free";
    display: table;
    margin: 0 auto 15px;
    font-size: 24px;
    color: yellow;
}


/* Callout modal */
#callout-modal-form {
    width: 500px;
    display: none;
}


/* Master icon box */
.master-icon-box-area {
    margin-bottom: 15px;
}

.master-icon-box {
    display: flex;
    flex-wrap: wrap;
}

.master-icon {
    width: 50px;
}

.master-icon img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.master-icon-details {
    width: calc(100% - 50px);
    padding-left: 15px;
}


/* Master buttons */
.button {
    height: var(--form-height);
    cursor: pointer;
    padding: 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    border-radius: var(--border-radius);
    user-select: none;
    text-transform: uppercase;
    font-weight: 500;
    gap: 10px;
    transition: .15s all;
}

.simple-button {
    height: 35px;
    cursor: pointer;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    border-radius: var(--border-radius);
    user-select: none;
    font-weight: 500;
    gap: 5px;
    line-height: 1.1;
    transition: .15s all;
}

.primary-button {
    background: var(--main-color);
    color: white;
    border: 1px solid var(--main-color);
}

.primary-button:hover {
    background: #154da1;
    color: white;
    border: 1px solid #154da1;
}

.outline-button {
    background: #fff;
    color: black;
    border: 1px solid #cbcbcb;
}

.outline-button:hover {
    background: #eee;
}

.colored-button {
    background: var(--second-color);
    color: black;
    border: 1px solid var(--second-color);
}

.colored-button:hover {
    background: #eab308;
    border: 1px solid #eab308;
}

.black-button {
    background: #000;
    color: white;
    border: 1px solid #000;
}

.black-button:hover {
    background: #333;
    color: white;
    border: 1px solid #333;
}

.error-button {
    background: #eb0000;
    color: white;
    border: 1px solid #eb0000;
}

.error-button:hover {
    background: #333333;
    border-color: #333333;
}

.wide-button {
    width: 100%;
}

.icon-right-button:after {
    content: "\e912";
    font-family: Feather;
    margin-left: 10px;
    margin-right: -10px;
    font-size: 14px;
}

.icon-left-button:before {
    content: "\e912";
    font-family: Feather;
    margin-left: -10px;
    margin-right: 10px;
    font-size: 14px;
}

.simple-button.icon-right-button:after {
    margin-left: 8px;
    margin-right: -5px;
}

.whatsapp-button {
    background: #28a828;
    color: #ffffff;
    border-color: #28a828;
}

.whatsapp-button:hover {
    background: #188918;
    color: #ffffff;
    border-color: #188918;
}

.disabled {
    pointer-events: none;
}



/* Animations */
.animate {
    transition: 1.2s all;
}

.scale-animation {
    transform: scale(0.5);
    opacity: 0;
}

.fade-animation {
    opacity: 0;
}

.left-to-right-animation {
    transform: translateX(-100px);
    opacity: 0;
}

.right-to-left-animation {
    transform: translateX(100px);
    opacity: 0;
}

.top-to-bottom-animation {
    transform: translateY(-100px);
    opacity: 0;
}

.bottom-to-top-animation {
    transform: translateY(100px);
    opacity: 0;
}

.animated {
    opacity: 1;
    transform: none;
}


/* Fixed header */
.has-fixed-header {
    padding-top: 55px;
}

.has-fixed-header #navigation {
    position: fixed;
    background: #fff;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    animation-name: sticky;
    animation-duration: .5s;
    border-top: 0;
    box-shadow: 0 15px 15px rgb(100 100 100 / 5%);
}

.has-fixed-header.active-admin-bar #navigation {
    margin-top: 35px;
}

.has-fixed-header .header-aside {
    position: absolute;
    right: 0;
}

@keyframes sticky {
    from {
        transform: translateY(-80px);
    }

    to {
        transform: translateY(0);
    }
}


/* Master heading */
.master-heading-area {
    margin-bottom: 40px;
}

.master-heading {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}

.master-description {
    margin-top: 10px;
    width: 600px;
    max-width: 100%;
}

.master-center-heading {
    text-align: center;
}

.master-center-heading .master-description {
    margin: 10px auto 0;
}

.master-light-heading {
    color: white;
}



/* Whatsapp */
.whatsapp-toolbar-area {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-icon-box {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-toolbar-text {
    background: white;
    color: black;
    padding: 3px 15px;
    border-radius: 5px;
    margin-right: 15px;
    box-shadow: 0 0 10px rgb(0 0 0 / 28%);
    visibility: hidden;
    transition: .3s all;
}

.whatsapp-icon-box:hover .whatsapp-toolbar-text {
    visibility: visible;
}

.whatsapp-toolbar-icon {
    width: 70px;
    height: 70px;
    text-align: center;
    line-height: 70px;
    background: #21ad21;
    border-radius: 50%;
    font-size: 32px;
}


/* Language switcher */
.language-list-switcher ul {
    margin: 0 -5px;
    list-style: none;
    display: flex;
}

.language-list-switcher li {
    padding: 0 5px;
}

.language-list-switcher .language-item a {
    display: flex;
    align-items: center;
}

.language-list-switcher .language-item img {
    width: 20px;
    height: 20px;
}

.language-list-switcher .language-label {
    padding-left: 7px;
    font-weight: 600;
    color: black;
    display: none;
}


/* LS */
.language-dropdown-switcher ul {
    margin: 0;
    list-style: none;
    position: relative;
    cursor: pointer;
}

.language-dropdown-switcher .ls-sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    padding: 10px;
    box-shadow: 0 1px 5px 0 rgb(0 0 0 / 10%);
    border-radius: 8px;
    background: white;
    width: 80px;
    font-weight: 600;
}

.language-dropdown-switcher img {
    width: 24px;
    height: 24px;
}

.language-dropdown-switcher:hover .ls-sub-menu {
    display: block;
}

.ls-current-lang {
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-weight: 600;
    gap: 8px;
    position: relative;
    padding-right: 15px;
}

.ls-current-lang:after {
    content: "\e92e";
    font-family: Feather;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.language-item {
    display: flex;
    justify-content: center;
}

.language-item a {
    color: black;
    display: flex;
    gap: 8px;
}

.language-item:not(:last-child) {
    margin-bottom: 5px;
}

@media (max-width: 1080px) {
    .ls-current-lang {
        height: 40px;
        padding: 0 0 0 10px;
    }

    .language-dropdown-switcher .ls-sub-menu {
        left: 0;
    }
}


/* Swiper */
.relative-slider {
    position: relative;
}

.side-swiper-nav {
    position: absolute;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
}

.side-swiper-nav.swiper-button-disabled {
    display: none;
}

.ssn-prev {
    left: -30px;
}

.ssn-next {
    right: -30px;
}

.center-swiper-navigations {
    display: flex;
    justify-content: center;
    margin: 0 -5px;
}

.center-swiper-nav {
    font-size: 22px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin: 0 5px;
    cursor: pointer;
}

.swiper-pagination {
    display: flex;
    align-items: center;
    height: 12px;
}

.swiper-pagination .swiper-pagination-bullet {
    margin: 0 7px;
    cursor: pointer;
    background: var(--main-color);
    transition: .3s all;
}

.dots-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: block;
}

.dots-swiper-pagination .swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
}

.liner-swiper-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 3px;
    display: block;
}

.center-swiper-pagination {
    justify-content: center;
}

.swiper-slide .master-post {
    width: 100%;
    padding: 0;
}

.products-pagination {
    margin-bottom: -50px !important;
}




/* Master scroll */
.master-scroll::-webkit-scrollbar {
    width: 3px;
}

.master-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.master-scroll::-webkit-scrollbar-thumb {
    background: #888;
}

.master-scroll::-webkit-scrollbar-thumb:hover {
    background: #555;
}


/* FontAwesome */
.fa-solid:before {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
}

.fa-brands:before {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
}

.fa-star:before {
    content: "\f005";
}

.fa-envelope:before {
    content: "\f0e0";
}

.fa-play:before {
    content: "\f04b";
}

.fa-arrow-left-long:before {
    content: '\f177';
}

.fa-facebook:before {
    content: "\f09a";
}

.fa-instagram:before {
    content: "\f16d";
}

.fa-youtube:before {
    content: "\f167";
}

.fa-x-twitter:before {
    content: "\e61b";
}

.fa-linkedin:before {
    content: "\f08c";
}

.fa-telegram:before {
    content: "\f2c6";
}

.fa-whatsapp:before {
    content: "\f232";
}

.fa-tiktok:before {
    content: "\e07b";
}



/* Header search */
#header-search-area {
    position: relative;
    flex: 1 1 420px;
}

.header-search-form-element {
    position: relative;
}

.header-search-form-element input {
    padding: 0 20px;
    border-radius: var(--border-radius);
    background: var(--light-color);
    border: 0;
    font-size: 15px;
    box-shadow: none;
}

.header-search-form-element button {
    position: absolute;
    top: 50%;
    right: 5px;
    height: calc(var(--form-height) - 10px);
    color: #000;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: white;
    transform: translateY(-50%);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--border-radius);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    gap: 8px;
    padding: 0 15px;
}

.header-search-form-element button i {
    color: #999;
    font-size: 15px;
}

.header-search-results {
    position: absolute;
    width: 100%;
    top: calc(100% + 10px);
    background: white;
    border: 1px solid #ddd;
    display: none;
    min-height: 100px;
}

.ajax-search-form-area {
    height: calc(100vh - 120px);
    overflow-y: auto;
}

.ajax-live-search-results:empty {
    padding: 60px 0;
}

.ajax-products {
    padding: 7.5px 0;
}

.ajax-product a {
    padding: 7.5px 15px;
    display: flex;
    justify-content: space-between;
}

.ajax-product a:hover {
    background: #f5f5f5;
}

.ajax-product-image {
    width: 60px;
}

.ajax-product-details {
    width: calc(100% - 75px);
}

.ajax-product-title {
    line-height: 1.3;
    margin-bottom: 5px;
}

.ajax-product-price {
    font-weight: 600;
}

.all-results-button {
    background: var(--second-color);
    color: white;
    height: var(--form-height);
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
}

.ajax-no-result {
    text-align: center;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ajax-search-form-area .cart-canvas-body {
    padding: 15px;
}

.form-element-search {
    position: relative;
}

.form-element-search button {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: transparent;
    font-size: 18px;
    width: var(--form-height);
    height: var(--form-height);
    border-radius: var(--border-radius);
}

@media (max-width: 1100px) {
    #header-search-area {
        display: none;
    }
}



/* Canvas */
.canvas-sidebar {
    width: 350px;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    transform: translate3d(100%, 0, 0);
    background: white;
    z-index: 10000;
    transition: .3s all;
}

.active-canvas-sidebar {
    transform: none;
}

.canvas-header {
    color: #fffff;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    align-items: center;
    height: 80px;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

.canvas-header-first {
    text-transform: uppercase;
    font-size: 22px;
    letter-spacing: 1px;
}

.close-canvas-sidebar {
    position: relative;
    padding-right: 18px;
    cursor: pointer;
}

.close-canvas-sidebar:before,
.close-canvas-sidebar:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 12px;
    height: 2px;
    background: #ffffff;
    transition: .15s;
}

.close-canvas-sidebar:before {
    transform: rotate(45deg);
}

.close-canvas-sidebar:after {
    transform: rotate(-45deg);
}

.close-canvas-sidebar:hover:before,
.close-canvas-sidebar:hover:after {
    transform: none;
    transition: .15s;
}

.cart-canvas-body {
    height: calc(100% - 80px);
}

@media (max-width: 500px) {
    .canvas-sidebar {
        width: 85%;
    }
}



/* Shop heading */
.shop-heading {
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 15px;
}



/* Master heading */
.heading-blocks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0 -15px;
}

.heading-block {
    padding: 0 15px 30px;
}

.hb-1 {
    flex: 1 1 auto;
}

.hb-2 {
    flex: 0;
}

.heading-area {
    margin-bottom: 40px;
}

.heading-blocks .heading-area {
    margin-bottom: 0;
}

.heading {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}

.description {
    margin-top: 5px;
    width: 600px;
    max-width: 100%;
}

.center-heading {
    text-align: center;
}

.center-heading .description {
    margin-left: auto;
    margin-right: auto;
}

.light-heading .heading,
.light-heading .sub-heading {
    color: white;
}

.heading-button {
    line-height: 1.3;
    white-space: nowrap;
}

.heading-button a {
    color: var(--main-color);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.heading-button a:hover {
    opacity: .5;
}

@media (max-width: 767px) {
    .heading-block {
        width: 100%;
    }
}



/* Home posts */
.home-posts-area {
    padding: 60px 0;
}



/* Features */
.features-area .container {
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}

.features {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px -30px;
}

.feature {
    width: 25%;
    padding: 0 15px 30px;
}

.feature-icon-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.feature-icon {
    width: 50px;
}

.feature-icon-details {
    width: calc(100% - 75px);
}

.feature-icon-title {
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 5px;
}

.feature-icon-desc {
    color: var(--text-color);
    line-height: 1.5;
    width: 300px;
    margin: 0 auto;
    max-width: 100%;
}

@media (max-width: 1300px) {
    .feature-icon-box {
        justify-content: center;
        text-align: center;
    }

    .feature-icon-details {
        width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 900px) {
    .feature {
        width: 50%;
    }
}




/* Home products */
.home-products-area {
    padding: 50px 0;
}



/* Slider */
.slider-area {
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
}

.slider-blocks {
    display: flex;
    justify-content: space-between;
    height: 100%;
}

.slider-block-1 {
    width: 260px;
}

.slider-block-2 {
    width: calc(100% - 290px);
}

.slider-block-2-inner {
    display: flex;
    gap: 20px;
}

.slider-wide {
    flex: 1 1 auto;
    min-width: 0;
}

.slider-small {
    flex: 0 0 300px;
    width: 300px;
    position: relative;
}

.slider-block {
    position: relative;
    display: block;
}

.home-slider {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
}

.home-slide,
.home-slide .slider-block {
    height: 100%;
}

.home-slide img {
    aspect-ratio: 5 / 3.3;
    height: auto;
}

.slider-pagination {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 1;
}

.slider-nav {
    z-index: 1;
    width: 40px;
    height: 60px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 0.0625rem 0.125rem rgba(2, 6, 23, 0.05);
}

.slider-nav-prev {
    left: 15px;
}

.slider-nav-next {
    right: 15px;
}

.slider-contents {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding: 0 60px;
}

@media (max-width: 1100px) {
    .slider-area {
        padding: 0;
    }

    .slider-area .container {
        max-width: 100%;
        width: 100%;
    }

    .slider-block-2 {
        width: 100%;
    }

    .slider-block-2-inner {
        flex-direction: column;
    }

    .slider-small {
        flex: 1 1 auto;
        width: 100%;
    }

    .home-slider {
        border-radius: 0;
    }

    .home-slide {
        width: 100vw !important;
    }
}

@media (max-width: 767px) {
    .slider-nav {
        display: none;
    }

    .slider-pagination {
        bottom: 15px;
    }

    .slider-contents {
        padding: 0;
    }
}



/* Banners */
.banners {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12.5px -25px;
}

.banner {
    width: 25%;
    padding: 0 12.5px 25px;
    display: flex;
}

.banner a {
    display: block;
    border-radius: var(--border-radius);
    padding: 30px 30px 280px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #524436;
}

.banner-heading {
    font-weight: 600;
    font-size: 22px;
    line-height: 1.3;
    margin: 5px 0 15px;
}

.banner-url {
    display: table;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-top: 15px;
    font-size: 14px;
}

.banner-desc {
    opacity: .7;
    line-height: 1.45;
}

.banner-subheading {
    line-height: 1.4;
}

@media (max-width: 1120px) {
    .banner-heading {
        font-size: 18px;
    }
}

@media (max-width: 1050px) {
    .banner {
        width: 50%;
    }
}

@media (max-width: 520px) {
    .banner {
        width: 100%;
    }
}




/* Brand slider */
.brands-area .container {
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
}

.brand-logo img {
    aspect-ratio: 5 / 3;
    object-fit: contain;
    width: 120px;
    max-width: 100%;
    transition: .5s all;
}

.brand-slide a:hover img {
    transform: scale(1.1);
}



/* Multiple map */
.multiple-acf-map {
    height: 550px;
    width: 100%;
}

.stores-blocks {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stores-1 {
    width: 400px;
}

.stores-2 {
    width: calc(100% - 400px);
}

.stores {
    display: none;
}

#listdata {
    height: 550px;
    overflow-y: auto;
    background: var(--light-color);
    padding: 25px;
}

.linkage {
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 10px;
    padding: 12px 15px 15px;
    cursor: pointer;
    position: relative;
}

.linkage:before {
    content: "\e912";
    font-family: 'Feather';
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--main-color);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    color: white;
}

.linkage:last-child {
    margin-bottom: 0;
}

.marker-heading {
    font-weight: 600;
    line-height: 1.4;
    font-size: 16px;
}

.marker-address {
    font-size: 14px;
    margin: 7px 0;
}

.marker-phone {
    font-weight: 500;
    border-bottom: 1px dashed #919191;
    display: table;
    font-size: 14px;
    line-height: 1.4;
    color: var(--main-color);
}

.marker-url {
    font-weight: 500;
    font-size: 14px;
    margin-top: 10px;
}

.marker-url a {
    display: flex;
    gap: 7px;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: #ddd;
    color: #438743;
}

.marker-url a img {
    width: 20px;
}

.gm-style-iw-chr {
    position: absolute;
    top: 0;
    right: 0;
}

.gm-style-iw-d {
    padding-top: 12px;
}




/* Contact */
.contact-area {
    padding-bottom: 60px;
}

.contact-blocks {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -25px -50px;
}

.contact-block {
    padding: 0 25px 50px;
    width: 50%;
}

.contact-icon-boxes {
    margin-bottom: 30px;
}

.contact-icon-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--main-color);
    border-radius: 50%;
    padding: 13px;
}

.contact-icon img {
    filter: invert(1);
}

.contact-icon-details {
    width: calc(100% - 65px);
    line-height: 1.5;
}

.contact-icon-box:not(:last-child) {
    margin-bottom: 20px;
}

@media (max-width: 700px) {
    .contact-block {
        width: 100%;
    }
}



/* ACF Map */
.acf-map-area {
    position: relative;
}

.acf-map {
    height: 450px;
    background: #eee;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.acf-iframe-map iframe {
    width: 100% !important;
    height: 100% !important;
    position: relative;
    z-index: 1;
}

.map-loading {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    background: #ddd;
}

.map-loading-text {
    padding-top: 40px;
    font-weight: 600;
    font-size: 18px;
}



/* Vacancies */
.vacancies {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px -30px;
}

.vacancy {
    width: 50%;
    padding: 0 15px 30px;
}

.vacancy a {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

@media (max-width: 1000px) {
    .vacancy {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .vacancy a {
        flex-wrap: wrap;
    }

    .vacancy-title {
        width: 100%;
    }
}



/* Single vacancy */
.single-vacancy-blocks {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -25px -50px;
}

.single-vacancy-block {
    width: 50%;
    padding: 0 25px 50px;
}

@media (max-width: 767px) {
    .single-vacancy-block {
        width: 100%;
    }
}


/* =============================================================
   NEON SKIN — tünd mavi/neon override-ları.
   Hər blok aid olduğu sayt hissəsinə görə qruplaşdırılıb.
   (Override-lar cascade-də sonuncu olmalı deyə fayl sonundadır.)
   ============================================================= */

/* ---- Topbar ---- */
#topbar-wrap {
    color: var(--text-color);
}

#topbar-wrap .container {
    border-bottom: 1px solid var(--border-color);
}

#topbar-wrap a {
    color: var(--text-color);
}

#topbar-wrap a:hover {
    color: var(--main-color);
    opacity: 1;
}

#topbar-wrap strong {
    color: var(--neon-text);
}

/* ---- Header / Logo ---- */
#site-header {
    background: transparent;
}

.site-name {
    font-weight: 800;
    letter-spacing: .5px;
    background: linear-gradient(90deg, var(--main-color), var(--second-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 22px rgba(25, 168, 255, .35);
}

/* ---- Header axtarış formu ---- */
.header-search-form-element input {
    background: var(--neon-panel);
    border: var(--neon-border);
    color: var(--neon-text);
    backdrop-filter: blur(6px);
}

.header-search-form-element input::placeholder {
    color: var(--text-color);
}

.header-search-form-element input:focus {
    outline: none;
    border-color: var(--main-color);
    box-shadow: var(--neon-glow);
}

.header-search-form-element button {
    background: linear-gradient(90deg, var(--main-color), var(--second-color));
    color: #fff;
    box-shadow: var(--neon-glow);
}

.header-search-form-element button i {
    color: #fff;
}

.header-search-results,
.ajax-live-search-results {
    background: var(--neon-panel-solid);
    border: var(--neon-border);
    color: var(--neon-text);
}

/* ---- Header ikonları (user / wishlist / cart) ---- */
.master-shop-icon-item {
    color: var(--neon-text);
    transition: .25s all;
}

.master-shop-icon-link:hover .master-shop-icon-item {
    color: var(--main-color);
    text-shadow: var(--neon-glow);
}

.master-shop-icon-heading {
    color: var(--text-color);
}

.master-shop-icon-value {
    color: var(--neon-text);
}

.master-shop-icon-count {
    background: linear-gradient(90deg, var(--main-color), var(--second-color));
    box-shadow: var(--neon-glow);
}

/* ---- Naviqasiya menyusu ---- */
#navigation {
    background: rgba(8, 13, 34, .55);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
}

.has-fixed-header #navigation {
    background: rgba(8, 13, 34, .92);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .55), 0 1px 0 rgba(25, 168, 255, .35);
}

#site-navigation-wrap .master-main-menu a {
    color: var(--neon-text);
}

#site-navigation-wrap .master-main-menu a:hover,
#site-navigation-wrap .current-menu-item>a {
    color: var(--main-color);
    text-shadow: var(--neon-glow);
}

#site-navigation-wrap .sub-menu,
.menu-categories-area {
    background: var(--neon-panel-solid);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .6), var(--neon-glow);
}

#site-navigation-wrap .sub-menu a {
    color: var(--neon-text);
    border-bottom: 1px solid var(--border-color);
}

#site-navigation-wrap .sub-menu a:hover {
    background: rgba(25, 168, 255, .12);
    color: var(--main-color);
}

/* ---- Menu kateqoriyaları ---- */
.menu-categories-headings-area {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.menu-categories a {
    color: var(--text-color);
}

.menu-categories a:hover {
    color: var(--main-color);
}

/* ---- Header kateqoriya menyusu ("Bütün məhsullar") ---- */
.header-categories-heading {
    color: var(--neon-text);
    border-right: 1px solid var(--border-color);
}

.header-categories-heading:hover {
    color: var(--main-color);
}

.categories-item {
    background: var(--neon-panel-solid);
}

.categories-item:not(.category-parent-0) {
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .6), var(--neon-glow);
}

.category-parent-0 {
    border: 1px solid var(--border-color);
    background: var(--neon-panel-solid);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .5);
}

.category-item a {
    color: var(--neon-text);
}

.category-item a:hover {
    background: rgba(25, 168, 255, .12);
    color: var(--main-color);
}

.category-item a img {
    opacity: .6;
}

.has-child-categories>a:before {
    color: var(--text-color);
}

@media (max-width: 900px) {
    .categories-item:not(.category-parent-0) {
        background: rgba(25, 168, 255, .06);
    }
}

/* ---- Düymələr (neon glow) ---- */
.button.primary-button,
.primary-button {
    background: linear-gradient(90deg, var(--main-color), var(--second-color));
    border: 1px solid transparent;
    color: #fff;
    box-shadow: var(--neon-glow);
    text-shadow: 0 0 8px rgba(255, 255, 255, .25);
}

.primary-button:hover {
    background: linear-gradient(90deg, var(--second-color), var(--main-color));
    border: 1px solid transparent;
    color: #fff;
    box-shadow: var(--neon-glow-strong);
}

.colored-button {
    background: linear-gradient(90deg, var(--second-color), var(--extra-color));
    border: 1px solid transparent;
    color: #fff;
    box-shadow: 0 0 18px rgba(255, 61, 113, .55);
}

.colored-button:hover {
    background: linear-gradient(90deg, var(--extra-color), var(--second-color));
    border: 1px solid transparent;
    box-shadow: 0 0 26px rgba(255, 61, 113, .8), 0 0 8px rgba(177, 75, 255, .6);
}

.outline-button {
    background: rgba(25, 168, 255, .06);
    color: var(--neon-text);
    border: 1px solid rgba(25, 168, 255, .45);
}

.outline-button:hover {
    background: rgba(25, 168, 255, .16);
    box-shadow: var(--neon-glow);
}

.black-button {
    background: var(--neon-panel-solid);
    border: 1px solid var(--border-color);
    color: var(--neon-text);
}

.black-button:hover {
    background: #16204a;
    border: 1px solid var(--main-color);
    color: #fff;
    box-shadow: var(--neon-glow);
}

.light-button {
    background: linear-gradient(90deg, var(--main-color), var(--second-color));
    color: #fff !important;
    box-shadow: var(--neon-glow);
}

/* ---- Başlıqlar ---- */
.heading {
    color: var(--neon-text);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.heading:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--main-color), var(--second-color));
    box-shadow: var(--neon-glow);
}

.center-heading .heading:after {
    left: 50%;
    transform: translateX(-50%);
}

.heading-button a {
    color: var(--main-color);
}

.heading-button a:hover {
    color: var(--second-color);
    opacity: 1;
}

/* ---- Xüsusiyyətlər (features) ---- */
.features-area .container {
    border-bottom: 1px solid var(--border-color);
}

.feature-icon-title {
    color: var(--neon-text);
}

.feature-icon-desc {
    color: var(--text-color);
}

/* ---- Slider ---- */
.slider-area {
    border-top: 1px solid var(--border-color);
}

.side-swiper-nav {
    background: var(--neon-panel-solid);
    border: var(--neon-border);
    color: var(--neon-text);
}

.side-swiper-nav:hover {
    color: var(--main-color);
    box-shadow: var(--neon-glow);
}

.swiper-pagination-bullet {
    background: var(--text-color);
}

.swiper-pagination-bullet-active {
    background: var(--main-color);
    box-shadow: var(--neon-glow);
}

.slider-heading {
    color: #fff;
    text-shadow: 0 0 24px rgba(25, 168, 255, .5);
}

/* ---- Brendlər ---- */
.brand-slide {
    background: var(--neon-panel);
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

.brand-slide:hover {
    border-color: rgba(25, 168, 255, .5);
    box-shadow: var(--neon-glow);
}

/* ---- Səhifə başlığı / breadcrumbs ---- */
#page-header a,
.breadcrumbs a {
    color: var(--text-color);
}

#page-header a:hover,
.breadcrumbs a:hover {
    color: var(--main-color);
}

/* ---- Formlar / inputlar ---- */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="search"],
textarea,
select {
    background: var(--neon-panel) !important;
    color: var(--neon-text) !important;
}

input::placeholder,
textarea::placeholder {
    color: var(--text-color) !important;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--main-color) !important;
    box-shadow: var(--neon-glow) !important;
    outline: none !important;
}

/* Checkbox & Radio */
input[type=radio],
input[type=checkbox] {
    background: var(--neon-panel) !important;
    box-shadow: none !important;
}

input[type=radio]:hover,
input[type=checkbox]:hover {
    border-color: rgba(25, 168, 255, .6) !important;
}

input[type=radio]:checked,
input[type=checkbox]:checked {
    border-color: var(--main-color) !important;
    box-shadow: var(--neon-glow) !important;
}

input[type=checkbox]:checked {
    background: linear-gradient(135deg, var(--main-color), var(--second-color)) !important;
    color: #fff !important;
}

input[type=radio]:checked:before {
    background: var(--main-color);
    box-shadow: 0 0 8px var(--main-color);
}

input[type=file]::file-selector-button {
    background: var(--neon-panel) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--neon-text) !important;
}

/* ---- Footer ---- */
#footer {
    position: relative;
    background-color: transparent;
    background-image:
        radial-gradient(circle at 15% 0%, rgba(25, 168, 255, .14), transparent 45%),
        radial-gradient(circle at 85% 0%, rgba(177, 75, 255, .14), transparent 45%),
        linear-gradient(180deg, rgba(8, 13, 34, .65) 0%, rgba(5, 8, 22, .92) 100%);
    border-top: 1px solid var(--border-color);
}

#footer:before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--main-color), var(--second-color), transparent);
    box-shadow: var(--neon-glow);
    opacity: .9;
}

#footer,
#footer a {
    color: var(--text-color);
}

#footer a:hover {
    color: var(--main-color);
}

#footer-top-area {
    border-top: 0;
    border-bottom: 1px solid var(--border-color);
    background: rgba(7, 11, 28, .35);
}

.footer-icon-heading {
    color: var(--neon-text);
}

.footer-icon-desc {
    color: var(--text-color);
}

.footer-heading {
    color: var(--neon-text);
    text-transform: uppercase;
    letter-spacing: .5px;
}

.footer-heading:after {
    content: '';
    display: block;
    width: 34px;
    height: 2px;
    margin-top: 8px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--main-color), var(--second-color));
    box-shadow: var(--neon-glow);
}

.footer-block a,
.solid-menu a,
.footer-links a {
    color: var(--text-color);
    transition: .2s all;
}

.footer-block a:hover,
.solid-menu a:hover,
.footer-links a:hover {
    color: var(--main-color);
    text-shadow: var(--neon-glow);
}

.footer-desc,
.footer-bottom-desc {
    color: var(--text-color);
}

.footer-contact {
    color: var(--text-color);
}

.footer-contact a {
    color: var(--neon-text);
}

.footer-contact a:hover {
    color: var(--main-color);
}

.footer-store a {
    display: inline-block;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: .25s all;
}

.footer-store a:hover {
    border-color: rgba(25, 168, 255, .6);
    box-shadow: var(--neon-glow);
    transform: translateY(-2px);
}

#footer-bottom {
    background: rgba(5, 8, 22, .6);
}

#footer-bottom-inner {
    border-top: 1px solid var(--border-color);
}

#footer-bottom a {
    color: var(--text-color);
}

#footer-bottom a:hover {
    color: var(--main-color);
}

.footer-copyright {
    color: var(--text-color);
}

/* ---- Sosial ikonlar (footer) ---- */
.colorfull-icon-social .social-network-item a {
    background: var(--neon-panel) !important;
    border: 1px solid var(--border-color);
    box-shadow: none;
    backdrop-filter: blur(6px);
    transition: .25s all;
}

.colorfull-icon-social .social-network-item a:hover {
    border-color: rgba(25, 168, 255, .6);
    box-shadow: var(--neon-glow);
    transform: translateY(-3px);
}

/* ---- Panellər: sidebar, mobil menyu, alert ---- */
.canvas-sidebar,
.master-canvas,
#alert .alert-box,
.mobile-menu-sidebar {
    background: var(--neon-panel-solid);
    color: var(--neon-text);
    border-color: var(--border-color);
}

.mobile-menu .active-ul a,
.mobile-menu-item-label {
    color: var(--neon-text);
}

/* ---- Scroll to top ---- */
#site-scroll-top {
    background: linear-gradient(135deg, var(--main-color), var(--second-color));
    color: #fff;
    box-shadow: var(--neon-glow);
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--neon-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--main-color), var(--second-color));
    border-radius: 10px;
}

/* ---- Seçim rəngi ---- */
::selection {
    background: rgba(25, 168, 255, .35);
    color: #fff;
}