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

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

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

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

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

html {
    scroll-behavior: smooth;
}

body {
    font-size: 15px;
    color: black;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    width: 100%;
    font-family: var(--font-family);
    overflow-x: hidden;
}

#outer-wrap {
    overflow: hidden;
}

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

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

#primary {
    padding-bottom: 80px;
}

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

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

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

*:focus {
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: block;
    width: 100%;
    image-rendering: -webkit-optimize-contrast;
}

p {
    margin: 0 0 15px;
}

:root {
    --main-color: #16a934;
    --main-color-dark: #0f8a02;
    --second-color: #1c2b46;
    --accent-color: #16243d;
    --accent-color-hover: #233456;
    --cta-color: #f7c51a;
    --cta-color-hover: #e8b400;
    --cta-text: #16243d;
    --light-color: #eeeeee;
    --border-color: #cccccc;
    --border-radius: 8px;
    --form-height: 40px;
    --font-family: 'SF', Arial, Helvetica, sans-serif;
}

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

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


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

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

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

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

.right-sidebar #sidebar {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

@media (max-width: 960px) {

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

    #primary {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    #sidebar {
        margin-top: 40px;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
}


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

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

#site-logo {
    width: 220px;
}

#header-aside {
    width: calc(100% - 250px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

#site-navigation {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    color: white;
}

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

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

#site-navigation-wrap .master-main-menu>.menu-item:first-child {
    margin-left: 0;
}

#site-navigation-wrap .master-main-menu>.menu-item>a {
    color: #777;
    white-space: nowrap;
    display: block;
    position: relative;
    font-weight: 500;
    font-size: 14px;
}

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

#site-navigation-wrap .master-main-menu>.current-menu-item>a {
    font-weight: 600;
}

#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: #1c66c8;
}

#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;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

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

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

.header-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-contact-items {
    width: calc(100% - 58px);
}

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

.header-search-icon {
    display: none;
}

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

    #header-aside {
        padding-right: 40px;
    }
}

@media (max-width: 1100px) {

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

    .header-search-icon {
        display: block;
    }

    #header-aside {
        padding-right: 40px;
    }
}

@media (max-width: 960px) {
    #site-logo {
        width: 160px;
    }

    #header-aside {
        justify-content: flex-end;
        width: calc(100% - 190px);
    }
}



/* Mobile menu */
#mobile-sidebar-menu {
    position: absolute;
    right: 0;
    font-size: 20px;
    top: 50%;
    transform: translateY(-50%);
}

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

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

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

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

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

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

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

.mobile-menu-item-label {
    position: relative;
    padding: 10px 50px 10px 20px !important;
}

.mobile-menu-item-label:after {
    content: '\e930';
    font-family: Feather;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--second-color);
    color: white;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
}

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

.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding: 15px;
}

.mobile-menu-close .fe {
    font-size: 22px;
    background: #eee;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

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

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


/* Menu search */
.master-menu-search-icon {
    cursor: pointer;
    font-size: 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: .5s all;
}

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

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

.visible-search #master-search {
    opacity: 1;
    transition-delay: .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: .8s all;
}

.visible-search .master-search-line {
    width: 100%;
    transition-delay: .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: .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 {
    margin-bottom: 20px;
}

.page-header-title {
    font-weight: 700;
    font-size: 22px;
    line-height: 1.3;
    color: #333;
}

#breadcrumbs-header {
    margin-top: 15px;
    margin-bottom: 25px;
    color: #000000;
}

.breadcrumbs {
    display: flex;
    white-space: nowrap;
}

.breadcrumbs>span:last-child {
    padding-right: 5vw;
}

#breadcrumbs-header a,
.breadcrumbs__separator {
    color: #8A8A8A;
}

#breadcrumbs-header a:hover {
    color: #000;
}

.breadcrumbs__separator {
    margin: 0 12px;
    opacity: .3;
}

.single-product #breadcrumbs-header {
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    line-height: 1.3;
}



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

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

.master-post-inner {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 15px;
    width: 100%;
    position: relative;
}

.master-post-thumbnail img {
    background: #eee;
    border-radius: 15px;
}

.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: .3s all;
}

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

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

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

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

.master-post-date {
    font-weight: 600;
}

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

.master-post-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 20px;
    width: calc(100% - 60px);
    font-size: 14px;
}

.master-post-button a {
    display: table;
    color: white;
    background: var(--main-color);
    border-radius: 30px;
    padding: 5px 20px;
}

.master-post-button a:hover {
    background: #333;
}

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

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


/* Footer */
#footer {
    background-color: #f5f5f5;
    color: var(--second-color);
}

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

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

.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: 250px;
    max-width: 100%;
}

.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: 800;
    margin-bottom: 15px;
    font-size: 17px;
    color: var(--second-color);
    line-height: 1.4;
}

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

.footer-phone {
    font-weight: 800;
    color: var(--second-color);
    font-size: 18px;
}

#footer .footer-phone a {
    color: var(--second-color);
}

.footer-phones {
    margin-bottom: 10px;
}

.footer-contact {
    margin-bottom: 5px;
}

.footer-social {
    border-top: 1px solid #ddd;
    margin-top: 25px;
    padding-top: 20px;
    font-size: 22px;
}

.footer-social .social-networks a {
    transition: opacity .25s, transform .25s;
}

.footer-social .social-networks a:hover {
    opacity: .75;
    transform: translateY(-2px);
}

#footer .footer-social .facebook-social a {
    color: #1877f2;
}

#footer .footer-social .instagram-social a {
    color: #e4405f;
}

#footer .footer-social .youtube-social a {
    color: #ff0000;
}

#footer .footer-social .whatsapp-social a {
    color: #25d366;
}

#footer .footer-social .twitter-social a {
    color: #000000;
}

#footer .footer-social .telegram-social a {
    color: #26a5e4;
}

#footer .footer-social .linkedin-social a {
    color: #0a66c2;
}

#footer .footer-social .tiktok-social a {
    color: #010101;
}

#footer .footer-social .pinterest-social a {
    color: #bd081c;
}

#footer-contact input,
#footer-contact textarea {
    background: #fff;
    border: 1px solid #ddd;
    color: var(--second-color);
}

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

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



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

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

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



/* Footer bottom */
#footer-bottom {
    padding: 25px 0;
}

#footer-bottom {
    padding: 25px 0;
    text-align: center;
    color: #777;
    border-top: 1px solid #e5e5e5;
}

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

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

.mfb-blocks {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 1100px) {
    #footer-bottom {
        padding-top: 0;
    }
}



/* Scroll to top */
#site-scroll-top {
    position: fixed;
    right: 40px;
    bottom: 40px;
    border-radius: 50px;
    z-index: 998;
    cursor: pointer;
    display: none;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: var(--main-color);
    color: white;
    font-size: 24px;
    text-align: center;
    -webkit-transition: .15s all;
    -o-transition: .15s all;
    transition: .15s all;
}

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

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

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


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

.colorfull-social .social-networks a {
    color: white !important;
    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;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
}

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

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

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

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

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

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

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

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

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

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



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

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

.master-social-share-area.share-with-label ul {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    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 3px;
    text-align: center;
    -webkit-transition: .15s all;
    -o-transition: .15s all;
    transition: .15s all;
}

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

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

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

.master-social-share-area.share-with-label a {
    padding: 5px 15px;
}

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

.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: 960px) {
    .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;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    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;
    -webkit-transition: .15s all;
    -o-transition: .15s all;
    transition: .15s all;
}

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

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

.next-post {
    text-align: right;
    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;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -ms-flex-wrap: wrap;
    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: 960px) {
    .ms-gallery-type-true {
        column-count: 3 !important;
    }

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



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

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



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

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

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

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

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


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

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

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

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

.sidebar-post-thumbnail img {
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
}

.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: 45px;
    height: 45px;
    line-height: 45px;
    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 {
    line-height: 1.7;
    font-size: 16px;
}

.single-content img {
    width: auto;
}

.single-content .ms-gallery img {
    width: 100% !important;
    max-height: inherit !important;
    height: 100% !important;
    aspect-ratio: 5 / 3;
    object-fit: cover;
}

.aligncenter {
    margin: 0 auto;
}

.single-content h2,
.single-content h3,
.single-content h4,
.single-content h5,
.single-content h6 {
    text-align: left;
    margin-bottom: 10px;
    font-family: 'Big Shoulders Display';
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 800;
}

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




/* Youtube */
.youtube-videos {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.youtube-video {
    padding: 0 15px 30px;
    width: 25%;
}

.youtube-image-area {
    position: relative;
}

.youtube-image {
    position: absolute;
    width: 100%;
    top: 0;
    padding-top: 56.26%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--light-color);
}

.youtube-icon-area {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.youtube-icon-inner {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    cursor: pointer;
}

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

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

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

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

.play-video:before {
    content: '\f04b';
    font-family: FontAwesome;
    color: white;
    font-size: 18px;
}

.youtube-iframe {
    width: 100%;
    position: relative;
    padding-top: 56.25%;
    z-index: 2;
}

.youtube-video iframe {
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.youtube-video h3 {
    margin: 0;
    font-size: 15px;
}

.youtube-heading a {
    display: block;
    margin-top: 10px;
    line-height: 1.35;
    color: black;
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
}

.youtube-video img,
.youtube-video span {
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    margin: auto
}

.youtube-video span {
    height: 1.5em;
    text-align: center;
    font: 48px/1.5 sans-serif;
    color: white;
    text-shadow: 0 0 0.5em black;
}

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

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

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

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

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

@media (max-width: 960px) {

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/* 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;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-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 */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: 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: 15px;
    background: white;
    border-radius: var(--border-radius);
}

textarea {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: var(--font-family);
    border: 1px solid var(--border-color);
    width: 100%;
    padding: 10px 15px;
    color: black;
    font-size: 15px;
    resize: vertical;
    min-height: 90px;
    border-radius: var(--border-radius);
}

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

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] {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid var(--border-color);
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    background: white;
    top: 7px;
    left: 0;
    margin: 0;
    cursor: pointer;
}

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

input[type=checkbox]:checked:before {
    content: '\f00c';
    font-family: FontAwesome;
    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;
}

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: transparent;
    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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    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: 6px;
    font-weight: 600;
}

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

#alert {
    display: none;
    position: fixed;
    top: 20px;
    left: 50%;
    z-index: 99999;
    max-width: 90%;
    width: max-content;
    transform: translateX(-50%) translateY(-30px);
    transition: transform .25s ease;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .15);
    border-radius: var(--border-radius);
}

