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

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

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

@font-face {
    font-family: "Fraunces";
    src: url("/assets/fonts/Fraunces_72pt-Black.woff2") format("woff2");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/*
 * Playfair — MÜSTƏQİL ailə, rus dili başlıqları üçün (`.site-language-ru`).
 * Üç altdəst BİRLİKDƏ tam ailə edir: kiril subseti tək başına kifayət etmir —
 * onda latın hərfləri, rəqəmlər və durğu işarələri YOXDUR, yəni
 * "Больше, чем мороженое." cümləsindəki vergül və nöqtə fallback fonta düşərdi.
 */
@font-face {
    font-family: "Playfair";
    src: url("/assets/fonts/Playfair-latin.woff2") format("woff2");
    font-weight: 700 900;
    font-style: normal;
    font-display: swap;
    unicode-range:
        U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
        U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
        U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "Playfair";
    src: url("/assets/fonts/Playfair-latin-ext.woff2") format("woff2");
    font-weight: 700 900;
    font-style: normal;
    font-display: swap;
    unicode-range:
        U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
        U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
        U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
    font-family: "Playfair";
    src: url("/assets/fonts/Playfair-cyrillic.woff2") format("woff2");
    font-weight: 700 900;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@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");
}

@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");
}

:root {
    --main-color: #2ec5fc;
    --main-dark: #17a9e0;
    --second-color: #eabc24;
    --dark-color: #1e1a17;
    --cream-color: #fff9f0;
    --cream-deep: #fff0d6;
    --mint-color: #d1eee9;
    --sky-color: #98d3e9;
    --muted-color: #6e6862;
    --light-color: #f4f2ee;
    --border-color: #ede6da;
    --border-radius: 16px;
    --card-radius: 20px;
    --pill-radius: 40px;
    --form-height: 55px;
    --font-family: "Outfit", Arial, Helvetica, sans-serif;
    --heading-family: "Fraunces", Arial, Helvetica, sans-serif;
}

/* Rus dilində başlıqlar Playfair ilə — Fraunces-də kiril yoxdur. */
.site-language-ru {
    --heading-family: "Playfair", Georgia, serif;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    line-height: 1.3;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    color: black;
    font-size: 16px;
    line-height: 1.6;
    font-family: var(--font-family);
    position: relative;
    margin: 0;
    padding: 0;
}

#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: 1150px;
    margin: 0 auto;
    max-width: 90%;
    position: relative;
    z-index: 1;
}

.main-container {
    width: 90%;
    margin: 0 auto;
    max-width: 90%;
    position: relative;
    z-index: 1;
}

#primary {
    padding-bottom: 60px;
}

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

button {
    padding: 0;
    border: 0;
    cursor: pointer;
    font-family: var(--font-family);
    transition: 0.15s all;
}

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

*:focus {
    outline: none;
}

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

p {
    margin: 0 0 15px;
}

a,
:visited {
    color: black;
    text-decoration: none;
    transition: 0.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% - 360px);
}

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

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

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

@media (max-width: 960px) {
    .has-sidebar #primary,
    .has-sidebar #sidebar {
        width: 100%;
        padding-right: 0;
        padding-left: 0;
    }

    #primary {
        order: 1;
    }

    #sidebar {
        order: 2;
    }
}

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

#site-header-inner {
    position: relative;
}

.master-header-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    width: 100%;
}

#site-logo {
    width: 80px;
}

#site-logo img {
    object-fit: contain;
}

#site-navigation {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

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

#site-navigation-wrap .master-main-menu > .menu-item {
    position: relative;
}

#site-navigation-wrap .master-main-menu > .menu-item > a {
    color: black;
    white-space: nowrap;
    height: 50px;
    line-height: 50px;
    display: block;
    position: relative;
    font-weight: 600;
}

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

#site-navigation-wrap .master-main-menu > .menu-item-has-children > a {
    padding-right: 15px;
}

#site-navigation-wrap .master-main-menu > .menu-item-has-children > a:after {
    content: "\e92e";
    font-family: Feather;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    font-size: 13px;
}

#site-navigation-wrap .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin: 0;
    list-style: none;
    padding: 10px 0;
    border-bottom: 0;
    z-index: 10;
    min-width: 160px;
    background: var(--main-color);
}

#site-navigation-wrap .master-main-menu > .menu-item > .sub-menu:before {
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid var(--main-color);
    position: absolute;
    bottom: 100%;
    left: 15px;
}

#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: 5px 15px;
    display: block;
    height: auto;
    white-space: nowrap;
    color: white;
}

#site-navigation-wrap .sub-menu a:hover {
    background: var(--main-color);
}

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

#site-navigation-wrap .sub-menu .menu-item-has-children > a:after {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    position: absolute;
    right: 10px;
    top: 50%;
    font-size: 12px;
    font-weight: 600;
    transform: translateY(-50%);
}

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

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

@media (min-width: 960px) {
    #mobile-sidebar-menu,
    .mobile-menu-area {
        display: none;
    }
}

/* Mobile menu */
#mobile-sidebar-menu {
    width: 25px;
    cursor: pointer;
}

.mobil-menu-line-icon span {
    width: 25px;
    height: 2px;
    margin-bottom: 5px;
    background: black;
    display: block;
}

.mobil-menu-line-icon span:last-child {
    margin-bottom: 0;
}

.mobile-menu-area {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 90%;
    background: #000000;
    height: 100%;
    z-index: 1000;
    overflow: auto;
    transform: translate3d(100%, 0, 0);
    transition: 0.3s all;
}

.mobile-menu-area * {
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-close {
    color: white;
    font-size: 26px;
    display: flex;
    align-items: center;
    height: 80px;
    padding: 0 30px;
}

.mobile-menu-close-icon {
    cursor: pointer;
}

.mobile-menu-container {
    padding: 0 40px 80px;
    transform: translateX(60px);
    opacity: 0;
    transition: 0.6s all;
}

.animated-mobile-menu-container {
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0.1s;
}

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

.mobile-menu-area ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-menu-area a {
    font-size: 20px;
    position: relative;
    color: white;
    padding: 7px 0;
    display: inline-block;
    font-weight: 700;
}

.mobile-menu-area .menu-item-has-children > a:after {
    content: "\e92e";
    font-family: Feather;
    margin-left: 7px;
    font-size: 17px;
}

.mobile-menu-area .sub-menu {
    display: none;
    padding-left: 15px;
    padding-bottom: 10px;
    position: relative;
}

.mobile-menu-area .sub-menu a {
    font-weight: 400;
    font-size: 18px;
    padding: 5px 0;
    color: #dddddd;
}

.mobile-menu-area a:hover {
    opacity: 0.4;
}

.mobile-search-area {
    position: relative;
    padding: 0 30px;
    margin-bottom: 40px;
}

#mobile-search {
    position: relative;
}

.mobile-search-area input[type="text"] {
    width: 100%;
    border: 0;
    height: 46px;
    font-size: 15px;
    padding: 0 20px;
    background: #191919;
    color: white;
    border-radius: 30px;
}

.mobile-search-area input::-webkit-input-placeholder {
    opacity: 1;
}

.mobile-search-area button {
    position: absolute;
    top: 0;
    right: 2px;
    width: 46px;
    height: 46px;
    font-size: 18px;
    border-radius: 50%;
    font-weight: 600;
}

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

/* Menu search */
.master-menu-search-icon {
    cursor: pointer;
    font-size: 22px;
    margin-left: 20px;
}