#alert.active {
    transform: translateX(-50%) translateY(0);
}

#alert .alert {
    margin: 0;
}

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

.acf-map {
    height: 350px;
    background: #eee;
    position: relative;
}

.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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    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% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

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

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

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


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

.comment-ratings input {
    display: none;
}

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

.comment-rating label:before {
    content: '\f005';
    font-family: 'Font Awesome 6 Free';
    color: var(--light-color);
    font-size: 20px;
}

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


/* Gallery */
.master-gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    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: .3s all;
}

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

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

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

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

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



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

th,
td {
    border: 1px solid #ddd;
    padding: 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;
    -webkit-transition: opacity 0s ease;
    opacity: 1;
    -webkit-animation: loading 450ms infinite linear;
    animation: loading 450ms infinite linear;
    transition: opacity .25s ease;
    -webkit-transition: opacity .25s ease;
}

.loading:before {
    visibility: hidden;
}

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

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

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

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

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

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


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



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

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

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

.swiper-container-vertical>.swiper-wrapper {
    flex-direction: column;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
    transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow>.swiper-wrapper {
    flex-wrap: wrap;
}

.swiper-container-multirow-column>.swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column;
}

.swiper-container-free-mode>.swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}

.swiper-slide-invisible-blank {
    visibility: hidden;
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
    height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height;
}

/* 3D Effects */
.swiper-container-3d {
    perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
    transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-css-mode>.swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar {
    display: none;
}

.swiper-container-css-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper {
    scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper {
    scroll-snap-type: y mandatory;
}

/* Preloader */
:root {
    /*
    --swiper-preloader-color: var(--swiper-theme-color);
    */
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    animation: swiper-preloader-spin 1s infinite linear;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent;
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
    100% {
        transform: rotate(360deg);
    }
}

/* a11y */
.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-cube {
    overflow: visible;
}

.swiper-container-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next+.swiper-slide {
    pointer-events: auto;
    visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0;
}

.swiper-container-flip {
    overflow: visible;
}

.swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}


/* 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: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #fff;
    margin-right: 5px;
    color: black;
    border-radius: 50%;
}

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


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


/* 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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    margin-top: 7px;
    font-size: 18px;
}

.mobile-sticky-phone {
    -webkit-box-shadow: 0 2px 10px rgb(101 101 255 / 46%);
    box-shadow: 0 2px 10px rgb(101 101 255 / 46%);
    background: #7d8cff;
}

.mobile-sticky-whatsapp {
    -webkit-box-shadow: 0 2px 10px rgb(149 162 143 / 46%);
    box-shadow: 0 2px 10px rgb(149 162 143 / 46%);
    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 modal */
#callout-modal-form {
    width: 500px;
    display: none;
}


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

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

.master-icon {
    width: 50px;
}

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

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


/* Master buttons */
.button {
    height: var(--form-height);
    cursor: pointer;
    padding: 0 30px;
    font-size: 15px;
    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;
    font-weight: 800;
    transition: .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: .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: 1px solid 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: 1px solid var(--main-color);
}

.colored-button {
    background: #eb2427;
    color: white;
    border: 1px solid #eb2427;
    height: 50px;
}

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

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



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

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

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

.fixed-site-header #site-logo img {
    height: 50px;
}

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

    to {
        transform: translateY(0);
    }
}


/* Topbar */
#topbar-wrap {
    position: relative;
    z-index: 20;
    border-bottom: 1px solid #eef0f2;
}

#topbar-wrap .container {
    padding: 10px 0;
}

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

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

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



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

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

.mhb-first {
    width: 66.6%;
}

.mhb-second {
    width: 33.3%;
}

.master-heading-area {
    margin-bottom: 30px;
}

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

.master-heading {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    position: relative;
    display: flex;
    align-items: center;
}

/* Decorative lines: shared look (gradient, fill to the edge) */
.master-heading:after,
.master-center-heading .master-heading:before,
.master-liner-heading .master-heading:before,
.master-liner-heading .master-heading:after {
    content: '';
    flex: 1;
    height: 3px;
    border-radius: 3px;
}

/* Default heading: line on the right only, fades out toward the end */
.master-heading:after {
    margin-left: 20px;
    background: linear-gradient(to right, var(--main-color), transparent);
}

/* Center heading: lines on both sides, reaching both edges */
.master-center-heading .master-heading {
    justify-content: center;
}

.master-center-heading .master-heading:before {
    margin-right: 20px;
    background: linear-gradient(to left, var(--main-color), transparent);
}

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

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

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

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

.master-liner-heading .master-heading {
    justify-content: center;
}

.master-liner-heading .master-heading:before {
    margin-right: 20px;
    background: linear-gradient(to left, var(--main-color), transparent);
}

.master-liner-heading .master-heading:after {
    margin-left: 20px;
    background: linear-gradient(to right, var(--main-color), transparent);
}

@media (max-width: 767px) {
    .master-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 {
    background: white;
    color: black;
    padding: 3px 15px;
    border-radius: 5px;
    margin-right: 15px;
    box-shadow: 0 0 10px rgb(0 0 0 / 28%);
    visibility: hidden;
    transition: .3s all;
}

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

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



/* Contact toolbar */
.contact-toolbar {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100000;
}

.contact-toolbar-contents {
    background: white;
    min-width: 200px;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 10px;
    position: relative;
    box-shadow: 0 0 10px rgb(101 101 101 / 21%);
}

.contact-toolbar-contents:before {
    content: '';
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
    position: absolute;
    top: 100%;
    right: 25px;
}

.cs-content a {
    border-radius: 5px;
    padding: 3px 10px;
    display: block;
    color: black;
}

.cs-content a:hover {
    background: #f5f5f5;
}

.cs-content i {
    margin-right: 10px;
}

.contact-toolbar-icons {
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 50%;
    border: 10px solid var(--main-color);
    font-size: 20px;
    background: white;
    cursor: pointer;
    margin-left: auto;
}

.ct-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}



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

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

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

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

.mobile-ls {
    padding: 20px;
}


/* Skills bar */
.cool-skills-bar .cool-bar {
    height: 5px;
    background: #eee;
    border-radius: 5px;
    margin-bottom: 15px;
    position: relative;
    transition: all 2s linear;
}

.cool-skills-bar .cool-bar-inner {
    width: 0;
    height: 5px;
    line-height: 5px;
    background: #db3a34;
    border-radius: 5px;
    position: relative;
    overflow: visible !important;
}

.cool-skills-bar .cool-bar-percent {
    position: absolute;
    right: -25px;
    top: -22px;
    font-size: 12px;
    color: white;
    background-color: black;
    width: 50px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-weight: 600;
}

.cool-skills-bar .cool-bar-percent:before {
    content: '';
    position: absolute;
    display: block;
    left: 50%;
    transform: translateX(-50%);
    bottom: -5px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #000;
}



/* Custom scroll */
.custom-scroll::-webkit-scrollbar {
    width: 4px;
}

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

.custom-scroll::-webkit-scrollbar-thumb {
    background: #ccc;
}

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


/* Canvas sidebar */
.canvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: .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: .3s all;
    -o-transition: .3s all;
    transition: .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: .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: 10px;
    height: 3px;
    display: block;
}

.liner-swiper-pagination .swiper-pagination-bullet-active {
    width: 20px;
}

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

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



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

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

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

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

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

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



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

.language-dropdown-switcher .ls-sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    padding: 7px 5px;
    width: 100%;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 3px 5px rgb(0 0 0 / 15%);
}

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

.language-dropdown-switcher .language-label {
    display: none;
}

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

.ls-current-lang {
    display: flex;
    align-items: center;
}

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

.language-item a {
    display: flex;
    justify-content: center;
    color: white;
    font-size: 15px;
}

.ls-current-lang:after {
    content: "\e92e";
    font-family: Feather;
    margin-left: 3px;
    color: black;
    font-size: 14px;
}

@media (max-width: 1100px) {
    .header-ls {
        padding-right: 40px;
    }

    .ls-current-lang {
        height: 40px;
        padding: 0 5px 0 10px;
    }
}



/* Header aside */
.header-aside-blocks {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.ha-block,
.hab-block {
    display: flex;
    align-items: center;
    gap: 0px;
}

.ha-block-clock,
.ha-block-contact {
    font-size: 14px;
}

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

.header-aside-search-form input {
    border: 1px solid #3b4047;
    border-radius: var(--border-radius);
    width: 140px;
    color: black;
    background: transparent;
    max-width: 100%;
}

.header-aside-search-form input::placeholder {
    font-size: 15px;
    color: #AAA8A8;
    opacity: 1;
}

.header-aside-search-form button {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: transparent;
    font-size: 20px;
    width: 50px;
}

.header-aside-whatsapp a {
    color: var(--main-color);
    font-size: 34px;
}

.header-aside-catalog .button:after {
    content: "\e955";
    font-family: Feather;
    margin-left: 15px;
    margin-right: -10px;
    font-weight: 600;
}

.header-icon-clock i {
    font-size: 34px;
    color: var(--main-color);
}

.header-clock-text {
    white-space: normal;
    font-weight: 400;
    line-height: 1.4;
}

.header-contact-item {
    white-space: nowrap;
}

.header-contact-item a {
    white-space: nowrap;
    font-weight: 600;
    font-size: 15px;
}

.header-contact-item i {
    color: var(--main-color);
    margin-left: 7px;
}

.header-aside-search {
    position: relative;
}

.header-search-results {
    position: absolute;
    top: 100%;
    background: white;
    width: 300px;
    color: black;
    overflow: hidden;
    box-shadow: 0 0 15px rgb(0 0 0 / 21%);
}

.search-ajax-button {
    padding: 10px;
}

.search-image-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.search-image {
    width: 60px;
}

.search-image img {
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid #cccccc;
    border-radius: 5px;
}

.search-title {
    width: calc(100% - 75px);
    font-weight: 600;
    line-height: 1.3;
}

.search-block a {
    display: block;
    padding: 10px 15px;
    border-bottom: 1px solid #ccc;
    color: black;
}

.search-block a:hover {
    background: #eeeeee;
}

.search-no-result {
    padding: 15px;
    text-align: center;
    line-height: 1.3;
}

.header-search-icon {
    font-size: 20px;
}

.hab-block-cart {
    display: flex;
    align-items: center;
}

.header-cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    padding: 6px;
}