.master-search-area {
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 60px 0 80px;
    visibility: hidden;
    transform: translateY(-300px);
    transition: 0.5s all;
}

.visible-search {
    visibility: visible;
    transform: translateY(0);
}

#master-search {
    width: 100%;
    position: relative;
    opacity: 0;
    transition: 0.5s all;
}

.visible-search #master-search {
    opacity: 1;
    transition-delay: 0.3s;
}

.master-search-input {
    position: relative;
}

.master-search-input input[type="text"] {
    border: 0;
    padding: 0;
    font-size: 40px;
    height: 80px;
    font-weight: 700;
}

.master-search-input input[type="text"]::placeholder {
    opacity: 1;
    color: black;
}

.master-search-line {
    height: 2px;
    width: 0;
    background: black;
    transition: 0.8s all;
}

.visible-search .master-search-line {
    width: 100%;
    transition-delay: 0.5s;
}

.master-search-close {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
    position: absolute;
    top: 16px;
    right: 0;
    cursor: pointer;
    z-index: 1;
}

.master-search-close i {
    position: relative;
    z-index: 2;
}

.master-search-close:before {
    content: "";
    width: 50px;
    height: 50px;
    background: #eee;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
    transition: 0.3s all;
}

.master-search-close:hover:before {
    transform: translate(-50%, -50%) scale(1.2);
}

.master-search-results:not(:empty) {
    padding-top: 40px;
}

/* Page header */
#page-header {
    background: var(--light-color);
    padding: 25px 0;
    margin-bottom: 60px;
}

.page-header-title {
    font-size: 28px;
    line-height: 1.3;
}

.breadcrumbs {
    margin-top: 5px;
}

.breadcrumbs__separator {
    margin: 0 7px;
}

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

.master-post {
    width: 33.3%;
    padding: 0 15px 30px;
}

.master-post-thumbnail img {
    background: var(--light-color);
}

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

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

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

.master-post-details {
    padding: 15px 0;
}

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

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

.master-post-excerpt {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #444;
    word-break: break-words;
}

.master-post-button a {
    display: table;
}

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

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

/* Footer */
#footer {
    background-color: #222;
    color: #828c8a;
}

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

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

.footer-logo {
    width: 150px;
}

#footer a {
    color: #fff;
}

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

.footer-links ul {
    list-style: none;
    margin: 0;
}

.footer-links ul li:not(:last-child) {
    margin-bottom: 5px;
}

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

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

.footer-heading {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 17px;
    color: white;
}

.footer-desc {
    margin: 15px 0;
    line-height: 1.7;
}

.footer-contact-block:first-child {
    margin-bottom: 20px;
}

.footer-contact-block a {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 0.2px;
    font-size: 17px;
}

/* Mailchimp */
.footer-form-block {
    position: relative;
}

.footer-form-block input {
    height: 40px;
    border: 1px solid #666;
    border-radius: var(--border-radius);
    font-size: 14px;
    padding-right: 100px;
    background: transparent;
}

.footer-form-block button {
    background: transparent;
    width: 100px;
    height: 40px;
    line-height: 40px;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 14px;
    color: white;
}

/* Footer bottom */
#footer-bottom {
    border-top: 1px solid #303030;
}

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

.mfb-blocks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .mfb-block {
        width: 100%;
        text-align: center;
    }

    .mfb-second {
        margin-top: 15px;
    }
}

/* 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;
}

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

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

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

.colorfull-social .social-networks a {
    color: white;
    width: var(--form-height);
    height: var(--form-height);
    line-height: var(--form-height);
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    font-size: 16px;
    transition: 0.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;
}

.social-network-item-wl {
    width: 100%;
    margin-bottom: 7px;
}

.social-network-item-wl a {
    display: flex;
    align-items: center;
}

.social-network-label {
    padding-left: 12px;
}

/* Search results */
.search-title a {
    display: block;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
    color: black;
    font-size: 20px;
}

.search-title:last-child a {
    border-bottom: 0;
}

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

.live-search-button {
    margin-top: 30px;
}

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

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

.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;
    transition: 0.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;
}

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

.share-with-label li .master-label {
    padding-left: 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: var(--light-color);
    padding: 20px 0;
}

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

.next-previous-post {
    padding: 0 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;
    transition: 0.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;
    margin-left: auto;
}

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

.next-previous-post > div {
    position: relative;
}

.next-previous-post > div:before {
    position: absolute;
    top: 0;
    font-family: "Font Awesome 6 Free";
    width: 25px;
    height: 25px;
    line-height: 25px;
    color: white;
    text-align: center;
    border-radius: 3px;
    background: var(--main-color);
    display: inline-block;
    font-size: 14px;
    font-weight: 900;
}

.prev-post > div {
    padding-left: 40px;
}

.prev-post > div:before {
    content: "\f104";
    margin-right: 15px;
    left: 0;
}

.next-post > div {
    padding-right: 40px;
}

.next-post > div:before {
    content: "\f105";
    margin-left: 15px;
    right: 0;
}

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

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

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

.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;
}

.ms-gallery-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    background: red;
    border-radius: 50%;
}

.ms-gallery-pagination.swiper-pagination {
    margin: 15px -5px 30px;
}

.ms-gallery-nav:before {
    font-family: Feather;
}

.ms-gallery-nav-prev:before {
    content: "\e910";
}

.ms-gallery-nav-next:before {
    content: "\e912";
}

@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: 0.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 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 {
    margin-bottom: 30px;
}

.single-post-title h1 {
    font-size: 32px;
}

.single-post-thumbnail {
    margin-bottom: 30px;
}

.single-post-thumbnail img {
    background: var(--light-color);
    width: auto;
    max-height: 350px;
}

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

.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 img {
    width: auto;
    max-height: 350px;
}

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

.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;
}

.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%;
}

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

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

.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;
}

/* Single Post Author */
.single-author-area {
    margin-top: 40px;
}

.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: var(--light-color);
    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;
    }
}

/* FAQ */
.master-accordion-title {
    color: black;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 15px 15px 30px;
    cursor: pointer;
    border-bottom: 1px solid var(--light-color);
    position: relative;
    line-height: 1.4;
    user-select: none;
}

.master-accordion-title:before {
    content: "\f067";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 15px;
    font-size: 14px;
    position: absolute;
    left: 0;
    top: 17px;
    color: var(--main-color);
}

.master-accordion-title.active:before {
    content: "\f068";
}

.master-accordion-content {
    color: black;
    margin-top: 15px;
    display: none;
}

/* Default input */
/* 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 var(--border-color);
    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 var(--border-color);
    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 #c6c6c8;
    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);
    border-color: 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 -15px;
}

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

.form-100 {
    width: 100%;
}

.form-85 {
    width: 85%;
}

.form-50 {
    width: 50%;
}

.form-33 {
    width: 33.3%;
}

.form-25 {
    width: 25%;
}

.form-15 {
    width: 15%;
}

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

.form-element label {
    display: block;
    width: 100%;
    margin-bottom: 3px;
}

.form-simple-file label {
    border: 1px solid #ddd;
    padding: 10px 15px;
    cursor: pointer;
}

.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;
}

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

.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: 35px;
    width: 35px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    border-radius: var(--border-radius);
    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: 650px) {
    .form-50,
    .form-33,
    .form-25 {
        width: 100%;
    }
}

/* 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%;
}

/* ACF Map */
.acf-map-area {
    position: relative;
    margin-top: 80px;
}

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

.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;
}

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

.comment-reply-area {
    margin-bottom: 20px;
}

#comments {
    padding-bottom: 20px;
}