.header-cart-badge {
    position: absolute;
    top: -4px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    background: var(--main-color);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    box-sizing: border-box;
}

.header-cart-badge.is-empty {
    display: none;
}

@media (max-width: 1365px) {

    .ha-block-clock,
    .ha-block-contact {
        display: none;
    }
}

@media (max-width: 1100px) {
    .header-aside-search-form input {
        width: 200px;
    }
}

@media (max-width: 1100px) {
    .header-aside-search {
        display: none;
        position: absolute;
        left: -5vw;
        background: black;
        top: 100%;
        width: 100vw;
        padding: 15px;
    }

    .header-aside-search-form input {
        width: 100%;
    }

    .ha-block,
    .hab-block {
        gap: 10px;
    }

    .header-search-results {
        width: 90vw;
    }
}

@media (max-width: 960px) {

    .hab-block-catalog {
        display: none;
    }
}



/* Contact */
.main-page-668 #page-header {
    display: none;
}

.contact-area {
    padding-top: 40px;
}

.contact-main-heading {
    font-weight: 800;
    font-size: 34px;
    text-transform: uppercase;
    padding: 60px 0;
}

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

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

.contact-items {
    margin-bottom: 15px;
}

.contact-item {
    font-weight: 500;
    font-size: 16px;
}

.contact-item:not(:last-child) {
    margin-bottom: 3px;
}

.contact-item span {
    color: #777;
}

.contact-email a {
    color: #8DAC00;
}

#message {
    height: 200px;
}

@media (max-width: 767px) {
    .contact-main-heading {
        padding: 40px 0;
        text-align: center;
    }

    .contact-block {
        width: 100%;
    }

    .contact-block-1 {
        order: 2;
    }

    .contact-block-2 {
        order: 1;
    }

    .contact-item {
        font-size: 15px;
    }

    #message {
        height: 90px;
    }
}



/* Services */
.services-area {
    padding-top: 15px;
}

.services {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -25px -30px;
}

.service {
    width: 33.3%;
    padding: 0 25px 30px;
    display: flex;
}

.service-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-icon-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.service-icon {
    width: 40px;
}

.service-icon-details {
    width: calc(100% - 65px);
}

.service-icon-title {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.service-icon-desc {
    color: #969696;
    line-height: 1.4;
}

.service-image img {
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 1000px) {
    .services {
        margin: 0 -15px -30px;
    }

    .service {
        padding: 0 15px 30px;
    }

    .service-icon-title {
        font-size: 17px;
    }
}

@media (max-width: 950px) {
    .service {
        width: 50%;
    }
}

@media (max-width: 600px) {
    .service {
        width: 100%;
    }

    .service-block {
        flex-direction: row;
    }

    .service-icon-box {
        width: calc(100% - 150px);
    }

    .service-image {
        width: 120px;
    }
}

@media (max-width: 420px) {
    .service-block {
        flex-direction: column;
    }

    .service-icon-box {
        width: 100%;
    }

    .service-image {
        width: 100%;
    }
}



/* Partners */
.partners {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.partner {
    width: calc(25% - 18px);
    background: #f5f5f5;
    border-radius: var(--border-radius);
    padding: 16px;
}

.partner-block {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.partner-logo {
    background: #fff;
    border-radius: var(--border-radius);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    margin-bottom: 20px;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.partner-info {
    padding: 0 6px;
    margin-bottom: 20px;
}

.partner-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.partner-short {
    color: #6b6b6b;
    font-size: 15px;
}

.partner-more {
    margin-top: auto;
    display: block;
    text-align: center;
    background: #e7e7e7;
    color: #1a1a1a;
    border-radius: var(--border-radius);
    padding: 14px 16px;
    text-decoration: none;
    font-size: 15px;
    transition: background .2s ease;
}

.partner-more:hover {
    background: #dcdcdc;
}

/* Partner popup */
.partner-modal {
    max-width: 500px;
    width: 100%;
    padding: 40px;
    border-radius: var(--border-radius);
    background: #fff;
}

.partner-modal-head {
    text-align: center;
    margin-bottom: 24px;
}

.partner-modal-logo {
    background: #f5f5f5;
    border-radius: var(--border-radius);
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    margin: 0 auto 20px;
}

.partner-modal-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.partner-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.partner-modal-short {
    color: #6b6b6b;
    font-size: 15px;
}

.partner-modal-desc {
    color: #454545;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .partner {
        width: calc(50% - 12px);
    }
}

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



/* Certificates */
.certificates-area {
    padding: 40px 0;
}

.certificates {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.certificate-block {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 0 12px rgb(0 0 0 / 4%);
    transition: box-shadow .2s ease, transform .2s ease;
    height: 100%;
}

.certificate-block:hover {
    box-shadow: 0 6px 18px rgb(0 0 0 / 10%);
    transform: translateY(-3px);
}

.certificate-image {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 5px;
    background: #f6f6f6;
}

.certificate-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.certificate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.certificate-block:hover .certificate-image img {
    transform: scale(1.04);
}

.certificate-title {
    margin-top: 12px;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    line-height: 1.3;
    color: #222;
}

@media (max-width: 1100px) {
    .certificates {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .certificates {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .certificates {
        grid-template-columns: 1fr;
    }
}



/* About — zig-zag layout */
.about-area {
    padding: 70px 0;
}

.about-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 90px;
}

.about-row:last-child {
    margin-bottom: 0;
}

.about-row-reverse {
    flex-direction: row-reverse;
}

.about-row-image {
    width: 35%;
}

.about-row-text {
    width: 65%;
}

.about-row-image {
    position: relative;
}

.about-row-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .12);
    position: relative;
    z-index: 1;
}

.about-row-image:before {
    content: '';
    position: absolute;
    top: 22px;
    left: 22px;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    border: 2px solid var(--main-color, #8DAC00);
    z-index: 0;
}

.about-row-reverse .about-row-image:before {
    left: -22px;
}

.about-row-index {
    position: absolute;
    top: -24px;
    left: -14px;
    z-index: 2;
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    color: var(--main-color, #8DAC00);
    opacity: .18;
    letter-spacing: -2px;
}

.about-row-reverse .about-row-index {
    left: auto;
    right: -14px;
}

.about-row-text {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
}

.about-row-text>*:first-child {
    margin-top: 0;
}

.about-row-text>*:last-child {
    margin-bottom: 0;
}

.about-row-text h1,
.about-row-text h2,
.about-row-text h3,
.about-row-text h4 {
    line-height: 1.3;
    margin-bottom: 18px;
    color: #1f1f1f;
}

.about-row-text h2,
.about-row-text h3 {
    position: relative;
    padding-bottom: 14px;
}

.about-row-text h2:after,
.about-row-text h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 56px;
    height: 3px;
    border-radius: 3px;
    background: var(--main-color, #8DAC00);
}

.about-row-text p {
    margin-bottom: 15px;
}

@media (max-width: 850px) {

    .about-area {
        padding: 45px 0;
    }

    .about-row,
    .about-row-reverse {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 55px;
        text-align: center;
    }

    .about-row-image,
    .about-row-text {
        width: 100%;
    }

    .about-row-image:before {
        display: none;
    }

    .about-row-index {
        left: 10px;
    }

    .about-row-reverse .about-row-index {
        right: 10px;
    }

    .about-row-text h2:after,
    .about-row-text h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
}

.about-main-text {
    background: #f8fddf;
    padding: 30px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.about-main-text:before,
.about-main-text:after {
    content: '';
    position: absolute;
    top: 30px;
    width: 10px;
    height: 20px;
    background: orange;
}

.about-main-text:before {
    left: 0;
}

.about-main-text:after {
    right: 0;
}

.features-area {
    margin-bottom: 80px;
}

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

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

.feature-icon-box {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e7eaef;
    box-shadow: 0 10px 30px -18px rgb(15 23 42 / 25%);
    padding: 22px;
    border-radius: 16px;
    width: 100%;
    text-align: center;
    transition: .25s all;
}

.feature-icon-box:hover {
    border-color: var(--cta-color);
    box-shadow: 0 18px 40px -18px rgb(15 23 42 / 30%);
    transform: translateY(-4px);
}

.feature-icon {
    margin: 0 auto 15px;
    border-radius: 10px;
    overflow: hidden;
}

.feature-icon img {
    aspect-ratio: 5 / 3;
    object-fit: cover;
}

.feature-icon-details {
    width: 100%;
    line-height: 1.5;
}

.feature-heading {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 10px;
}

.feature-main-heading {
    margin-bottom: 10px;
    font-family: 'Big Shoulders Display';
    text-transform: uppercase;
    font-size: 28px;
    font-weight: 800;
}

.feature-subheading {
    opacity: .5;
}

@media (max-width: 1100px) {
    .feature-icon {
        margin: 0 auto 15px;
    }

    .feature-icon-details {
        width: 100%;
        text-align: center;
    }
}

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

@media (max-width: 767px) {
    .about-main-text {
        padding: 30px 15px;
    }
}

@media (max-width: 600px) {
    .feature-heading {
        font-size: 16px;
    }
}

@media (max-width: 330px) {
    .feature {
        width: 100%;
    }
}



/* Home */
.home #primary {
    padding: 0;
}



/* Features */
.home-features-area {
    padding: 40px 0;
}


/* Callout */
.callout-area {
    background: #1d1d1d;
    padding: 80px 0;
    text-align: center;
}

.callout-description {
    color: #A3A3A3;
    width: 500px;
    margin: -10px auto 30px;
    max-width: 100%;
}

#callout {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
}

.callout-form-element {
    position: relative;
    width: 500px;
    max-width: 100%;
}

.callout-form-element i {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.callout-form-element input {
    border-radius: var(--border-radius);
    padding: 0 45px;
    height: 50px;
}

.callout-form-element button {
    position: absolute;
    top: 0;
    right: 0;
    height: 50px;
}



/* Home slider */
.home-slider-area {
    position: relative;
    z-index: 10;
    background: #f4f4f4;
}

.hsb-1 {
    width: 300px;
    z-index: 100;
    position: relative;
}

.hsb-2 {
    width: calc(100% - 330px);
    position: relative;
}

.home-slider {
    background-color: #eee;
    position: relative;
}

.home-slide {
    position: relative;
}

.home-slide img {
    aspect-ratio: 5 / 2.32;
    object-fit: cover;
    border-radius: var(--border-radius);
    display: block;
    width: 100%;
}

.home-slide-content {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    max-width: 55%;
    padding: 50px;
    color: var(--accent-color);
}

.home-slide:has(.home-slide-content)::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: var(--border-radius);
    background: linear-gradient(90deg, rgba(255, 255, 255, .85) 0%, rgba(255, 255, 255, .55) 35%, rgba(255, 255, 255, 0) 65%);
    pointer-events: none;
}

.home-slide-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.5px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.home-slide-desc {
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 26px;
    color: #3a4a63;
    max-width: 340px;
}

.home-slide-button.button {
    background: var(--cta-color);
    color: var(--cta-text);
    border: 1px solid var(--cta-color);
    text-transform: uppercase;
    letter-spacing: .3px;
    gap: 10px;
}

.home-slide-button.button i {
    margin-right: -15px;
}

.home-slide-button.button:hover {
    background: var(--cta-color-hover);
    border-color: var(--cta-color-hover);
    color: var(--cta-text);
}

.slider-nav {
    position: absolute;
    top: 50%;
    z-index: 10;
    color: white;
    font-size: 28px;
    transform: translateY(-50%);
    text-shadow: 0 0 10px BLACK;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.slider-nav-next {
    right: 0;
}

.slider-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 1;
}

.swiper-pagination-bullet {
    width: 3px;
    height: 3px;
    background: white !important;
    display: inline-block;
    margin-right: 6px;
    opacity: .3;
}

.swiper-pagination-bullet-active {
    width: 8px;
    opacity: 1;
}

.home-slider-blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 30px;
    padding-bottom: 30px;
}

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

.slider-block {
    padding: 0 10px 20px;
    position: relative;
}

.slider-1 {
    width: 70%;
}

.slider-2 {
    width: 30%;
}

.slider-inner-block:first-child {
    margin-bottom: 20px;
}

.slider-inner-block img {
    aspect-ratio: 5 / 3.9;
    object-fit: cover;
    border-radius: var(--border-radius);
}

@media (max-width: 1100px) {
    .hsb-1 {
        display: none;
    }

    .hsb-2 {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .home-slider-blocks {
        padding: 0;
    }

    .home-slider-area {
        padding: 0 0 30px;
    }

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

    .home-slider {
        box-shadow: none;
        border-radius: var(--border-radius);
    }

    .slider-1,
    .slider-2 {
        width: 100%;
    }

    .home-slide-content {
        max-width: 70%;
        padding: 25px;
    }

    .home-slide-title {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .home-slide-desc {
        font-size: 14px;
        margin-bottom: 16px;
    }

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

    .slider-inner-block {
        width: 50%;
        padding: 0 10px 20px;
        margin: 0 !important;
    }
}

@media (max-width: 550px) {
    .slider-pagination {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }

    .swiper-pagination-bullet {
        margin: 0 5px;
        background: white;
        opacity: .3;
    }

    .swiper-pagination-bullet-active {
        background: var(--main-color);
        opacity: 1;
    }
}

@media (max-width: 400px) {
    .slider-inner-blocks {
        padding: 0 15px;
    }

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



/* Home blocks */
.home-blocks-area {
    margin-bottom: 60px;
}

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

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

.home-block a {
    display: block;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
    aspect-ratio: 3/2;
}

.home-block a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.home-block:first-child a {
    color: white;
}

.home-block:first-child a:before {
    background: linear-gradient(90deg, rgb(89 60 60) 0%, rgba(255, 255, 255, 0) 100%);
}

.home-block:last-child a:before {
    background: linear-gradient(90deg, rgb(195 225 142) 0%, rgba(255, 255, 255, 0) 100%);
}

.home-block-title {
    font-weight: 600;
    font-size: 28px;
    text-transform: uppercase;
    padding-top: 20px;
    line-height: 1.3;
}

.home-block-content {
    position: absolute;
    top: 0;
    left: 0;
    padding: 30px 50px 50px;
    width: 100%;
    height: 100%;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.home-block:first-child .home-block-content {
    justify-content: flex-start;
}

.home-block-image img {
    aspect-ratio: 3 / 3.5;
    object-fit: cover;
    transition: .6s all;
}

.home-block a:hover img {
    transform: scale(1.1);
}

.home-block-button {
    background: transparent;
    display: table;
    padding: 7px 25px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    color: white;
    border: 2px solid white;
    margin: 30px auto 0;
    border-radius: var(--border-radius);
    transition: .3s all;
}

.home-block-button:hover {
    background: white;
    color: black;
}

.home-block-button i {
    color: #E3A604;
    margin-left: 15px;
}

.home-block video {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

@media (max-width: 1220px) {
    .home-block-title {
        padding-top: 0;
    }
}

@media (max-width: 1150px) {
    .home-block-image img {
        height: 250px;
    }

    .home-block-content {
        padding: 30px;
    }

    .home-block-title {
        font-size: 22px;
    }
}

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



/* Video */
.videos-area {
    padding-bottom: 80px;
}

.video-background {
    width: 750px;
    margin: 0 auto;
    max-width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 15px;
    padding: 30px;
}

.video-background:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: .2;
    border-radius: 15px;
}

.video-play-icon {
    width: 80px;
    position: relative;
    margin: 0 auto;
    z-index: 1;
    cursor: pointer;
    transition: .3s all;
}

.video-play-icon:hover {
    transform: scale(1.1);
}

.video-play-icon:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: black;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    z-index: -1;
}

.video-title {
    font-weight: 800;
    font-size: 18px;
    color: white;
    position: relative;
}

#videoContent {
    background: black;
}

#videoContent p {
    margin: 0;
}

#videoContent svg path {
    fill: #ffffff;
}

#videoContent iframe {
    width: 700px;
    aspect-ratio: 16 / 9;
    max-width: 100%;
}

.about-video-lightbox-icon {
    width: 80px;
    background: var(--main-color);
    padding: 30px;
    border-radius: 50%;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 32%);
    position: relative;
    transition: .3s all;
    display: table;
    margin: 0 auto 30px;
    cursor: pointer;
}

.about-video-lightbox-icon:hover {
    transform: scale(1.1);
    background: #118205;
}

.about-video-lightbox-icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 0 #ca113b;
    z-index: 1;
    animation: ripple-pulse 2s infinite;
}

@keyframes ripple-pulse {
    0% {
        box-shadow: 0 0 0 0 #14b50370;
    }

    50% {
        box-shadow: 0 0 0 25px #14b50300;
    }

    100% {
        box-shadow: 0 0 0 0 #14b50370;
    }
}



/* Brands */
.brands-area {
    margin-bottom: 60px;
}

.brand-link {
    display: block;
    transition: .3s all;
}

.brand-link:hover {
    transform: scale(1.1);
}

.brand-slide img {
    height: 100px;
    width: auto;
    object-fit: contain;
}



/* Products */
.products {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}

.product {
    width: 25%;
    padding: 0 8px 16px;
    display: flex;
}

.product-content-block {
    background: #f5f5f5;
    border-radius: var(--border-radius);
    padding: 15px;
    position: relative;
    width: 100%;
}

.products-slider .swiper-wrapper {
    align-items: stretch;
}

.products-slider .swiper-slide {
    height: auto;
}

.swiper-slide .product {
    width: 100% !important;
    padding: 0;
    height: 100%;
}

.swiper-slide .product-content-block {
    display: flex;
    flex-direction: column;
}

.all-products-area .product {
    width: 25%;
}

.product-thumb-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-thumbnail {
    position: relative;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    padding: 12px;
    transition: .3s all;
    border: 1px solid #f0f0f0;
}

.product-thumb-link:hover .product-thumbnail {
    border-color: #d8d8d8;
}

.product-image-2 {
    opacity: 0;
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 1;
    transition: .15s all;
}

.product-thumbnail:hover .product-image-2 {
    opacity: 1;
}

.product-image img {
    aspect-ratio: 1;
    object-fit: contain;
    background: white;
    width: 100%;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
}

.product-badge-new {
    background: #e53935;
    color: white;
    font-weight: 700;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 12px;
    text-transform: uppercase;
}

.product-badge-collection {
    background: var(--main-color);
    color: white;
    font-size: 8px;
    padding: 2px 6px;
    border-radius: 8px;
    text-transform: uppercase;
    margin-top: 4px;
    display: inline-block;
}

.product-compare-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: white;
    border: 1px solid #eee;
    color: #555;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
}

.product-compare-btn:hover {
    background: #f5f5f5;
}

.product-details {
    padding: 15px 5px 60px;
}

.product-stats {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: #777;
    margin-bottom: 8px;
}

.product-stat i {
    color: #e53935;
    margin-right: 3px;
}

.product-stat-comments i {
    color: #c084fc;
}

/* Rating display (rating.jpeg style) */
.rating-stats {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.rating-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #6b6b6b;
    text-decoration: none;
    line-height: 1;
}