.comment-count-heading {
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 20px;
    margin-top: 30px;
}

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

.comment {
    display: flex;
    flex-wrap: wrap;
    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-solid {
    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;
    width: calc(100% - 70px);
}

.comment-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 14px;
}

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

.comment-rating {
    display: inline-flex;
    color: orange;
    font-size: 13px;
}

.comment-text {
    margin-top: 5px;
}

.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-name {
    padding-right: 5px;
}

.default-comment-form {
    width: 100%;
    margin-top: 15px;
}

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

@keyframes wd-rotate {
    100% {
        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";
    color: var(--light-color);
    font-size: 20px;
}

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

/* Gallery */
.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: var(--light-color);
}

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

.master-image a:hover .master-image-overlay {
    opacity: 0.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: 5px 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;
    opacity: 1;
    animation: loading 450ms infinite linear;
    transition: opacity 0.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, 0.3);
    border-left-color: #fff;
}

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

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

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

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

/* Swiper js */
.master-slider {
    height: 0;
    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: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--light-color);
    margin-right: 5px;
    color: black;
    padding: 0;
}

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

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

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

/* Mobile sticky phone */
.mobile-sticky-area {
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 1000;
}

.mobile-sticky-elements a {
    width: 45px;
    height: 45px;
    line-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    margin-top: 7px;
    font-size: 18px;
}

.mobile-sticky-phone {
    background: var(--main-color);
}

.mobile-sticky-whatsapp {
    background: #25ce25;
}

@media (min-width: 801px) {
    .mobile-sticky-area {
        display: none;
    }
}

/* MailChimp */
#mailchimp {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}

#mailchimp > div {
    padding: 0 5px;
}

.mailchimp-element input {
    border: 1px solid #ddd;
    height: 40px;
    padding: 0 10px;
}

.mailchimp-button button {
    background: red;
    height: 40px;
    padding: 0 30px;
    font-size: 17px;
    color: white;
    text-transform: uppercase;
}

.mailchimp-result:not(:empty) {
    display: table;
    margin: 10px auto 0;
}

.mailchimp-success {
    position: relative;
    padding-left: 35px;
    font-weight: 600;
}

.mailchimp-success:before {
    content: "\f058";
    font-family: FontAwesome;
    position: absolute;
    top: 0;
    left: 0;
    color: var(--main-color);
}

/* 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%;
}

/* 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 buttons */
.button {
    height: var(--form-height);
    cursor: pointer;
    padding: 0 30px;
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    border-radius: var(--border-radius);
    line-height: 1.2;
    user-select: none;
    transition: 0.15s all;
}

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

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

.primary-button:hover {
    background: var(--second-color);
    color: white;
    border-color: var(--second-color);
}

.outline-button {
    background: #fff;
    color: black;
    border: 1px solid var(--main-color);
}

.outline-button:hover {
    background: var(--main-color);
    color: white;
    border-color: var(--main-color);
}

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

.colored-button:hover {
    background: #f75848;
    border-color: #f75848;
}

.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;
}

.icon-right-button.loading:after {
    margin-left: -7.5px;
    margin-right: 0;
}

/* 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 #site-header {
    position: fixed;
    background: #fff;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    animation-name: sticky;
    animation-duration: 0.5s;
    border-top: 0;
    box-shadow: 0 15px 15px rgb(100 100 100 / 5%);
}

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

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

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

    to {
        transform: translateY(0);
    }
}

/* Topbar */
#topbar-wrap {
    border-bottom: 1px solid #ddd;
}

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

.topbar-block {
    padding: 5px 15px;
}

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

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

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

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

.hb-1 {
    width: 66.6%;
}

.hb-2 {
    width: 33.3%;
}

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

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

.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;
}

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

/* 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 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 100%;
    padding-right: 20px;
    display: none;
}

.whatsapp-toolbar-text span {
    display: block;
    background: white;
    color: black;
    padding: 8px 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgb(92 92 92 / 12%);
    line-height: 1.2;
    text-align: center;
    min-width: 170px;
    font-weight: 500;
    position: relative;
    z-index: -1;
}

.whatsapp-toolbar-text span:after {
    content: "";
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #21ad21;
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    z-index: 1;
}

.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 -7px;
    list-style: none;
    display: flex;
}

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

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

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

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

.language-dropdown-switcher ul {
    margin: 0 10px 0 0;
    list-style: none;
    position: relative;
    cursor: pointer;
    font-size: 16px;
}

.language-dropdown-switcher .ls-sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -8px;
    width: 100%;
    box-shadow: 0 0 10px rgb(0 0 0 / 8%);
    border-radius: 8px;
    min-width: 40px;
    background: white;
    padding: 8px 0;
}

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

.language-dropdown-switcher .language-label {
    padding-left: 10px;
    font-weight: 600;
    transition: 0.3s all;
}

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

.language-dropdown-switcher .ls-current-lang {
    display: flex;
    align-items: center;
    height: 38px;
    border-radius: 8px;
}

.language-dropdown-switcher .ls-current-lang:after {
    content: "\e92e";
    font-family: Feather;
    font-size: 14px;
    margin-left: 5px;
}

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

.language-dropdown-switcher .language-item a {
    color: black;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.language-dropdown-switcher .language-item a:hover .language-label {
    opacity: 0.5;
}

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

.language-dropdown-switcher .language-switcher.language-dropdown-switcher {
    margin-left: 15px;
}

/* Canvas sidebar */
.canvas-sidebar {
    visibility: hidden;
}

.active-canvas-sidebar {
    visibility: visible;
}

.canvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.7;
    display: block;
    z-index: 999;
    visibility: hidden;
}

.active-canvas-overlay {
    visibility: visible;
}

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

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

.canvas-sidebar-header {
    border-bottom: 1px solid var(--light-color);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px;
}

.csh-heading {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 22px;
}

.canvas-sidebar-body {
    padding: 40px 20px;
    overflow-y: auto;
    height: calc(100% - 97px);
}

.csh-close {
    font-size: 15px;
    cursor: pointer;
}

.csh-close:after {
    content: "\ea02";
    font-family: Feather;
    margin-left: 5px;
    transform: translateY(3px);
    display: inline-block;
    font-size: 18px;
}

/* Audio */
audio {
    height: 40px;
    width: 100%;
}

audio::-webkit-media-controls-enclosure {
    border-radius: 5px;
}

audio::-webkit-media-controls-panel {
    background: #ddd;
    height: 40px;
}

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

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

.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;
    margin: 30px -5px 0;
}

.swiper-pagination .swiper-pagination-bullet {
    margin: 0 5px;
    cursor: pointer;
    background: #ddd;
    transition: 0.3s all;
}

.swiper-pagination .swiper-pagination-bullet-active,
.swiper-pagination .swiper-pagination-bullet:hover {
    background: #444;
}

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

.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;
}

/* Tabs */
.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;
}

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

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

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

.master-scrolls ::-webkit-scrollbar-thumb:hover,
.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-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";
}

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

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

.fa-heart:before {
    content: "\f004";
}

.fa-comment:before {
    content: "\f075";
}

/* Pre-hide GSAP scroll-animation elements until master.js runs (prevents first-paint flash) */
.gsap-hidden .fade-in-only,
.gsap-hidden .fade-in-up,
.gsap-hidden .fade-in-down,
.gsap-hidden .fade-in-left,
.gsap-hidden .fade-in-right,
.gsap-hidden .fade-in-scale,
.gsap-hidden .fade-out-scale {
    opacity: 0;
}