.rating-comments i {
    color: #ff4d5e;
    font-size: 14px;
}

.rating-comments:hover {
    color: var(--main-color);
}

.rating-stars-wrap {
    gap: 8px;
}

.rating-stars {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.rating-stars i {
    color: #ff3b3b;
    font-size: 15px;
}

.rating-stars i.fa-regular {
    color: #dcdcdc;
}

.rating-value {
    color: #6b6b6b;
    font-size: 14px;
}

/* Single product rating sits a bit larger */
.product-ratings-single {
    margin-bottom: 14px;
}

.product-ratings-single .rating-stats {
    margin-bottom: 0;
}

.product-ratings-single .rating-stars i,
.product-ratings-single .rating-stat {
    font-size: 16px;
}

.product-title-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-details h3 {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: #222;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-actions {
    display: flex;
    gap: 8px;
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: calc(100% - 30px);
}

.product-add-to-cart {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #e1e1e1;
    border: none;
    border-radius: var(--border-radius);
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #000000;
    cursor: pointer;
    transition: all .15s;
}

.product-add-to-cart:hover {
    background: #eb2427;
    color: white;
}

.product-add-to-cart.product-in-cart {
    background: var(--main-color, #8DAC00);
    color: white;
}

.product-add-to-cart i {
    font-size: 14px;
}

.product-wishlist-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: #f5f5f7;
    border-radius: 12px;
    color: #444;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all .15s;
}

.product-wishlist-btn:hover,
.product-wishlist-btn.in-wishlist {
    background: #ffe6e6;
    color: #e53935;
}

.product-wishlist-btn.in-wishlist i {
    font-weight: 900;
}

.product-meta {
    margin-top: 8px;
}

.product-meta-colors {
    display: flex;
    flex-wrap: wrap;
}

.product-meta-color {
    width: 25px;
    height: 25px;
    border: 1px solid #9999997a;
    padding: 4px;
    margin-right: 5px;
    border-radius: 50%;
}

.product-meta-color span {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
}

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

@media (max-width: 330px) {
    .product {
        width: 100% !important;
    }
}

@media (min-width: 331px) and (max-width: 767px) {
    .products {
        margin: 0 -5px;
    }

    .product {
        width: 50% !important;
        padding: 0 5px 20px;
    }

    .product-details {
        padding-top: 10px;
    }

    .product-details a {
        margin-bottom: 3px;
    }
}

@media (min-width: 768px) and (max-width: 999px) {
    .product {
        width: 33.3% !important;
    }
}


/* Single product gallery */
.product-gallery-area {
    display: flex;
    justify-content: space-between;
}

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

.slider-css-mode .product-gallery {
    display: flex;
    overflow-x: auto;
    margin: 0 -2px;
}

.slider-css-mode .product-gallery-item {
    flex-basis: 300px;
    flex-shrink: 0;
    flex-grow: 0;
    padding: 0 2px;
    width: auto !important;
}

.slider-css-mode .product-gallery-item img {
    height: 300px;
    width: auto;
    object-fit: contain;
}

.gallery-thumbs {
    width: 100px;
    height: 550px;
    overflow: hidden;
}

.gallery-thumbs .swiper-slide {
    border: 1px solid #ddd;
    overflow: hidden;
    height: calc(550px / 4) !important;
}

.gallery-thumbs .swiper-slide img {
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.gallery-thumbs .swiper-slide-active,
.gallery-thumbs .swiper-slide:hover {
    border-color: #666;
}

.gallery-top-area {
    width: calc(100% - 110px);
    position: relative;
}

.gallery-top {
    height: 550px;
}

.gallery-top .swiper-slide img {
    object-fit: contain;
    object-position: center;
    height: 100%;
}

.swiper-gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 10;
    font-size: 28px;
    transform: translateY(-50%);
    cursor: pointer;
}

.swiper-gallery-next {
    right: 0;
}

.swiper-gallery-bullets {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.swiper-gallery-bullets .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: black;
    display: inline-block;
    border-radius: 50%;
    margin: 0 5px;
    opacity: .3;
    cursor: pointer;
    transition: .3s all;
}

.swiper-gallery-bullets .swiper-pagination-bullet:hover {
    opacity: 1;
}

.swiper-gallery-bullets .swiper-pagination-bullet-active {
    opacity: 1;
}

.product-gallery-area:not(.slider-css-mode) .product-gallery-item {
    height: 550px;
}

.zoomLens {
    width: 100px !important;
    height: 100px !important;
}

.single-product-image a,
.single-product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 767px) {
    .single-product-gallery {
        width: 100vw;
        margin-left: -50vw;
        margin-right: -50vw;
        left: 50%;
        right: 50%;
        position: relative;
    }

    .gallery-thumbs {
        display: none;
    }

    .gallery-top-area {
        width: 100%;
    }

    .swiper-gallery-nav,
    .swiper-gallery-bullets {
        display: none;
    }

    .product-gallery {
        transform: none !important;
    }
}

@media (min-width: 768px) {
    .slider-css-mode {
        display: none;
    }
}



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

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

.spb-1 {
    width: 50%;
}

.spb-2 {
    width: 50%;
}

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


/* Home categories */
.nav-menus {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.nav-categories-heading {
    background: var(--main-color);
    color: white;
    height: 54px;
    display: flex;
    align-items: center;
    font-weight: 600;
    padding: 0 30px;
    margin-right: 30px;
    cursor: pointer;
    width: 300px;
    font-size: 16px;
}

.nav-categories-heading i {
    margin-right: 15px;
    font-size: 16px;
}

.nav-categories .categories {
    display: none;
    position: absolute;
    background: white;
    border-radius: 15px;
    box-shadow: 0 0 15px rgb(0 0 0 / 7%);
    padding: 20px 0 20px 20px;
}

.nav-categories:hover .categories {
    display: block;
}

.category:not(:last-child) {
    margin-bottom: 2px;
}

.category-icon-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.category-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
}

.category-name {
    width: calc(100% - 50px);
    line-height: 1.2;
}

.category a {
    border-radius: 5px;
    background: white;
    padding: 10px 15px;
    display: block;
    width: 320px;
    font-size: 16px;
}

.category a:hover {
    color: #777;
}



/* Product sidebars */
.product-sidebar-widget {
    margin-bottom: 40px;
}

.product-sidebar-title {
    font-size: 22px;
    color: var(--main-color);
    margin-bottom: 30px;
}

.product-sidebar-content input {
    display: none;
}

.product-sidebar-content label {
    color: var(--main-color);
    font-size: 17px;
    display: table;
    margin-bottom: 5px;
    cursor: pointer;
    position: relative;
}

.product-sidebar-content label:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    opacity: 0;
    height: 2px;
    -webkit-transition: .3s all;
    -o-transition: .3s all;
    transition: .3s all;
    background: var(--main-color);
}

.product-sidebar-content label:hover:after,
.product-sidebar-content input:checked+label:after {
    width: 100%;
    opacity: 1;
}

.product-price-filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -5px;
}

.product-price-element {
    width: 50%;
    padding: 0 5px;
}

.product-price-element input {
    width: 100%;
    border: 1px solid #ddd;
    height: 30px;
}

.product-sidebar-widget input[type="radio"]:checked+label:after {
    width: 100%;
}



/* Load more products */
.load-more-products-area {
    text-align: center;
    margin-top: 40px;
}

.products-count-text {
    color: #767676;
}

.products-count-line {
    width: 300px;
    height: 2px;
    background: #ddd;
    margin: 25px auto 35px;
    position: relative;
}

.products-count-progress {
    height: 2px;
    background: #1f1f1f;
}

.load-products-button {
    height: 50px;
    margin: 0 auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #1f1f1f;
    padding: 0 25px;
    font-size: 15px;
    background: white;
    cursor: pointer;
    user-select: none;
    border-radius: 5px;
}

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



/* All products */
.all-products-blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.product-filters {
    width: 250px;
}

.product-area {
    width: calc(100% - 250px);
    padding-left: 30px;
}

.canvas-header {
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    font-weight: 600;
}

@media (min-width: 960px) {
    .product-filters .canvas-header {
        display: none;
    }
}

@media (max-width: 960px) {
    .product-filters {
        width: 300px;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        z-index: 1000;
        background: white;
        transform: translate3d(-100%, 0, 0);
        -webkit-transition: .4s all;
        -o-transition: .4s all;
        transition: .4s all;
    }

    .active-product-filters {
        transform: none;
    }

    .product-area {
        width: 100%;
        padding-left: 0;
    }

    .filter-product-blocks {
        height: 100%;
    }
}


/* Top filter dropdowns bar */
.all-products-area-full {
    width: 100%;
}

.product-filters-bar {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    z-index: 10000;
    position: relative;
}

.product-filters-bar .filter-product-blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.product-filters-bar .filter-product-block {
    position: relative;
    margin-bottom: 0 !important;
}

.product-filters-bar .filter-product-heading {
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    border: 1px solid #ddd;
    border-radius: 30px;
    background: #fff;
    cursor: pointer;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    -webkit-transition: .25s all;
    -o-transition: .25s all;
    transition: .25s all;
}

.product-filters-bar .filter-product-heading:hover,
.product-filters-bar .open-filter-dropdown .filter-product-heading {
    border-color: var(--main-color);
}

.product-filters-bar .filter-product-heading span {
    font-size: 14px;
}

.product-filters-bar .filter-product-heading:after {
    content: '';
    width: 7px;
    height: 7px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-top: -4px;
    -webkit-transition: .25s all;
    -o-transition: .25s all;
    transition: .25s all;
}

.product-filters-bar .open-filter-dropdown .filter-product-heading:after {
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
    margin-top: 2px;
}

.product-filters-bar .filter-product-content {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 200;
    min-width: 230px;
    max-height: 320px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 15px 18px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    display: none;
}

.product-filters-bar .open-filter-dropdown .filter-product-content {
    display: block;
}