/* ==========================================================================
   DONDURMA — DİZAYN QATI
   ========================================================================== */

body {
    background: var(--cream-color);
    color: var(--dark-color);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

.container,
.has-sidebar #content-wrap {
    width: 1230px;
}

#primary {
    padding-bottom: 0;
}

h1,
h2,
h3,
h4 {
    font-family: var(--heading-family);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.08;
}

a {
    color: inherit;
    text-decoration: none;
}

.heading-accent {
    color: var(--main-color);
}

.heading-accent-italic {
    font-style: italic;
}

.empty-result {
    padding: 60px 0;
    text-align: center;
    color: var(--muted-color);
}

/* ---------- DÜYMƏLƏR ---------- */
.button {
    height: 56px;
    padding: 0 34px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--pill-radius);
    border: 1px solid transparent;
    background: white;
    color: var(--dark-color);
    border-color: var(--border-color);
}

.button:hover {
    border-color: var(--dark-color);
}

.primary-button {
    background: var(--main-color);
    border-color: var(--main-color);
    color: white;
    box-shadow: 0 10px 30px rgba(46, 197, 252, 0.35);
}

.primary-button:hover {
    background: var(--main-dark);
    border-color: var(--main-dark);
    color: white;
    box-shadow: 0 14px 34px rgba(46, 197, 252, 0.45);
}

.wide-button {
    width: 100%;
}

.arrow-link {
    color: var(--main-color);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.arrow-link:after {
    content: "\2192";
    transition: 0.15s transform;
}

.arrow-link:hover:after {
    transform: translateX(5px);
}

/* ---------- BÖLMƏ BAŞLIĞI ---------- */
.heading-area {
    margin-bottom: 45px;
}

.heading-area .sub-heading {
    color: var(--main-color);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.heading-area .heading {
    font-size: 52px;
    margin: 0;
}

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

.center-heading .heading {
    max-width: 850px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .heading-area .heading {
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .heading-area .heading {
        font-size: 29px;
    }
    .button {
        height: 50px;
        padding: 0 26px;
        font-size: 15px;
    }
}

/* ---------- HEADER ---------- */
#site-header {
    background: var(--cream-color);
}

.master-header-area {
    padding: 18px 0;
}

#site-logo {
    width: auto;
}

.site-name {
    display: flex;
    align-items: baseline;
    gap: 9px;
}

.site-name-main {
    font-family: var(--heading-family);
    font-weight: 900;
    font-size: 27px;
    color: var(--main-color);
    letter-spacing: -0.02em;
}

.site-name-sub {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted-color);
}

#site-navigation-wrap .master-main-menu {
    gap: 34px;
}

#site-navigation-wrap .master-main-menu > .menu-item > a {
    font-weight: 500;
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    color: var(--dark-color);
}

.header-aside {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
}

.language-switcher ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 11px;
}

.language-item a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--muted-color);
    text-transform: uppercase;
}

.language-item a:hover {
    color: var(--dark-color);
}

.current-language-item a {
    color: var(--dark-color);
}

.header-quote .button {
    height: 46px;
    padding: 0 26px;
    font-size: 15px;
}

#mobile-sidebar-menu {
    display: none;
}

@media (max-width: 991px) {
    #site-navigation-wrap {
        display: none;
    }
    #mobile-sidebar-menu {
        display: block;
    }
    .header-quote {
        display: none;
    }
    .header-aside .language-switcher {
        display: none;
    }
}

/* ---------- SƏHİFƏ BAŞLIĞI ---------- */
#page-header {
    background: var(--cream-color) url("/assets/images/hero-pattern.webp")
        center top repeat;
    background-size: 780px auto;
    padding: 75px 0 80px;
    margin-bottom: 0;
    text-align: center;
}

.page-header-title {
    font-size: inherit;
    line-height: inherit;
}

.page-header-title h1 {
    font-size: 62px;
    margin: 0;
}

.page-header-subheading {
    font-family: var(--heading-family);
    font-weight: 700;
    font-size: 25px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--main-color);
    margin-top: 22px;
}

.page-header-desc {
    max-width: 660px;
    margin: 16px auto 0;
    color: var(--muted-color);
}

.filter-names {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.filter-name a {
    display: inline-flex;
    align-items: center;
    height: 42px;
    padding: 0 22px;
    background: white;
    border-radius: var(--pill-radius);
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(30, 26, 23, 0.06);
}

.filter-name.active a,
.filter-name a:hover {
    background: var(--main-color);
    color: white;
    box-shadow: 0 8px 20px rgba(46, 197, 252, 0.35);
}

.filter-select {
    display: none;
}

@media (max-width: 991px) {
    #page-header {
        padding: 55px 0 60px;
    }
    .page-header-title h1 {
        font-size: 44px;
    }
    .page-header-subheading {
        font-size: 20px;
    }
    .filter-names {
        display: none;
    }
    .filter-select {
        display: block;
        max-width: 360px;
        margin: 26px auto 0;
    }
    .filter-select select {
        height: 48px;
        line-height: 48px;
        padding: 0 44px 0 22px;
        border-radius: var(--pill-radius);
        font-size: 15px;
        font-weight: 500;
        background-position-x: calc(100% - 18px);
        background-position-y: center;
        box-shadow: 0 2px 10px rgba(30, 26, 23, 0.06);
    }
}

@media (max-width: 575px) {
    .page-header-title h1 {
        font-size: 33px;
    }
}

/* ---------- HERO ---------- */
.hero-area {
    background: var(--cream-color);
    padding: 40px 0 0;
    overflow: hidden;
}

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

.hero-block-1 {
    width: 47%;
    padding: 40px 0 90px;
}

.hero-block-2 {
    width: 53%;
    position: relative;
}

.hero-heading {
    font-size: 82px;
    text-transform: uppercase;
    margin: 0;
}

.hero-text {
    margin-top: 28px;
    max-width: 470px;
    color: var(--muted-color);
    font-size: 17px;
}

.hero-button {
    margin-top: 35px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
    margin-top: 60px;
}

.hero-stat-number {
    font-family: var(--heading-family);
    font-weight: 900;
    font-size: 35px;
    line-height: 1;
}

.hero-stat-label {
    margin-top: 6px;
    font-size: 13px;
    color: var(--muted-color);
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-block-2:before,
.hero-block-2:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.hero-block-2:before {
    width: 58%;
    padding-bottom: 58%;
    background: var(--mint-color);
    right: 6%;
    top: 2%;
}

.hero-block-2:after {
    width: 52%;
    padding-bottom: 52%;
    background: var(--sky-color);
    left: 8%;
    bottom: 4%;
}

@media (max-width: 1199px) {
    .hero-heading {
        font-size: 64px;
    }
}

@media (max-width: 991px) {
    .hero-block-1,
    .hero-block-2 {
        width: 100%;
    }
    .hero-block-1 {
        padding: 20px 0 40px;
        text-align: center;
    }
    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-stats {
        justify-content: center;
        margin-top: 30px;
        margin-bottom: 60px;
    }
    .hero-heading {
        font-size: 52px;
    }
}

@media (max-width: 575px) {
    .hero-heading {
        font-size: 38px;
    }
    .hero-stats {
        gap: 26px;
    }
    .hero-stat-number {
        font-size: 27px;
    }
}

/* ---------- ANA SƏHİFƏ — HAQQIMIZDA ---------- */
.home-about-area {
    background: white;
    padding: 95px 0;
}

.home-about-blocks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -30px;
}

.home-about-block {
    padding: 0 30px;
}

.home-about-block-1 {
    width: 45%;
}