@media (max-width: 600px) {
    .product-filters-bar .filter-product-block {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(50% - 12px);
        flex: 1 1 calc(50% - 12px);
    }

    .product-filters-bar .filter-product-heading {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}


/* Filter */
.filter-product-block:not(:last-child) {
    margin-bottom: 30px;
}

.filter-product-heading {
    margin-bottom: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.filter-product-heading span {
    font-size: 20px;
}

.filter-product-content {
    max-height: 250px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
}

.filter-product-children {
    margin-left: 15px;
}

.filter-toggle-children {
    position: absolute;
    top: 4px;
    right: 0;
    background: var(--second-color);
    color: white;
    width: 20px;
    height: 20px;
    line-height: 25px;
    text-align: center;
    cursor: pointer;
}

.filter-toggle-children .fe {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 12px;
    -webkit-transition: .4s all;
    -o-transition: .4s all;
    transition: .4s all;
}

.open-filter-toggle-children .fe {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.filter-product-children {
    background: rgb(238 238 238 / 42%);
    padding: 7px 15px;
    margin: 10px 0 10px 15px;
    display: none;
}

.form-filter-item {
    padding: 2px 0;
}

.active-filter-main {
    z-index: 100;
    position: relative;
}



/* Filter color */
.filter-color-block {
    display: inline-block;
    position: relative;
    padding: 5px;
    width: 100%;
}

.filter-color-block .filter-product-content {
    overflow: unset;
}

.filter-color-block .form-filter-item {
    display: inline-block;
    padding: 0 4px 12px 0;
}

.filter-color-block label {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid white;
    position: relative;
    padding: 0 !important;
    font-size: 0;
}

.filter-color-block label:before {
    content: '';
    width: 34px;
    height: 34px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 1px solid #ddd;
    border-radius: 50%;
    -webkit-transition: .15s all;
    -o-transition: .15s all;
    transition: .15s all;
}

.filter-color-block label:hover:before,
.filter-color-block input:checked+label:before {
    border-color: var(--main-color);
}

.filter-color-block input {
    display: none;
}

.filter-tooltip {
    background: black;
    font-size: 12px;
    color: white;
    position: absolute;
    bottom: calc(100% + 5px);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 1px 7px;
    margin-left: -2px;
    display: none;
    -webkit-transition: .15s all;
    -o-transition: .15s all;
    transition: .15s all;
}

.filter-color-block .form-filter-item:hover .filter-tooltip {
    display: block;
}

.filter-tooltip:before {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--main-color);
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}


/* Filter size */
.filter-size-block {
    display: inline-block;
    margin-right: 2px;
    margin-bottom: 5px;
}

.filter-size-block input {
    display: none;
}

.filter-size-block label {
    width: 44px;
    height: 44px;
    border: 1px solid #ddd;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    padding: 0 !important;
    -webkit-transition: .15s all;
    -o-transition: .15s all;
    transition: .15s all;
}

.filter-size:hover,
.filter-size-block input:checked+label {
    border-color: var(--main-color);
}



/* Selected filter */
.selected-filter-attr-area:not(:empty) {
    margin-bottom: 30px;
}

.selected-filter-attr {
    display: inline-block;
    background: #fff;
    padding: 5px 10px 5px 15px;
    margin-right: 10px;
    border-radius: 5px;
}

.remove-filter-tag {
    display: inline-block;
    vertical-align: middle;
    margin-left: 12px;
    cursor: pointer;
    font-size: 13px;
    transform: translateY(-2px);
}



/* Single product */
.single-product-image {
    width: 100%;
}

.single-product-title {
    margin-bottom: 10px;
}

.spb-2 .single-product-title {
    margin: 6px 0 10px;
}

.product-ratings {
    margin-bottom: 14px;
}

.product-rating-data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 7px;
    font-weight: 600;
    font-size: 15px;
    color: var(--second-color);
}

.product-rating-data .fa-star {
    color: #ffb400;
}

.product-rating-data a {
    color: #888;
    font-weight: 500;
}

.product-rating-data a:hover {
    color: var(--main-color);
}

.single-product-code {
    margin-bottom: 22px;
    font-size: 15px;
    color: #888;
}

.single-product-code span {
    font-weight: 700;
    color: var(--second-color);
}

.spm-meta-title {
    font-size: 18px;
    width: 100px;
    color: #888;
}

.spm-colors {
    display: flex;
    flex-wrap: wrap;
}

.spm-color-item {
    width: 32px;
    height: 32px;
    margin-right: 5px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    transition: .3s all;
}

.spm-color-item:hover {
    border-color: black;
}

.spm-color {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.spm-sizes {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -10px;
}

.spm-size {
    min-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 30px;
    padding: 0 15px;
}

.single-product-metas {
    margin-bottom: 30px;
}

.spm-meta-item {
    display: flex;
    align-items: center;
    min-height: 60px;
    padding-top: 5px;
}

.spm-meta-item:last-child {
    border-bottom: 0;
}

.spm-brand a {
    display: flex;
    align-items: center;
}

.spm-brand-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.spm-article {
    font-weight: 600;
    font-size: 18px;
}

.single-product-content {
    width: 100%;
    max-width: 100%;
}

@media (max-width: 600px) {
    .single-product-content-area {
        padding: 22px 20px;
    }
}

/* Single product: features (Ətraflı məlumat) + reviews (Şərhlər) side by side */
.sp-detail-row .sp-detail-col {
    min-width: 0;
    margin-bottom: 40px;
}

.sp-detail-row .single-product-content-area {
    margin-bottom: 30px;
}

/* Neutralize the reviews partial's own full-width wrapper inside the column */
.sp-reviews-col .single-product-comments-area {
    padding: 0;
}

.sp-reviews-col .single-product-comments-area .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Stack the review sub-blocks vertically within the narrower column */
.sp-reviews-col .sp-comment-blocks {
    display: block;
    margin: 0;
}

@media (max-width: 991px) {
    .sp-detail-row .sp-detail-col {
        flex: 1 1 100%;
        width: 100%;
    }
}

.single-product-cart {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.single-product-qty {
    display: inline-flex;
    align-items: center;
    height: 50px;
    background: #fff;
    border: 1px solid #e3e6ea;
    border-radius: 10px;
    overflow: hidden;
}

.single-product-qty .sp-qty-btn {
    width: 44px;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #f3f6f4;
    border: none;
    color: #2b2f36;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
}

.single-product-qty .sp-qty-btn:hover {
    background: var(--main-color);
    color: #fff;
}

.single-product-qty .sp-qty-input {
    width: 54px;
    height: 100%;
    flex-shrink: 0;
    text-align: center;
    padding: 0;
    border: none;
    border-left: 1px solid #e3e6ea;
    border-right: 1px solid #e3e6ea;
    border-radius: 0;
    background: #fff;
    color: #2b2f36;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    -moz-appearance: textfield;
    appearance: textfield;
}

.single-product-qty .sp-qty-input:focus {
    background: #f3f6f4;
}

.single-product-qty .sp-qty-input::-webkit-outer-spin-button,
.single-product-qty .sp-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.single-product-cart .sp-add-to-cart {
    flex: 1;
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 50px;
    border: none;
    cursor: pointer;
}

.single-product-cart .sp-add-to-cart.product-in-cart {
    background: var(--main-color, #8DAC00);
    color: #fff;
}

@media (max-width: 600px) {
    .single-product-cart .sp-add-to-cart {
        flex: 1 1 100%;
    }
}

/* Single product share */
.single-product-share {
    position: relative;
}

.sp-share-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    height: 50px;
    padding: 0 22px;
    background: #f3f4f6;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    color: var(--second-color);
    cursor: pointer;
    -webkit-transition: .2s all;
    -o-transition: .2s all;
    transition: .2s all;
}

.sp-share-toggle:hover {
    background: #e8eaed;
}

.sp-share-toggle i {
    font-size: 17px;
    color: var(--main-color);
}

.sp-share-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 50;
    min-width: 240px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid #e3e6ea;
    border-radius: 14px;
    -webkit-box-shadow: 0 18px 45px -12px rgba(15, 23, 42, .22);
    box-shadow: 0 18px 45px -12px rgba(15, 23, 42, .22);
    display: none;
}

.single-product-share.open-share .sp-share-panel {
    display: block;
}

.sp-share-panel .master-social-share-area {
    margin: 0;
}

.sp-share-panel .master-social-share-heading {
    display: none;
}

@media (max-width: 600px) {
    .single-product-share {
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    }

    .sp-share-toggle {
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .sp-share-panel {
        left: 0;
        right: 0;
    }
}


/* Single product action cards */
.sp-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 14px;
}

.sp-action-card {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 calc(50% - 14px);
    flex: 1 1 calc(50% - 14px);
    min-width: 220px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: #f3f4f6;
    border: 1px solid transparent;
    border-radius: 16px;
    -webkit-transition: .25s all;
    -o-transition: .25s all;
    transition: .25s all;
}

.sp-action-card:hover {
    background: #fff;
    border-color: #e3e6ea;
    -webkit-box-shadow: 0 14px 30px -14px rgba(15, 23, 42, .25);
    box-shadow: 0 14px 30px -14px rgba(15, 23, 42, .25);
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}

.sp-action-icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 14px;
    color: #fff;
    font-size: 22px;
}

.sp-action-whatsapp .sp-action-icon {
    background: #25d366;
}

.sp-action-certificate .sp-action-icon {
    background: #d80e0e;
}

.sp-action-icon img {
    width: 24px;
}

.sp-action-title {
    font-weight: 700;
    font-size: 16px;
    color: var(--second-color);
    line-height: 1.2;
}

.sp-action-sub {
    margin-top: 3px;
    font-size: 13px;
    color: #888;
}

@media (max-width: 600px) {
    .sp-action-card {
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    }

    .spm-meta-title {
        margin-bottom: 5px;
    }
}



/* Single product comments */
#product-comments-area {
    scroll-margin-top: 120px;
}

.single-product-comment-area {
    padding-bottom: 80px;
}

.sp-comment-blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -25px -40px;
}