.home-about-block-2 {
    width: 55%;
}

.home-about-image img {
    border-radius: var(--card-radius);
}

.home-about-text {
    color: var(--muted-color);
}

.home-about-text p {
    margin: 0 0 18px;
}

.home-about-button {
    margin-top: 30px;
}

@media (max-width: 991px) {
    .home-about-area {
        padding: 60px 0;
    }
    .home-about-block-1,
    .home-about-block-2 {
        width: 100%;
    }
    .home-about-block-1 {
        margin-bottom: 35px;
    }
}

/* ---------- KATEQORİYALAR ---------- */
.categories-area {
    background: var(--cream-color);
    padding: 95px 0;
}

.categories-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
}

.categories-top .heading-area {
    margin-bottom: 0;
    max-width: 620px;
}

.categories-desc {
    margin-top: 16px;
    color: var(--muted-color);
}

.categories-blocks {
    display: flex;
    flex-wrap: wrap;
    margin: 45px -14px -28px;
}

.category-block {
    width: 33.333%;
    padding: 0 14px 28px;
    display: flex;
}

.category-icon-box {
    width: 100%;
    background: white;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(30, 26, 23, 0.06);
    transition:
        0.2s transform,
        0.2s box-shadow;
}

.category-icon-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(30, 26, 23, 0.1);
}

.category-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
}

.category-details {
    padding: 22px 26px 28px;
}

.category-title {
    font-family: var(--heading-family);
    font-weight: 700;
    font-size: 20px;
}

.category-desc {
    margin-top: 10px;
    color: var(--muted-color);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .categories-area {
        padding: 60px 0;
    }
    .category-block {
        width: 50%;
    }
}

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

/* ---------- MƏHSUL KARTI ---------- */
.master-products {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -14px -28px;
}

.master-product {
    width: 25%;
    padding: 0 14px 28px;
    display: flex;
}

.master-product-inner {
    width: 100%;
    background: white;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(30, 26, 23, 0.06);
    display: flex;
    flex-direction: column;
    transition:
        0.2s transform,
        0.2s box-shadow;
}

.master-product-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(30, 26, 23, 0.1);
}

.master-product-thumbnail {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.master-product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.master-product-details {
    padding: 20px 24px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.master-product-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}

.master-product-title {
    font-family: var(--heading-family);
    font-weight: 700;
    font-size: 19px;
    margin: 0;
}

.master-product-desc {
    margin-top: 13px;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--muted-color);
}

.master-product-button {
    margin-top: auto;
    padding-top: 18px;
}

@media (max-width: 1199px) {
    .master-product {
        width: 33.333%;
    }
}

@media (max-width: 991px) {
    .master-product {
        width: 50%;
    }
}

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

/* ---------- MƏHSUL SİYAHISI (repeater) ---------- */
.product-list-area {
    background: white;
    padding: 90px 0;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -14px -28px;
}

.product-list-item {
    width: 25%;
    padding: 0 14px 28px;
    display: flex;
}

.product-list-link {
    background: white;
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition:
        0.2s transform,
        0.2s box-shadow;
}

.product-list-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(30, 26, 23, 0.1);
}

.product-list-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: white;
    padding: 15px;
}

.product-list-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-list-title {
    padding: 16px 18px 20px;
    text-align: center;
    font-family: var(--heading-family);
    font-weight: 700;
    font-size: 17px;
    line-height: 1.35;
    color: var(--dark-color);
}

@media (max-width: 991px) {
    .product-list-area {
        padding: 60px 0;
    }
    .product-list-item {
        width: 33.333%;
    }
}

@media (max-width: 575px) {
    .product-list-item {
        width: 50%;
    }
    .product-list-title {
        font-size: 15px;
    }
}

/* ---------- SEÇİLMİŞ MƏHSULLAR ---------- */
.featured-area {
    background: white;
    padding: 95px 0;
}

.featured-area .product-list-item {
    width: 33.333%;
}

.featured-button {
    margin-top: 50px;
    text-align: center;
}

@media (max-width: 991px) {
    .featured-area {
        padding: 60px 0;
    }
    .featured-area .product-list-item {
        width: 50%;
    }
}

@media (max-width: 575px) {
    .featured-area .product-list-item {
        width: 50%;
    }
}

/* ---------- MƏHSUL ARXİVİ ---------- */
.products-area {
    background: var(--cream-color);
    padding: 70px 0 95px;
}

@media (max-width: 991px) {
    .products-area {
        padding: 50px 0 60px;
    }
}

/* ---------- DONDURMADAN DAHA ÇOX ---------- */
.more-area {
    background: var(--cream-color);
    padding: 95px 0;
}

.more-blocks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -30px;
}

.more-block {
    padding: 0 30px;
}

.more-block-1 {
    width: 52%;
}

.more-block-2 {
    width: 48%;
}

.more-block-1 .heading-area {
    margin-bottom: 28px;
}

.more-text {
    color: var(--muted-color);
}

.more-text p {
    margin: 0 0 18px;
}

.more-stats {
    display: flex;
    flex-wrap: wrap;
    margin-top: 35px;
    border-top: 1px solid var(--border-color);
}

.more-stat {
    width: 50%;
    padding: 26px 30px 26px 0;
    border-bottom: 1px solid var(--border-color);
}

.more-stat:nth-child(odd) {
    border-right: 1px solid var(--border-color);
}

.more-stat:nth-child(even) {
    padding-left: 30px;
}

.more-stat:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.more-stat-number {
    font-family: var(--heading-family);
    font-weight: 900;
    font-size: 38px;
    line-height: 1;
    color: var(--main-color);
}

.more-stat-label {
    margin-top: 8px;
    font-size: 14px;
    color: var(--muted-color);
}

.more-image img {
    border-radius: var(--card-radius);
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

@media (max-width: 991px) {
    .more-area {
        padding: 60px 0;
    }
    .more-block-1,
    .more-block-2 {
        width: 100%;
    }
    .more-block-2 {
        margin-top: 35px;
    }
}

/* ---------- İSTEHSAL & KEYFİYYƏT ---------- */
.process-area {
    background: var(--cream-color);
    padding: 0 0 95px;
}

.process-blocks {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px -20px;
}

.process-block {
    width: 20%;
    padding: 0 10px 20px;
    display: flex;
}

.process-icon-box {
    width: 100%;
    padding: 26px 24px 30px;
    border-radius: var(--border-radius);
    background: white;
    border: 1px solid var(--border-color);
}

.process-block:nth-child(odd) .process-icon-box {
    background: var(--cream-deep);
    border-color: transparent;
}

.process-number {
    font-family: var(--heading-family);
    font-weight: 900;
    font-size: 24px;
    color: var(--main-color);
    line-height: 1;
}

.process-details {
    margin-top: 20px;
}

.process-title {
    font-weight: 600;
    font-size: 15px;
    line-height: 1.3;
}

.process-desc {
    margin-top: 8px;
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--muted-color);
}

.quality-blocks {
    display: flex;
    flex-wrap: wrap;
    margin: 25px -10px -20px;
}

.quality-block {
    width: 25%;
    padding: 0 10px 20px;
    display: flex;
}

.quality-icon-box {
    width: 100%;
    padding: 32px 24px;
    border-radius: var(--border-radius);
    text-align: center;
}

.quality-block:nth-child(1) .quality-icon-box {
    background: #e9efe4;
}

.quality-block:nth-child(2) .quality-icon-box {
    background: #e7eaee;
}

.quality-block:nth-child(3) .quality-icon-box {
    background: #fbe8e6;
}

.quality-block:nth-child(4) .quality-icon-box {
    background: #fdf1d8;
}

.quality-icon {
    width: 70px;
    color: var(--main-color);
    line-height: 1;
    margin: 0 auto;
}

.quality-details {
    margin-top: 18px;
}

.quality-title {
    font-weight: 600;
    font-size: 15px;
}

@media (max-width: 1199px) {
    .process-block {
        width: 33.333%;
    }
}

@media (max-width: 991px) {
    .process-area {
        padding: 0 0 60px;
    }
    .process-block {
        width: 50%;
    }
    .quality-block {
        width: 50%;
    }
}

@media (max-width: 575px) {
    .process-block,
    .quality-block {
        width: 100%;
    }
}

/* ---------- XƏBƏR KARTI ---------- */
.master-posts {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -14px -28px;
}

.master-post {
    width: 33.333%;
    padding: 0 14px 28px;
    display: flex;
}

.master-post-inner {
    width: 100%;
    background: white;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(30, 26, 23, 0.06);
    display: flex;
    flex-direction: column;
    transition:
        0.2s transform,
        0.2s box-shadow;
}

.master-post-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(30, 26, 23, 0.1);
}

.master-post-thumbnail {
    overflow: hidden;
}

.master-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--light-color);
    aspect-ratio: 5 / 3.5;
}

.master-post-details {
    padding: 22px 26px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.master-post-date {
    font-size: 13px;
    color: var(--muted-color);
}

.master-post-title {
    margin: 10px 0 0;
    font-family: var(--heading-family);
    font-weight: 700;
    font-size: 20px;
}

.master-post-excerpt {
    margin-top: 12px;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--muted-color);
}

.master-post-button {
    margin-top: auto;
    padding-top: 18px;
}

@media (max-width: 991px) {
    .master-post {
        width: 50%;
    }
}

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

/* ---------- ANA SƏHİFƏ — XƏBƏRLƏR ---------- */
.home-posts-area {
    background: var(--cream-deep);
    padding: 95px 0;
}

.home-posts-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 45px;
}

.home-posts-top .heading-area {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .home-posts-area {
        padding: 60px 0;
    }
}

/* ---------- XƏBƏR ARXİVİ ---------- */
.all-posts-area {
    background: var(--cream-color);
    padding: 70px 0 95px;
}

@media (max-width: 991px) {
    .all-posts-area {
        padding: 50px 0 60px;
    }
}

/* ---------- RƏYLƏR ---------- */
.reviews-area {
    background: white;
    padding: 95px 0;
}

.reviews-blocks {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -14px -28px;
}

.review-block {
    width: 33.333%;
    padding: 0 14px 28px;
    display: flex;
}

.review-icon-box {
    width: 100%;
    background: var(--cream-color);
    border-radius: var(--card-radius);
    padding: 32px 30px;
    display: flex;
    flex-direction: column;
}

/*
 * Sitat işarəsi xarici SVG-dir. `<img>` əvəzinə `mask` işlədilir ki, faylın öz rəngi (#000)
 * deyil, saytın palitrası tətbiq olunsun — SVG-ni redaktə etmədən rəngi CSS idarə edir.
 */
.review-quote {
    width: 26px;
    height: 26px;
    background-color: var(--sky-color);
    -webkit-mask: url("/uploads/2026/09/left.svg") no-repeat center center;
    mask: url("/uploads/2026/09/left.svg") no-repeat center center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.review-text {
    margin-top: 22px;
    margin-bottom: 22px;
    color: var(--muted-color);
    line-height: 1.7;
}

.review-author {
    margin-top: auto;
    padding-top: 26px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--border-color);
}