.sp-comment-block {
    padding: 0 25px 40px;
    width: 50%;
}

.comments-stars-blocks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid #ddd;
    background: #f5f5f5;
    padding: 20px 20px 20px 0;
    margin-bottom: 30px;
    width: 500px;
    max-width: 100%;
}

.comments-stars-first {
    width: 120px;
}

.comments-stars-second {
    width: calc(100% - 120px);
}

.comments-stars-line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.comment-icon {
    text-align: center;
    font-size: 32px;
    color: orange;
}

.comment-icon-details {
    text-align: center;
}

.comment-rating-value {
    width: 70px;
}

.comment-rating-value .fa {
    color: orange;
}

.comment-line {
    width: 90%;
    height: 4px;
    background: #ddd;
    position: relative;
}

.comment-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: orange;
}

.comment-rating-count {
    width: 80px;
    text-align: right;
}

.comment {
    margin-bottom: 0;
}

.comment-header {
    margin-bottom: 10px;
}

.date.float-right {
    font-size: 14px;
}

.comment-name {
    color: #767676;
}

.comment-author {
    display: none;
}

.comment-block {
    padding: 10px 15px;
    border-left: 0;
    border-right: 0;
    padding: 15px 0;
    border-top: 0;
}

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



/* Shop tools */
.shop-tools-blocks {
    margin-bottom: 20px;
    font-weight: 600;
}

.shop-tool-button .fe {
    margin-right: 10px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--main-color);
    border-radius: 50%;
    font-size: 13px;
}

@media (min-width: 960px) {
    .shop-tools-blocks {
        display: none;
    }
}



/* Admin bar */
.admin-bar .language-label {
    display: none;
}

.admin-bar .language-switcher img {
    margin: 0;
}



/* Topbar */
.topbar-languages {
    display: flex;
    margin: 0 -5px;
    background: #333333;
    border-radius: 30px;
    padding: 5px 5px;
}

.topbar-lang {
    width: 38px;
    padding: 0 5px;
}

.topbar-lang img {
    cursor: pointer;
}

#google_translate_element {
    display: none;
}



/* Categories */
.header-categories {
    position: relative;
    z-index: 10;
}

.categories-item {
    margin: 0;
    padding: 0;
    list-style: none;
}

.categories {
    border-top: 1px solid #eef0f2;
}

.category-item {
    width: 300px;
    position: relative;
    font-size: 16px;
}

.category-parent-0>.category-item {
    border-bottom: 1px solid #eef0f2;
}

.category-parent-0>.category-item>a {
    display: block;
    font-weight: 500;
    padding: 10px 15px;
    font-size: 16px;
}

.category-item a:hover {
    background: white;
}

.has-child-categories .categories-item {
    position: absolute;
    top: 0;
    left: 100%;
    background: white;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 0 15px rgb(0 0 0 / 7%);
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    pointer-events: none;
}

.has-child-categories .categories-item a:hover {
    opacity: .5;
}

.has-child-categories .categories-item .category-item:last-child {
    margin-bottom: 0;
}

.has-child-categories>a:after {
    content: "\e930";
    font-family: Feather;
    position: absolute;
    top: 50%;
    right: 5px;
    color: #888;
    transform: translateY(-50%);
}

.has-child-categories:hover>.categories-item {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

.ha-block-categories {
    position: relative;
}

.header-categories-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: var(--border-radius);
    cursor: pointer;
    padding: 0 20px;
    font-size: 14px;
}

.header-categories-button i {
    font-size: 18px;
}

.header-categories-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 0 15px rgb(0 0 0 / 12%);
    border-radius: 5px;
    min-width: 300px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    z-index: 100;
}

.ha-block-categories:hover .header-categories-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-categories-dropdown .categories {
    border-top: 0;
}

/* Categories — müasir dizayn (header dropdown + ana səhifə paneli) */
.header-categories-dropdown {
    min-width: 320px;
    padding: 10px;
    border: 1px solid #eef0f2;
    border-radius: 16px;
    box-shadow: 0 18px 45px -12px rgb(15 23 42 / 22%);
    margin-top: 10px;
    transform: translateY(12px);
}

.ha-block-categories:hover .header-categories-dropdown {
    transform: translateY(0);
}

/* Ana səhifə kateqoriya paneli — kart konteyner */
.hsb-1 {
    align-self: flex-start;
}

.hsb-1 .categories {
    border-top: 0;
    background: #fff;
    border: 1px solid #eef0f2;
    border-radius: var(--border-radius);
    padding: 10px;
    box-shadow: 0 12px 30px -16px rgb(15 23 42 / 16%);
}

.header-categories-dropdown .category-item,
.hsb-1 .category-item {
    width: 100%;
}

.header-categories-dropdown .category-parent-0>.category-item,
.hsb-1 .category-parent-0>.category-item {
    border-bottom: 0;
}

.header-categories-dropdown .category-item>a,
.hsb-1 .category-item>a {
    display: block;
    padding: 7px 12px;
    font-size: 15px;
    font-weight: 600;
    color: #2b2f36;
    border-radius: 11px;
    transition: background .16s ease, color .16s ease;
}

.header-categories-dropdown .category-item>a:hover,
.hsb-1 .category-item>a:hover {
    background: #f3f7ff;
}

.header-categories-dropdown .category-icon-box,
.hsb-1 .category-icon-box {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.header-categories-dropdown .category-icon,
.hsb-1 .category-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: background .16s ease;
}

.header-categories-dropdown .category-icon img,
.hsb-1 .category-icon img {
    object-fit: contain;
}

.header-categories-dropdown .category-name,
.hsb-1 .category-name {
    width: auto;
    flex: 1;
    line-height: 1.25;
}

/* "Yeni məhsullar" seçilmiş element */
.new-category-parent,
.category-parent-0 .category-item:not(:last-child) {
    border-bottom: 1px solid #eef0f2;
}

.header-categories-dropdown .categories>.category-parent-0:first-child .category-icon,
.hsb-1 .categories>.category-parent-0:first-child .category-icon {
    background: rgb(20 181 3 / 12%);
}

/* Alt-kateqoriya flyout paneli */
.header-categories-dropdown .has-child-categories>.categories-item,
.hsb-1 .has-child-categories>.categories-item {
    top: -10px;
    left: 100%;
    min-width: 280px;
    padding: 10px;
    border: 1px solid #eef0f2;
    border-radius: 16px;
    box-shadow: 0 18px 45px -12px rgb(15 23 42 / 22%);
    z-index: 20;
}

.header-categories-dropdown .has-child-categories .categories-item a:hover,
.hsb-1 .has-child-categories .categories-item a:hover {
    opacity: 1;
}

.header-categories-dropdown .has-child-categories>a:after,
.hsb-1 .has-child-categories>a:after {
    right: 12px;
    color: #b4b9c0;
    transition: color .16s ease;
}

.header-categories-dropdown .has-child-categories:hover>a:after,
.hsb-1 .has-child-categories:hover>a:after {
    color: var(--main-color);
}

@media (max-width: 960px) {
    .ha-block-categories {
        display: none;
    }
}


/* Academy */
.academy-item {
    padding: 30px 0;
    border-bottom: 1px solid #ddd;
}

.academy-item:first-child {
    padding-top: 0;
}

.academy-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.academy-icon-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

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

.academy-title {
    width: calc(100% - 65px);
    font-weight: 700;
}



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



/* Term about */
.term-about {
    font-size: 16px;
    margin-top: 50px;
}



/* Home about */
.home-about-blocks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -25px -50px;
}

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

@media (max-width: 800px) {
    .home-about-block {
        width: 100%;
    }
}



/* Stats */
.stats-area {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background:
        radial-gradient(900px 400px at 12% -10%, rgba(22, 169, 52, .08), transparent 60%),
        radial-gradient(700px 360px at 100% 120%, rgba(28, 43, 70, .07), transparent 55%);
}

.stats {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -12px -24px;
}

.stat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 25%;
    padding: 0 12px 24px;
}

.stat-block.master-milestone {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 44px 24px 40px;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f6faf7));
    background: -o-linear-gradient(top, #fff, #f6faf7);
    background: linear-gradient(180deg, #fff 0%, #f6faf7 100%);
    border: 1px solid rgba(28, 43, 70, .08);
    border-radius: 24px;
    overflow: hidden;
    -webkit-box-shadow: 0 6px 18px rgba(28, 43, 70, .05);
    box-shadow: 0 6px 18px rgba(28, 43, 70, .05);
    -webkit-transition: .4s cubic-bezier(.2, .7, .3, 1);
    -o-transition: .4s cubic-bezier(.2, .7, .3, 1);
    transition: .4s cubic-bezier(.2, .7, .3, 1);
}

.stat-block.master-milestone:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: -webkit-gradient(linear, left top, right top, from(var(--main-color)), to(var(--main-color-dark)));
    background: -o-linear-gradient(left, var(--main-color), var(--main-color-dark));
    background: linear-gradient(90deg, var(--main-color), var(--main-color-dark));
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transition: .45s cubic-bezier(.2, .7, .3, 1);
    -o-transition: .45s cubic-bezier(.2, .7, .3, 1);
    transition: .45s cubic-bezier(.2, .7, .3, 1);
}

.stat-block.master-milestone:after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22, 169, 52, .14), transparent 70%);
    opacity: 0;
    -webkit-transition: .45s ease;
    -o-transition: .45s ease;
    transition: .45s ease;
}

.stat-block.master-milestone:hover {
    border-color: rgba(22, 169, 52, .35);
    -webkit-box-shadow: 0 26px 50px rgba(22, 169, 52, .18);
    box-shadow: 0 26px 50px rgba(22, 169, 52, .18);
    -webkit-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    transform: translateY(-8px);
}

.stat-block.master-milestone:hover:before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.stat-block.master-milestone:hover:after {
    opacity: 1;
}