.review-author-letter {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    background: var(--mint-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

.review-author-name {
    font-weight: 600;
    font-size: 15px;
}

.review-author-position {
    font-size: 13px;
    color: var(--muted-color);
}

@media (max-width: 991px) {
    .reviews-area {
        padding: 60px 0;
    }
    .review-block {
        width: 100%;
    }
}

/* ---------- B2B ÇAĞIRIŞ ---------- */
.cta-area {
    background: var(--second-color);
    padding: 95px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-blocks {
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding: 0 22px;
    border-radius: var(--pill-radius);
    background: var(--dark-color);
    color: white;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.cta-heading {
    margin: 30px auto 0;
    max-width: 900px;
    font-size: 62px;
}

.cta-text {
    margin: 22px auto 0;
    max-width: 620px;
    color: rgba(30, 26, 23, 0.75);
}

.cta-button {
    margin-top: 34px;
}

.cta-note {
    margin-top: 22px;
    font-size: 14px;
    color: rgba(30, 26, 23, 0.6);
}

@media (max-width: 991px) {
    .cta-area {
        padding: 60px 0;
    }
    .cta-heading {
        font-size: 42px;
    }
}

@media (max-width: 575px) {
    .cta-heading {
        font-size: 31px;
    }
}

/* ---------- HAQQIMIZDA SƏHİFƏSİ ---------- */
.about-area {
    background: white;
    padding: 95px 0;
}

.about-blocks,
.quality-area-blocks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -30px;
}

.about-block,
.quality-area-block {
    padding: 0 30px;
}

.about-block-1 {
    width: 52%;
}

.about-block-2 {
    width: 48%;
}

.about-text,
.quality-area-text {
    color: var(--muted-color);
}

.about-text p,
.quality-area-text p {
    margin: 0 0 18px;
}

.about-image img,
.quality-area-image img {
    border-radius: var(--card-radius);
}

.quality-area {
    background: var(--cream-color);
    padding: 95px 0;
}

.quality-area-block-1 {
    width: 48%;
}

.quality-area-block-2 {
    width: 52%;
}

.about-process-area {
    background: var(--cream-color) url("/assets/images/hero-pattern.webp")
        center top repeat;
    background-size: 780px auto;
    padding: 85px 0 95px;
}

.about-process-blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -18px -40px;
    text-align: center;
}

.about-process-block {
    width: 33.333%;
    padding: 0 18px 40px;
}

.about-process-number {
    font-family: var(--heading-family);
    font-weight: 900;
    font-size: 26px;
    color: var(--main-color);
    line-height: 1;
}

.about-process-title {
    margin-top: 16px;
    font-family: var(--heading-family);
    font-weight: 700;
    font-size: 19px;
    color: var(--main-color);
}

.about-process-desc {
    margin-top: 12px;
    color: var(--muted-color);
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta-area {
    background: white;
    padding: 95px 0;
}

.about-cta-blocks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -30px;
}

.about-cta-block {
    padding: 0 30px;
}

.about-cta-block-1 {
    width: 42%;
}

.about-cta-block-2 {
    width: 58%;
}

.about-cta-heading {
    font-size: 44px;
    margin: 0;
}

.about-cta-text {
    margin-top: 22px;
    color: var(--muted-color);
}

.about-cta-button {
    margin-top: 30px;
}

.about-cta-gallery {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px -20px;
}

.about-cta-gallery-item {
    width: 50%;
    padding: 0 10px 20px;
}

.about-cta-gallery-item img {
    border-radius: var(--border-radius);
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.about-cta-gallery-item:nth-child(2) {
    margin-top: 40px;
}

.about-cta-gallery-item:nth-child(3) {
    margin-top: -40px;
}

@media (max-width: 991px) {
    .about-area,
    .quality-area,
    .about-cta-area {
        padding: 60px 0;
    }
    .about-process-area {
        padding: 55px 0 60px;
    }
    .about-block-1,
    .about-block-2,
    .quality-area-block-1,
    .quality-area-block-2,
    .about-cta-block-1,
    .about-cta-block-2 {
        width: 100%;
    }
    .about-block-2,
    .about-cta-block-2 {
        margin-top: 35px;
    }
    .quality-area-block-2 {
        margin-top: 35px;
    }
    .quality-area-blocks {
        flex-direction: column-reverse;
    }
    .about-process-block {
        width: 50%;
    }
    .about-cta-heading {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .about-process-block {
        width: 100%;
    }
    .about-cta-gallery-item:nth-child(2),
    .about-cta-gallery-item:nth-child(3) {
        margin-top: 0;
    }
}

/* ---------- MƏHSUL DETALI ---------- */
.single-product-area {
    background: var(--cream-color);
    padding: 70px 0 90px;
}

.single-product-blocks {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 0 -30px;
}

.single-product-block {
    padding: 0 30px;
}

.single-product-block-1 {
    width: 48%;
}

.single-product-block-2 {
    width: 52%;
}

.single-product-thumbnail img {
    border-radius: var(--card-radius);
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: white;
}

.single-product-gallery {
    display: flex;
    flex-wrap: wrap;
    margin: 16px -8px 0;
}

.single-product-gallery-item {
    width: 25%;
    padding: 0 8px;
}

.single-product-gallery-item img {
    border-radius: var(--border-radius);
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.single-product-category a {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--main-color);
    font-weight: 600;
}

.single-product-title {
    margin: 14px 0 0;
    font-size: 44px;
}

.single-product-volume {
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding: 0 16px;
    margin-top: 16px;
    border-radius: var(--pill-radius);
    background: var(--mint-color);
    font-size: 13px;
    font-weight: 600;
}

.single-product-content {
    margin-top: 24px;
    color: var(--muted-color);
}

.single-product-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.related-products-area {
    background: var(--cream-color);
    padding: 90px 0;
}

@media (max-width: 991px) {
    .single-product-area {
        padding: 50px 0 60px;
    }
    .single-product-block-1,
    .single-product-block-2 {
        width: 100%;
    }
    .single-product-block-2 {
        margin-top: 30px;
    }
    .single-product-title {
        font-size: 32px;
    }
    .related-products-area {
        padding: 60px 0;
    }
}

/* ---------- XƏBƏR DETALI ---------- */
.single-post-area {
    background: var(--cream-color);
    padding: 70px 0 90px;
}

.single-post-head {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.single-post-date {
    font-size: 14px;
    color: var(--muted-color);
}

.single-post-title {
    margin: 14px 0 0;
    font-size: 46px;
}

.single-post-thumbnail {
    margin: 40px 0;
}

.single-post-thumbnail img {
    border-radius: var(--card-radius);
    aspect-ratio: 16 / 8;
    object-fit: cover;
}

.single-post-area .single-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--muted-color);
}

@media (max-width: 991px) {
    .single-post-area {
        padding: 50px 0 60px;
    }
    .single-post-title {
        font-size: 32px;
    }
}

/* ---------- ƏLAQƏ ---------- */
.contact-area {
    background: var(--cream-color);
    padding: 70px 0 95px;
}

.contact-blocks {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 0 -25px;
}

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

.contact-block-1 {
    width: 42%;
}

.contact-block-2 {
    width: 58%;
}

.contact-block-1 .heading-area {
    margin-bottom: 20px;
}

.contact-block-1 .heading {
    font-size: 34px;
}

.contact-text {
    color: var(--muted-color);
    max-width: 440px;
}

.contact-info-blocks {
    margin-top: 35px;
}

.contact-info-block {
    display: flex;
    align-items: center;
    gap: 18px;
    background: white;
    border-radius: var(--border-radius);
    padding: 18px 22px;
    margin-bottom: 14px;
    box-shadow: 0 2px 14px rgba(30, 26, 23, 0.05);
}

.contact-info-icon {
    font-size: 24px;
    color: var(--main-color);
    line-height: 1;
}

.contact-info-label {
    font-size: 13px;
    color: var(--muted-color);
}

.contact-info-data {
    font-weight: 600;
    margin-top: 2px;
}

.contact-form-box {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 40px rgba(30, 26, 23, 0.07);
}

.contact-form-heading {
    font-family: var(--heading-family);
    font-weight: 700;
    font-size: 24px;
}

.form-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 26px 0 24px;
}

.form-topics .form-choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.form-topics .form-choice label {
    display: inline-flex;
    align-items: center;
    height: 38px;
    padding: 0 18px;
    border-radius: var(--pill-radius);
    background: var(--cream-deep);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.15s all;
}

.form-topics .form-choice input:checked + label {
    background: var(--main-color);
    color: white;
}

.contact-form-box input[type="text"],
.contact-form-box input[type="email"],
.contact-form-box textarea {
    width: 100%;
    height: var(--form-height);
    padding: 0 20px;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    background: #fffcf7;
    font-family: var(--font-family);
    font-size: 15px;
    color: var(--dark-color);
    box-sizing: border-box;
    transition: 0.15s border-color;
}

.contact-form-box textarea {
    height: 130px;
    padding: 16px 20px;
    resize: vertical;
}

.contact-form-box input[type="text"],
.contact-form-box input[type="email"],
.contact-form-box textarea,
.quote-canvas input[type="text"] {
    box-shadow: none;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
    outline: none;
    border-color: var(--main-color);
}

.contact-form-box .form-submit {
    margin-top: 12px;
}

.contact-form-box .form-result {
    margin-top: 16px;
}

@media (max-width: 991px) {
    .contact-area {
        padding: 50px 0 60px;
    }
    .contact-block-1,
    .contact-block-2 {
        width: 100%;
    }
    .contact-block-2 {
        margin-top: 35px;
    }
    .contact-form-box {
        padding: 28px 22px;
    }
}

/* ---------- FOOTER ---------- */
#footer {
    background: var(--dark-color);
    color: rgba(255, 255, 255, 0.72);
    padding: 75px 0 0;
}

.footer-blocks {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px -35px;
}

.footer-block {
    padding: 0 20px 35px;
}

.footer-block-1 {
    width: 34%;
}

.footer-block-2,
.footer-block-3,
.footer-block-4 {
    width: 22%;
}

.footer-logo .site-name-main {
    text-transform: uppercase;
}

.footer-desc {
    margin-top: 20px;
    font-size: 14.5px;
    line-height: 1.7;
    max-width: 260px;
}

.footer-heading {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 11px;
}

.footer-links a:hover {
    color: white;
}

.footer-contact-block {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 11px;
}

.footer-contact-icon {
    color: var(--main-color);
    line-height: 1.6;
}

.footer-contact-data a:hover {
    color: white;
}

.footer-language-switcher ul {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    gap: 12px;
}

.footer-language-item a {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.footer-language-switcher .current-language-item a,
.footer-language-item a:hover {
    color: var(--main-color);
}

.footer-quote .button {
    height: 46px;
    padding: 0 24px;
    font-size: 15px;
}

#footer-bottom {
    margin-top: 55px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mfb-blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    padding: 24px 0;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.45);
}

.mfb-block a {
    color: rgba(255, 255, 255, 0.7);
}

.mfb-block a:hover {
    color: white;
}

@media (max-width: 991px) {
    #footer {
        padding-top: 55px;
    }
    .footer-block-1 {
        width: 100%;
    }
    .footer-block-2,
    .footer-block-3,
    .footer-block-4 {
        width: 33.333%;
    }
}

@media (max-width: 575px) {
    .footer-block-2,
    .footer-block-3,
    .footer-block-4 {
        width: 100%;
    }
    .mfb-blocks {
        justify-content: center;
        text-align: center;
    }
}

/* ==========================================================================
   DÜZƏLİŞ QATI — dizayn üzrə ikinci keçid
   ========================================================================== */

/* ---------- HERO ZƏRLƏRİ (parallaks) ---------- */
.hero-sprinkles {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-sprinkles-item {
    will-change: transform;
    transition: transform 0.45s ease-out;
}

.hero-sprinkles-item img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.hero-image {
    z-index: 2;
}

/*
 * Parallaks yalnız 959px-dən yuxarıda işləyir. Plugin-in destroy metodu yoxdur və
 * inline `style.transform` yazır — ekran kiçildiləndə son dəyər ilişib qalardı,
 * ona görə CSS burada onu məcburi sıfırlayır.
 */
@media (max-width: 958px) {
    .hero-sprinkles-item {
        transform: none !important;
        transition: none;
    }
}

/* ---------- FIXED HEADER ---------- */
.has-fixed-header {
    padding-top: 82px;
}

.has-fixed-header #site-header {
    background: var(--cream-color);
    box-shadow: 0 6px 26px rgba(30, 26, 23, 0.07);
}

.has-fixed-header .header-aside {
    position: static;
}

.has-fixed-header .master-header-area {
    padding: 10px 0;
}

@media (max-width: 991px) {
    .has-fixed-header {
        padding-top: 74px;
    }
}

/* ---------- STATİSTİKA SAYĞACI ---------- */
.master-milestone-number span {
    display: inline;
}

/* ---------- B2B ÇAĞIRIŞ — qradient və dairələr ---------- */
.cta-area {
    background: linear-gradient(150deg, #f6da66 0%, #f2cf45 45%, #eabc24 100%);
}

.cta-area:before,
.cta-area:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.cta-area:before {
    width: 460px;
    height: 460px;
    background: rgba(255, 255, 255, 0.17);
    left: -120px;
    top: -150px;
}

.cta-area:after {
    width: 720px;
    height: 720px;
    background: rgba(150, 102, 0, 0.09);
    right: -180px;
    bottom: -300px;
}

@media (max-width: 575px) {
    .cta-area:before {
        width: 260px;
        height: 260px;
        left: -90px;
        top: -90px;
    }
    .cta-area:after {
        width: 380px;
        height: 380px;
        right: -130px;
        bottom: -180px;
    }
}

/* ---------- MOBİLDƏ ÜFÜQİ DAŞMANIN QARŞISI ---------- */
/*
 * `.container` yanlarda cəmi 5% boşluq saxlayır (max-width: 90%). Kiçik ekranda bu ~19px edir,
 * iki sütunlu blokların `margin: 0 -30px` gutter-i isə ondan böyükdür → sətir hər tərəfdən
 * daşır və `#outer-wrap`-ın overflow:hidden-i onu toxunma ilə sürüşən qutuya çevirir
 * ("ekran sağa-sola qaçır"). Bloklar onsuz da bu enlərdə alt-alta düzüldüyü üçün gutter lazımsızdır.
 */
html,
body {
    overflow-x: hidden;
}

@media (max-width: 991px) {
    .home-about-blocks,
    .more-blocks,
    .about-blocks,
    .quality-area-blocks,
    .about-cta-blocks,
    .single-product-blocks,
    .contact-blocks,
    .footer-blocks {
        margin-left: 0;
        margin-right: 0;
    }
    .home-about-block,
    .more-block,
    .about-block,
    .quality-area-block,
    .about-cta-block,
    .single-product-block,
    .contact-block,
    .footer-block {
        padding-left: 0;
        padding-right: 0;
    }
}

/* ---------- YUXARI QALX DÜYMƏSİ ---------- */
#site-scroll-top {
    border-radius: 50%;
    background: white;
    color: var(--dark-color);
    font-size: 22px;
    box-shadow: 0 6px 24px rgba(30, 26, 23, 0.12);
    transition: 0.2s all;
}

#site-scroll-top:hover {
    background: var(--main-color);
    color: white;
    box-shadow: 0 10px 28px rgba(46, 197, 252, 0.4);
}

/* ---------- MOBİL MENYUDA DİL KEÇİDİ ---------- */
.mobile-menu-language {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-language-switcher ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.mobile-menu-area .mobile-language-item a {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    padding: 0;
}

.mobile-menu-area .current-language-item a {
    color: var(--main-color);
}

/* ---------- FOOTER (dizayndakı isti-boz tonlar) ---------- */
#footer {
    color: #8a7e78;
}

.footer-desc,
.footer-links a,
.footer-contact-data,
.footer-contact-data a {
    color: #8a7e78;
}

.footer-heading {
    color: #6b5f50;
}

.footer-language-item a {
    color: #6b5f50;
}

.footer-language-switcher .current-language-item a {
    color: var(--main-color);
}

#footer-bottom {
    margin-top: 45px;
    border-top-color: rgba(255, 255, 255, 0.07);
}

.mfb-blocks {
    padding: 18px 0 20px;
    color: #6b5f50;
}

.mfb-block a {
    color: #8a7e78;
}

/* ---------- ƏLAQƏ FORMASI (hamısı alt-alta, bərabər aralıq) ---------- */
.contact-form-box .form-element {
    width: 100%;
    padding: 0;
    margin-bottom: 16px;
}

.contact-form-box .form-element:last-of-type {
    margin-bottom: 0;
}

.contact-form-box .form-submit {
    margin-top: 24px;
}

/* ---------- QİYMƏT TƏKLİFİ CANVAS-I ---------- */
.canvas-sidebar {
    visibility: hidden;
}

.active-canvas-sidebar {
    visibility: visible;
}

.canvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 26, 23, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s all;
    z-index: 9999;
}

.active-canvas-overlay {
    opacity: 1;
    visibility: visible;
}

.quote-canvas {
    width: 400px;
    max-width: 80%;
    background: var(--cream-color);
}

.quote-canvas .canvas-sidebar-header {
    border-bottom: 1px solid var(--border-color);
    padding: 26px 30px;
}

.quote-canvas .csh-heading {
    font-family: var(--heading-family);
    font-weight: 700;
    font-size: 21px;
    text-transform: none;
}

.quote-canvas .csh-close {
    color: var(--muted-color);
}

.quote-canvas .canvas-sidebar-body {
    padding: 30px;
}

.quote-canvas-desc {
    color: var(--muted-color);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 24px;
}

.quote-canvas .form-element {
    margin-bottom: 0;
}

.quote-canvas input[type="text"] {
    width: 100%;
    height: var(--form-height);
    padding: 0 20px;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    background: white;
    font-family: var(--font-family);
    font-size: 15px;
    color: var(--dark-color);
    box-sizing: border-box;
    transition: 0.15s border-color;
}

.quote-canvas input[type="text"]:focus {
    outline: none;
    border-color: var(--main-color);
}

.quote-canvas .form-submit {
    margin-top: 16px;
}

.quote-canvas .form-result {
    margin-top: 16px;
}

.quote-canvas-contact {
    margin-top: 34px;
    padding-top: 26px;
    border-top: 1px solid var(--border-color);
}

.quote-canvas-contact-label {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted-color);
    margin-bottom: 14px;
}

.quote-canvas-contact-data {
    font-weight: 600;
    margin-bottom: 6px;
}

.quote-canvas-contact-data a:hover {
    color: var(--main-color);
}