.master-milestone-number {
    position: relative;
    font-weight: 800;
    font-size: 62px;
    line-height: 1;
    letter-spacing: -1.5px;
    background: -webkit-gradient(linear, left top, right bottom, from(#3a3f4a), to(#8a8f99));
    background: -o-linear-gradient(top left, #3a3f4a, #8a8f99);
    background: linear-gradient(135deg, #3a3f4a, #8a8f99);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.master-milestone-title {
    position: relative;
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 600;
    color: var(--second-color);
}

.master-milestone-title:before {
    content: '';
    display: block;
    width: 34px;
    height: 3px;
    margin: 0 auto 14px;
    border-radius: 3px;
    background: -webkit-gradient(linear, left top, right top, from(var(--main-color)), to(var(--main-color-dark)));
    background: -o-linear-gradient(left, var(--main-color), var(--main-color-dark));
    background: linear-gradient(90deg, var(--main-color), var(--main-color-dark));
    opacity: .85;
}

@media (max-width: 850px) {
    .stats-area {
        padding: 60px 0;
    }

    .master-milestone-number {
        font-size: 48px;
    }

    .stat-block.master-milestone {
        padding: 34px 18px 30px;
    }
}

@media (max-width: 650px) {
    .stat {
        width: 50%;
    }
}



/* Marquee */
#marquee-wrap {
    background: #cd2c2c;
    color: white;
    padding: 7px 0 0;
    font-weight: 600;
}

#marquee-wrap span {
    display: inline-block;
    margin-right: 30px;
}

.dot {
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    transform: translateY(-2.5px);
}


/* ===== Cart page ===== */
.cart-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

.cart-block-items {
    flex: 1 1 600px;
    min-width: 0;
}

.cart-block-form {
    flex: 0 0 360px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 24px;
    position: sticky;
    top: 100px;
}

.cart-payment-options {
    display: flex;
    gap: 20px;
}

.cart-payment-option {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cart-payment-option input {
    margin: 0;
    cursor: pointer;
}

.cart-payment-option label {
    display: inline;
    width: auto;
    margin: 0;
    font-weight: 400;
    cursor: pointer;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 14px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
}

.cart-item-thumb {
    flex: 0 0 90px;
}

.cart-item-details {
    flex: 1 1 auto;
    min-width: 0;
}

.cart-item-qty,
.cart-item-remove {
    flex: 0 0 auto;
}

.cart-item-thumb img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-title {
    font-weight: 600;
    font-size: 15px;
    color: #222;
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
}

.cart-item-meta {
    font-size: 13px;
    color: #888;
}

.cart-item-qty {
    display: inline-flex;
    align-items: center;
    height: 40px;
    background: #fff;
    border: 1px solid #e3e6ea;
    border-radius: 10px;
    overflow: hidden;
}

.cart-item-qty .cart-qty-btn {
    width: 38px;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #f3f6f4;
    border: none;
    color: #2b2f36;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
}

.cart-item-qty .cart-qty-btn:hover {
    background: var(--main-color);
    color: #fff;
}

.cart-item-qty .cart-qty-input {
    width: 46px;
    height: 100%;
    flex-shrink: 0;
    text-align: center;
    padding: 0;
    border: none;
    border-left: 1px solid #e3e6ea;
    border-right: 1px solid #e3e6ea;
    border-radius: 0;
    background: #fff;
    color: #2b2f36;
    font-size: 15px;
    font-weight: 600;
    line-height: normal;
    -moz-appearance: textfield;
    appearance: textfield;
}

.cart-item-qty .cart-qty-input:focus {
    background: #f3f6f4;
}

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

.cart-remove-btn {
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 16px;
    border-radius: 50%;
    transition: all .15s;
}

.cart-remove-btn:hover {
    background: #fbe7e7;
    color: #c0392b;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.cart-empty-icon {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 12px;
}

.cart-empty-text {
    font-size: 16px;
    color: #777;
    margin-bottom: 18px;
}

@media (max-width: 991px) {
    .cart-block-form {
        flex: 1 1 100%;
        position: static;
    }
}

@media (max-width: 600px) {
    .cart-item {
        flex-wrap: wrap;
        gap: 10px;
    }

    .cart-item-thumb {
        order: 1;
        flex: 0 0 70px;
    }

    .cart-item-thumb img {
        width: 70px;
        height: 70px;
    }

    .cart-item-details {
        order: 2;
        flex: 1 1 auto;
        min-width: 0;
    }

    .cart-item-qty {
        order: 3;
        flex: 0 0 auto;
    }

    .cart-item-remove {
        order: 4;
        flex: 0 0 auto;
        margin-left: auto;
    }
}

/* ============================================================
   HOME.JPEG TEMA — rəng çalarları (SAFE LINE palitrası)
   Lacivərd Kateqoriyalar düyməsi · sarı Kataloq/CTA · yaşıl vurğu
   ============================================================ */

/* Kateqoriyalar düyməsi — tünd lacivərd */
.header-categories-button.primary-button,
.header-categories-button.button {
    background: var(--accent-color);
    color: #fff;
    border: 1px solid var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.header-categories-button.primary-button:hover,
.header-categories-button.button:hover {
    background: var(--accent-color-hover);
    border-color: var(--accent-color-hover);
    color: #fff;
}

/* Kataloq düyməsi — sarı CTA, tünd yazı */
.header-aside-catalog .button.primary-button,
.header-aside-catalog .button {
    background: var(--cta-color);
    color: var(--cta-text);
    border: 1px solid var(--cta-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.header-aside-catalog .button.primary-button:hover,
.header-aside-catalog .button:hover {
    background: var(--cta-color-hover);
    border-color: var(--cta-color-hover);
    color: var(--cta-text);
}

/* Səbət nişanı — sarı dairə, tünd rəqəm */
.header-cart-badge {
    background: var(--cta-color);
    color: var(--cta-text);
}

/* "İndi al" / ana CTA düymələri sarı vurğu ilə */
.callout-area .primary-button {
    background: var(--cta-color);
    color: var(--cta-text);
    border-color: var(--cta-color);
}

.callout-area .primary-button:hover {
    background: var(--cta-color-hover);
    border-color: var(--cta-color-hover);
    color: var(--cta-text);
}

/* Telefon / whatsapp / əlaqə vurğuları yaşıl qalır */
.header-aside-whatsapp a,
.header-contact-item i {
    color: var(--main-color);
}

/* Üst zolaq (marquee) — home.jpeg-dəki qırmızı vurğu */
#marquee-wrap {
    background: #d8262a;
}


/* ============================================================
   HOME.JPEG — Kateqoriya paneli (hər sətirdə sağ ox + NEW nişanı)
   ============================================================ */
.header-categories-dropdown .category-item>a,
.hsb-1 .category-item>a {
    position: relative;
    padding-right: 32px;
}

.header-categories-dropdown .has-child-categories>a:after,
.hsb-1 .has-child-categories>a:after {
    content: "\e930";
    font-family: Feather;
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    color: #b4b9c0;
    font-size: 16px;
    transition: color .16s ease, transform .16s ease;
}

.header-categories-dropdown .has-child-categories>a:hover:after,
.hsb-1 .has-child-categories>a:hover:after {
    color: var(--main-color);
    transform: translateY(-50%) translateX(3px);
}

/* "Yeni məhsullar" — NEW nişanı */
.header-categories-dropdown .categories>.category-parent-0:first-child .category-name,
.hsb-1 .categories>.category-parent-0:first-child .category-name {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-categories-dropdown .categories>.category-parent-0:first-child .category-name:after,
.hsb-1 .categories>.category-parent-0:first-child .category-name:after {
    content: "NEW";
    background: var(--cta-color);
    color: var(--cta-text);
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    padding: 3px 6px;
    border-radius: 5px;
    letter-spacing: .4px;
}


/* ============================================================
   HOME.JPEG — Aşağı üstünlüklər zolağı (5 statik xüsusiyyət)
   ============================================================ */
.home-features-area {
    padding: 0 0 30px;
    background: #f4f4f4;
}

.home-features {
    display: flex;
    flex-wrap: wrap;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 12px 30px -16px rgb(15 23 42 / 16%);
}

.hf-item {
    width: 20%;
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    padding: 24px 20px;
    transition: .25s all;
}

.hf-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 24px;
}

.hf-icon-green {
    background: rgb(22 169 52 / 12%);
    color: #16a934;
}

.hf-icon-blue {
    background: rgb(37 99 235 / 12%);
    color: #2563eb;
}

.hf-icon-orange {
    background: rgb(234 134 16 / 14%);
    color: #ea8610;
}

.hf-icon-purple {
    background: rgb(124 58 237 / 12%);
    color: #7c3aed;
}

.hf-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--second-color);
    line-height: 1.3;
    letter-spacing: -.5px;
}

.hf-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
    margin-top: 4px;
}

.hf-desc i {
    margin-left: 6px;
}

/* 5-ci kart — tünd lacivərd CTA */
.hf-cta {
    background: var(--accent-color);
    border-color: var(--accent-color);
    border-radius: var(--border-radius);
}

.hf-cta:hover {
    background: var(--accent-color-hover);
}

.hf-cta .hf-title {
    color: #fff;
}

.hf-cta .hf-desc {
    color: #c7cedb;
}

.hf-cta .hf-desc i {
    color: var(--cta-color);
}

@media (max-width: 1100px) {

    .hf-item,
    .hf-cta {
        flex: 1 1 calc(33.333% - 16px);
    }
}

@media (max-width: 760px) {

    .home-features {
        box-shadow: none;
    }

    .hf-item {
        flex: 1 1 25%;
        width: 25%;
        justify-content: center;
        gap: 0;
        padding: 16px 8px;
    }

    .hf-item:first-child {
        border-bottom-left-radius: var(--border-radius);
    }

    .hf-item:nth-child(4) {
        border-bottom-right-radius: var(--border-radius);
    }

    .hf-item .hf-text {
        display: none;
    }

    .hf-cta {
        flex: 1 1 100%;
        width: 100%;
        justify-content: flex-start;
        gap: 14px;
        padding: 24px 20px;
        margin-top: 25px;
    }

    .hf-cta .hf-text {
        display: block;
    }
}