/**
 * dc_minimal Custom Styles
 * OpenCart 4.1.x
 * Global stylesheet for category pages and reusable components
 */

/* ============================================================================
   ROOT VARIABLES
   ========================================================================== */
:root {
    --primary-color: #000000;
    --secondary-color: #dac884;
    --text-dark: #000;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --text-black: #181818;
    --text-lightgrey: #888888;

    --gold: #C7A14A;
    --white: #FFFFFF;
    --off-white: #F7F7F7;
    --black: #111111;

    /* Neutrals */
    --ash-black: #1C1C1C;
    --black-heavy: #333333;
    --dark-grey: #666666;
    --light-grey: #B5B5B5;
}

body,
html {
    font-family: 'Gelion';
    color: #333;
}

img {
    transition: all .4s linear;
    -webkit-transition: all .4s linear;
    -moz-transition: all .4s linear;
    -o-transition: all .4s linear;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfair/PlayfairDisplay-Regular.eot');
    src: url('../fonts/playfair/PlayfairDisplay-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/playfair/PlayfairDisplay-Regular.woff2') format('woff2'),
        url('../fonts/playfair/PlayfairDisplay-Regular.woff') format('woff'),
        url('../fonts/playfair/PlayfairDisplay-Regular.svg#PlayfairDisplay-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gelion';
    src: url('../fonts/Gelion/Gelion-Regular.eot');
    src: url('../fonts/Gelion/Gelion-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gelion/Gelion-Regular.woff2') format('woff2'),
        url('../fonts/Gelion/Gelion-Regular.woff') format('woff'),
        url('../fonts/Gelion/Gelion-Regular.ttf') format('truetype'),
        url('../fonts/Gelion/Gelion-Regular.svg#Gelion-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gelion Semi';
    src: url('../fonts/Gelion/Gelion-SemiBold.eot');
    src: url('../fonts/Gelion/Gelion-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gelion/Gelion-SemiBold.woff2') format('woff2'),
        url('../fonts/Gelion/Gelion-SemiBold.woff') format('woff'),
        url('../fonts/Gelion/Gelion-SemiBold.ttf') format('truetype'),
        url('../fonts/Gelion/Gelion-SemiBold.svg#Gelion-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gelion';
    src: url('../fonts/Gelion/Gelion-Medium.eot');
    src: url('../fonts/Gelion/Gelion-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gelion/Gelion-Medium.woff2') format('woff2'),
        url('../fonts/Gelion/Gelion-Medium.woff') format('woff'),
        url('../fonts/Gelion/Gelion-Medium.ttf') format('truetype'),
        url('../fonts/Gelion/Gelion-Medium.svg#Gelion-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gelion';
    src: url('../fonts/Gelion/Gelion-Bold.eot');
    src: url('../fonts/Gelion/Gelion-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Gelion/Gelion-Bold.woff2') format('woff2'),
        url('../fonts/Gelion/Gelion-Bold.woff') format('woff'),
        url('../fonts/Gelion/Gelion-Bold.ttf') format('truetype'),
        url('../fonts/Gelion/Gelion-Bold.svg#Gelion-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/open-sans/OpenSans-Regular.eot');
    src: url('../fonts/open-sans/OpenSans-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/open-sans/OpenSans-Regular.woff2') format('woff2'),
        url('../fonts/open-sans/OpenSans-Regular.woff') format('woff'),
        url('../fonts/open-sans/OpenSans-Regular.ttf') format('truetype'),
        url('../fonts/open-sans/OpenSans-Regular.svg#OpenSans-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

dl,
ol,
ul {
    margin: 0px;
    padding: 0px;
}

/* ============================================================================
   HERO BANNER SECTION
   ========================================================================== */
#menu {
    border-top: none;
}

.top-header-bar {
    background: #B49E6C;
    text-align: center;
    height: 25px;
    /*position: absolute;*/
    width: 100%;
    z-index: 10;
}

.top-header-bar p {
    color: #181818;
    font-weight: 400;
    font-size: 12px;
    text-align: center;
    vertical-align: middle;
    height: 25px;
    line-height: 25px;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

header .header-interface {
    background: transparent;
}

/* ===== HEADER OVER SLIDER ===== */
.ctwlk-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    padding: 44px 34px 0px;
}

/* HEADER ROW */
.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LEFT MENU */
.header-left {
    display: flex;
    gap: 25px;
}

.header-link {
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
}

/* REMOVED HOVER - Click-based only */

/* CENTER LOGO */
.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-logo-text {
    color: #fff;
    font-size: 22px;
    letter-spacing: 3px;
    font-weight: 600;
    text-decoration: none;
}

svg.mobile-logo {
    display: none;
}

/* RIGHT ICONS */
.header-right {
    display: flex;
    gap: 12px;
}

.header-right svg {
    fill: #fff;
}

.icon-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    padding: 0;
}

/* CART BADGE */
.cart-btn {
    position: relative;
}

.cart-count-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #b11226;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 50%;
}

/* STICKY ON SCROLL (OPTIONAL) */
.sticky-header {
    position: fixed;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

/* ============================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ============================================================================
   PRINT STYLES
   ========================================================================== */
@media print {

    .category-hero__nav,
    .newsletter-section,
    .trust-bar,
    .category-controls {
        display: none;
    }
}

/* ============================================================================
   CUSTOM MEGA MENU
   ========================================================================== */

/* Mega Menu Wrapper */

.mega-menu-column:nth-child(1) .mega-menu-column-title,
.mega-menu-column:nth-child(2) .mega-menu-column-title,
.mega-menu-column:nth-child(3) .mega-menu-column-title {
    display: none;
}

/*.homepage.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(24, 24, 24, 0.6);
    z-index: 9998;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}*/
.is-sticky .header-wrap-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.is-sticky .header-wrap-section header.ctwlk-header {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: #fff;
    padding: 18.25px 19px;
}

.is-sticky .header-wrap-section header.ctwlk-header {
    position: unset;
}

.is-sticky .header-wrap-section header.ctwlk-header .header-row .header-left ul.mega-menu-top-level li.mega-menu-item a.mega-menu-trigger {
    color: #000;
}

.is-sticky .header-wrap-section header.ctwlk-header .header-row .header-center svg {
    display: none;
}

.is-sticky .header-wrap-section header.ctwlk-header .header-row .header-center svg.mobile-logo {
    display: block;
}

.is-sticky .header-wrap-section header.ctwlk-header .header-row .header-right svg {
    fill: #555555;
}

.mega-menu-wrapper {
    display: flex;
    align-items: center;
}

.mega-menu-top-level {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 24px;
}

.homepage nav.mega-menu-wrapper ul.mega-menu-top-level .mega-menu-grid li.mega-menu-level-1.parent-category ul {
    display: block !important;
}

.sub-category section.category-hero,
.page-product section.category-hero,
.blog-page section.category-hero,
.blog-page-article section.category-hero {
    margin-top: 71px;
    height: auto;
}

.sub-category section.category-hero .category-hero__overlay,
.page-product section.category-hero .category-hero__overlay {
    display: none;
}

.sub-category header.ctwlk-header,
.page-product header.ctwlk-header,
.blog-page header.ctwlk-header,
.blog-page-article header.ctwlk-header {
    position: unset;
    padding: 0px 34px 0px;
}

.mega-menu-item {
    position: relative;
}

.search-panel button.btn.btn-search svg {
    fill: #fff;
}

/* Top Level Trigger Button */

.sub-category.is-sticky .header-wrap-section header.ctwlk-header .mega-menu-dropdown.active {
    top: 0;
}

.sub-category header.ctwlk-header ul.mega-menu-top-level .mega-menu-item>a {
    font-size: 0;
}

.sub-category.is-sticky .header-wrap-section header.ctwlk-header .mega-menu-dropdown.active .mega-menu-content {
    padding: 20px 47px 0px;
}

.sub-category header.ctwlk-header .mega-menu-dropdown.active {
    height: auto;
}

.sub-category header.ctwlk-header .header-row .header-center,
.sub-category header.ctwlk-header .header-row .header-right {
    display: none;
}

.sub-category header.ctwlk-header .mega-menu-dropdown.active .mega-menu-content {
    padding: 20px 47px 0px;
}

.sub-category header.ctwlk-header .mega-menu-dropdown.active .mega-menu-content ul.mega-menu-column-list li.mega-menu-level-1.parent-category.cat-active>a {
    border-bottom: 1px solid #181818;
}

.sub-category header.ctwlk-header .mega-menu-dropdown.active .mega-menu-content ul.mega-menu-column-list li.mega-menu-level-1.parent-category>a {
    display: inline-block;
    padding: 0px 0 11px;
}

.sub-category header.ctwlk-header .mega-menu-dropdown.active .mega-menu-content ul.mega-menu-column-list li.mega-menu-level-1.parent-category>a.active {
    border-bottom: 1px solid #181818;
}

.sub-category .mega-menu-column-list ul.mega-menu-level-2 {
    margin-top: 10px;
}

.sub-category .mega-menu-column-list li.mega-menu-level-1.parent-category ul.mega-menu-level-2 {
    margin-top: 10px;
}

.sub-category .mega-menu-column.mega-menu-info-column ul.mega-menu-column-list li:last-child {
    display: none;
}

.homepage .mega-menu-trigger {
    color: #fff;
}

.mega-menu-trigger {
    color: #000;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}


ul.mega-menu-level-2 {
    display: none;
}

.mega-menu-trigger::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--header-color, #ffffff);
    transition: width 0.3s ease;
}

.header-left .mega-menu-wrapper ul li.mega-menu-item a.mega-menu-trigger:after {
    content: "";
    width: 3px;
    height: 1px;
    left: 0;
    bottom: 0;
    -webkit-transition: all 1s ease 0s;
    -moz-transition: all 1s ease 0s;
    -ms-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;
    position: absolute;
    z-index: -1;
    background: none;
}

/* REMOVED HOVER - Click-based only */
.homepage .header-left .mega-menu-wrapper ul li.mega-menu-item a.mega-menu-trigger.active:after {
    width: 100%;
    height: 1px;
    outline: 0;
    background: #F7F5F0;
}

.header-left .mega-menu-wrapper ul li.mega-menu-item a.mega-menu-trigger.active:after {
    width: 100%;
    height: 1px;
    outline: 0;
    background: #000;
}

.mega-menu-parent-categories a {
    color: black;
}


/* .mega-menu-trigger:hover::after,
.mega-menu-item.active .mega-menu-trigger::after {
    width: 100%;
} */

/* Mega Menu Dropdown */
.mega-menu-dropdown {
    position: fixed;
    top: 25px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.mega-menu-dropdown.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Overlay */
.mega-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
}

/* Content Container */
.mega-menu-content {
    position: relative;
    background: #F7F5F0;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    padding: 15px 47px 30px;
}


.mega-menu-content .mega-menu-header .container-fluid {
    padding: 0;
}

.mega-menu-content .mega-menu-header .container-fluid .mega-menu-header-row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.mega-menu-header-left,
.mega-menu-header-center,
.mega-menu-header-right {
    width: 33.333%;
}

.mega-menu-header-right {
    display: flex;
    justify-content: end;
    gap: 20px;
}


.mega-menu-parent-categories ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    gap: 24px;
    text-transform: uppercase;
}

.mega-menu-parent-categories ul li {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    display: block;
    color: #000;
    vertical-align: middle;
}

.mega-menu-header-center {
    text-align: center;
}

.mega-menu-header-right button.mega-menu-icon-btn.search-icon {
    border: none;
    padding: 0;
}

/* Close Button */
.mega-menu-close {
    position: absolute;
    top: 20px;
    right: 40px;
    background: none;
    border: none;
    font-size: 24px;
    color: #000;
    cursor: pointer;
    width: 40px;
    height: 40px;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    display: none;
}

.mega-menu-close:hover {
    transform: rotate(90deg);
    color: #000;
}

/* Grid Layout - 4 Columns */
.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 937px;
    margin: 0 auto;
    gap: 23px;
}


/* Column Title */
.mega-menu-column-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--primary-color, #000);
    padding-bottom: 15px;
}

/* Column List */
.mega-menu-column-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Links */
.mega-menu-link {
    display: block;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #000;
    transition: var(--transition);
    position: relative;
}

a.mega-menu-logo-text {
    color: #B89D6C;
    font-size: 22px;
    letter-spacing: 3px;
    font-weight: 600;
}

.mega-menu-link:hover {
    color: var(--primary-color, #000);
    padding-left: 8px;
}


/* Level 3 Links - Sub-child Categories */
.mega-menu-level-3 {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 20px;
}

.mega-menu-column-list li.mega-menu-level-1.parent-category ul li {
    margin-bottom: 22px;
    list-style-type: none;
}

.mega-menu-column-list li.mega-menu-level-1.parent-category ul li a {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: #000;
    transition: var(--transition);
    position: relative;
    display: block;
}

.mega-menu-column-list li.mega-menu-level-1.parent-category>a {
    font-family: Gelion;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: revert-layer;
    text-transform: uppercase;
    color: #000;
    padding: 12px 0 17px;
}

.mega-menu-column-list li.mega-menu-level-1.parent-category .arrow {
    display: none;
}

/*.mega-menu-content .mega-menu-header .container-fluid .mega-menu-header-row .mega-menu-header-left .mega-menu-parent-categories ul li.active {
    border-bottom: 1px solid #000;
}*/
/*.mega-menu-top-level li.mega-menu-item.active div#mega-menu-women .mega-menu-parent-categories ul li:first-child ,
.mega-menu-top-level li.mega-menu-item.active div#mega-menu-men .mega-menu-parent-categories ul li:last-child{
    border-bottom: 1px solid #000;
}*/
/* ============================================================================
   Our selection section DESIGN
   ========================================================================== */
.our-selection-slider .owl-nav {
    position: absolute;
    top: 40%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.our-selection-slider .owl-nav button {
    background: transparent !important;
    pointer-events: all;
}

.owl-prev-arrow,
.owl-next-arrow {
    font-size: 28px;
    color: #000;
    background: #fff;
    padding: 8px 12px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.owl-prev-arrow:hover,
.owl-next-arrow:hover {
    background: #000;
    color: #fff;
}


/* Product Card */
.product-card {
    background: #e4e0db !important;
    padding: 0px;
    text-align: left;
}

.image-wrap {
    position: relative;
    overflow: hidden;
}

.image-wrap img {
    width: 100%;
    display: block;
    transition: opacity 0.4s ease;
}

.our-selection .our-selection-item .product-card .image-wrap img {
    height: 360px;
    object-fit: contain;
}

/* Second image hover */
.image-wrap .img2 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.image-wrap:hover .img2 {
    opacity: 1;
}

.image-wrap:hover .img1 {
    opacity: 0;
}

.our-selection .product-thumb .collection-image .product-image-secondary,
.related .product-thumb .collection-image .product-image-secondary,
.recently-viewed .product-thumb .collection-image .product-image-secondary {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(1);
    -webkit-transform: translateX(-50%) scale(1);
    opacity: 0;
    visibility: hidden;
    transition: all .4s linear;
    -webkit-transition: all .4s linear;
    -moz-transition: all .4s linear;
    -o-transition: all .4s linear;
}

.our-selection .product-thumb .collection-image .product-image-primary,
.related .product-thumb .collection-image .product-image-primary,
.recently-consulted-products .product-thumb .collection-image .product-image-primary {
    position: relative;
    opacity: 1;
    visibility: visible;
    transition: all .4s linear;
    -webkit-transition: all .4s linear;
    -moz-transition: all .4s linear;
    -o-transition: all .4s linear;
}

.our-selection .product-thumb .collection-image:hover .product-image-primary,
.related .product-thumb .collection-image:hover .product-image-primary,
.recently-consulted-products .product-thumb .collection-image:hover .product-image-primary {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.our-selection .product-thumb .collection-image:hover .product-image-secondary,
.related .product-thumb .collection-image:hover .product-image-secondary,
.recently-consulted-products .product-thumb .collection-image:hover .product-image-secondary {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1.1);
    -webkit-transform: translateX(-50%) scale(1.1);
}

.our-selection .our-selection-slider .owl-stage-outer,
.related .related-slider .owl-stage,
.recently-consulted-products .recently-viewed-slider .owl-stage {
    overflow: visible;
}

.product-info {
    margin-top: 15px;
    padding-left: 14px;
    text-align: left;
}

.product-name {
    font-family: Gelion;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 2.56px;
    vertical-align: middle;
    text-transform: uppercase;
    color: var(--text-black);
    margin: 0px;
}

.product-info a {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.1em;
    vertical-align: middle;
    text-transform: uppercase;
    color: #181818;
}

.product-price {
    font-family: Gelion;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    vertical-align: middle;
    color: var(--text-lightgrey);
    margin-bottom: 0px;
}

/* Owl dots */
.our-selection-slider .owl-dots {
    margin-top: 20px;
    text-align: center;
}

.our-selection-slider .owl-dot span {
    width: 8px;
    height: 8px;
    background: #bbb;
    display: inline-block;
    margin: 0 4px;
    border-radius: 50%;
}

.our-selection-slider .owl-dot.active span {
    background: #000;
}

.footer-copyright {
    color: #555555;
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 12px;
    line-height: 158%;
    letter-spacing: 0px;
    padding: 10px 80px 15px;
    position: relative;
    z-index: 6;
    background: rgba(196, 196, 196, 0.1);
}

/* =========================
   MOBILE MENU BASE
========================= */

.mobile-menu-toggle {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0px;
    z-index: 1000;
}

/* HEADER OVER BANNER */
.ctwlk-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #555555;
    cursor: pointer;
}

.category-hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 0px;
}

.category-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sub-category section.category-hero .category-hero__image-wrapper .page-product section.category-hero .category-hero__image-wrapper {
    position: relative;
}

.sub-category section.category-hero .category-hero__image-wrapper img.category-hero__image,
.page-product section.category-hero .category-hero__image-wrapper img.category-hero__image {
    height: 131px;
}

.sub-category section.category-hero .category-hero__image-wrapper .category-hero__title,
.page-product section.category-hero .category-hero__image-wrapper .category-hero__title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 12px;
}

.sub-category section.category-hero .category-hero__image-wrapper .category-hero__title h1,
.page-product section.category-hero .category-hero__image-wrapper .category-hero__title h1 {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    letter-spacing: 0.2em;
    color: #F7F5F0;
    margin: 0;
}

.category-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
}

.category-hero__brand {
    font-size: 72px;
    font-weight: 300;
    letter-spacing: 12px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-family: 'Futura', 'Century Gothic', 'Avenir', sans-serif;
}

.category-hero__nav {
    display: flex;
    gap: 30px;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.category-hero__nav a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.category-hero__nav a:hover,
.category-hero__nav a.active {
    opacity: 0.7;
}

.category-hero__nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width 0.3s ease;
}

.category-hero__nav a:hover::after,
.category-hero__nav a.active::after {
    width: 100%;
}

.category-hero__announcement {
    position: absolute;
    top: 20px;
    width: 100%;
    text-align: center;
    font-size: 14px;
    letter-spacing: 2px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 10px 20px;
}

/* ============================================================================
   PRODUCT GRID SECTION - OUR SELECTION
   ========================================================================== */
.our-selection__title,
.get-inspired-title {
    font-family: Gelion;
    font-weight: 700;
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 2.56px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    color: var(--text-black);
}

.our-selection__title {
    margin: 35px 0 20px;
}

.get-inspired-title {
    margin: -10px 0 20px 35px;
}


.our-selection {
    width: 100%;
    max-width: 1378px;
    margin: 0 auto;
}

.our-selection .our-selection-slider .owl-stage-outer {
    padding: 0;
}

.subcategory-section .subcategory-grid {
    display: flex;
    gap: 20px;
}

.subcategory-section {
    padding: 32.5px 0;
}

.subcategory-section .container-custom {
    padding: 0;
    max-width: 1378px;
    margin: 0 auto;
}

.subcategory-section .subcategory-grid .subcategory-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: Playfair Display;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
    letter-spacing: 3.2px;
    text-transform: uppercase;
    color: #e1cebd;
    z-index: 6;
}

.subcategory-section .subcategory-grid .subcategory-item {
    position: relative;
}

.subcategory-section .subcategory-grid .subcategory-item .subcategory-image-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
    z-index: 5;
}

.subcategory-section .subcategory-grid .subcategory-item .subcategory-image-wrapper div.subcategory-image {
    transform: scale(1);
    -webkit-transform: scale(1);
    transition: all .4s linear;
    -webkit-transition: all .4s linear;
    -moz-transition: all .4s linear;
    -o-transition: all .4s linear;
}

.subcategory-section .subcategory-grid .subcategory-item a.subcategory-link .subcategory-image-wrapper,
.product-grid-section .container-custom .impression-item {
    overflow: hidden;
}

.subcategory-section .subcategory-grid .subcategory-item a.subcategory-link:hover div.subcategory-image
{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.product-grid-section .container-custom .impression-item div.impression-image:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transition: all .4s linear;
    -webkit-transition: all .4s linear;
    -moz-transition: all .4s linear;
    -o-transition: all .4s linear;
}


.subcategory-section .subcategory-grid .subcategory-item a.subcategory-link:hover .subcategory-image-wrapper:before {
    opacity: 0.3 !important;
}

.product-info .color-swatches {
    display: none;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    position: relative;
    background: var(--white);
    transition: var(--transition);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.product-card__image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 133.33%;
    /* 3:4 aspect ratio */
    overflow: hidden;
    background: var(--bg-light);
}

.product-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-card__image {
    transform: scale(1.05);
}

.product-card__badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    z-index: 2;
}

.product-card__badge--new {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.product-card__info {
    padding: 20px 15px;
}

.product-card__name {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card__name a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.product-card__name a:hover {
    color: var(--secondary-color);
}

.product-card__price {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.product-card__price-old {
    text-decoration: line-through;
    color: var(--text-light);
    margin-right: 10px;
    font-size: 14px;
}

.product-card__colors {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.product-card__color-swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.product-card__color-swatch:hover {
    transform: scale(1.2);
    border-color: var(--primary-color);
}

.product-label{
    position: absolute;
    right: 15px; 
    top: 15px; 
    z-index: 5;
    background-color: #edeae5;
    color: #181818;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: Gelion, sans-serif;
    padding: 5px 15px;
    display: block;
}

.color-swatches {
    display: flex;
    gap: 7px;
    justify-content: flex-start;
    position: absolute;
    bottom: 15px;
    left: 14px;
}

.color-swatches .swatch {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    border: 0.5px solid #000000;
}

/* ============================================================================
   GET INSPIRED SECTION
   ========================================================================== */
.get-inspired {
    padding: 0px 0 41.76px;
    background: var(--bg-light);
}

.inspired-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.inspired-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4;
}

.inspired-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.inspired-item:hover .inspired-item__image {
    transform: scale(1.1);
}

.inspired-item__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
}

.inspired-item__text {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.4;
}

.inspired-item__link {
    display: inline-block;
    margin-top: 15px;
    color: var(--white);
    text-decoration: underline;
    font-size: 14px;
    letter-spacing: 1px;
    transition: var(--transition);
}

.inspired-item__link:hover {
    color: var(--secondary-color);
}

/* ============================================================================
   SOCIAL / INFLUENCER SECTION
   ========================================================================== */
.influencer-section {
    padding: 32.5px 0;
}

.container-custom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.influencer-section__title {
    text-align: center;
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.influencer-grid {
    display: flex !important;
    flex-wrap: wrap;
    gap: 20px;
}

.influencer-item {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    cursor: pointer;
    min-height: 260px;
    width: 18.3%;
}

.influencer-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.influencer-item:hover .influencer-item__image {
    transform: scale(1.1);
}

.influencer-item__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #828282;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: var(--transition);
}

.influencer-item:hover .influencer-item__overlay {
    opacity: 1;
}

.influencer-item__username {
    letter-spacing: 1px;
    font-family: Gelion;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    color: #F7F5F0;
    position: absolute;
    left: 35px;
    bottom: 21px;
}

.influencer-section .container-custom h2.influencer__title {
    display: none;
}

/* ============================================================================
   NEWSLETTER SIGNUP SECTION (REUSABLE)
   ========================================================================== */
.newsletter-section {
    padding: 0;
    margin: 0px 0 0;
}

.newsletter-container {
    display: flex;
    height: 338px;
    background: var(--bg-light);
}

.newsletter__image-wrapper {
    position: relative;
    overflow: hidden;
    width: 49.03%;
}

.newsletter__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newsletter__form-wrapper {
    padding: 60px 51.44px 60px 36.56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #E1CEBD;
    width: 51.11%;
}

.newsletter__title {
    font-family: Gelion;
    font-weight: 700;
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 2.56px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.newsletter__subtitle {
    color: #333333;
    font-family: Gelion;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 40px;
}

.newsletter__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    max-width: 344px;
}

.newsletter__input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    font-size: 14px;
    letter-spacing: 1px;
    transition: var(--transition);
    font-family: Gelion;
    font-weight: 400;
    text-transform: uppercase;
    color: #767676;
    line-height: 48px;
    height: 48px;
}

.newsletter__input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter__checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.newsletter__checkbox {
    height: 18px;
    margin-top: 0;
    cursor: pointer;
    width: 18px;
    border-color: #333;
}

.newsletter__checkbox-label {
    color: #000;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
}

.newsletter__checkbox-label a {
    color: var(--text-dark);
    text-decoration: underline;
}

.newsletter__submit {
    padding: 0px 0px;
    min-width: 49px;
    background: var(--black-heavy);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-start;
    position: absolute;
    height: 48px;
    right: 0;
    font-family: Gelion;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
}

.newsletter__submit:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.newsletter__submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ============================================================================
   TRUST & INFO BAR (COMMON)
   ========================================================================== */
.trust-bar {
    color: #000;
    padding: 58.5px 0 48.5px;
    background: #F9F9F9;
}

.trust-bar__container {
    display: flex;
    gap: 58px;
    max-width: 574px;
    margin: 0 auto;
    padding: 0 20px;
}

.trust-bar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-bar__icon {
    font-size: 24px;
}

.trust-bar__text {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
}

.trust-bar__parag {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
}

/* ============================================================================
   CATEGORY FILTERING & SORTING
   ========================================================================== */
.category-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.category-controls__left {
    display: flex;
    gap: 20px;
    align-items: center;
}

.category-controls__right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.category-controls__label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.category-controls__select {
    padding: 8px 15px;
    border: 1px solid var(--border-color);
    font-size: 13px;
    background: var(--white);
    cursor: pointer;
}

footer ul li a,
footer a,
footer h5 {
    color: #000 !important;
}

footer {
    margin: 0;
    padding-top: 25px;
    background-color: #F9F9F9;
    border-top: 1px solid rgba(136, 136, 136, 0.5);
}

footer .container {
    width: 100%;
    max-width: 838px;
    padding: 0 20px;
}

footer .container .col-sm-3:last-child {
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

h5.footer_title {
    text-transform: uppercase;
    font-family: Gelion;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 12px;
}

footer ul li a,
footer a {
    font-family: Gelion;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    margin: 0 0 12px;
    padding: 0;
    transition: var(--transition);
}

footer ul li a {
    transition: var(--transition);
}

footer ul li a:hover {
    padding-left: 8px;
    color: #000 !important;
}

.mobile-submenu {
    display: none;
}

button.mobile-menu-close {
    display: none;
}

footer a.social-link svg {
    fill: #555;
}

footer a.social-link:hover svg {
    fill: #B49E6C;
}

/*Collection-page*/
.collection-image {
    position: relative;
    background: #e4e0db !important;
}

.product-grid-section .container-custom {
    max-width: 1380px;
    padding: 0 16px;
    margin-bottom: 20px;
}

.product-grid-section .container-custom .product-thumb {
    padding: 0;
    text-align: left !important;
}

.product-grid-section .container-custom .product-grid {
    gap: 12px;
    margin-bottom: 0px;
}

.product-grid-section .container-custom .product-thumb .collection-image,
.our-selection-item .collection-image
 {
    overflow: hidden;
    height: 360px;
}
.product-grid-section .container-custom .impression-item{
    height: 416px; /* 360px image + 56px info */
    position: relative;
}
.product-grid-section .container-custom .impression-item div{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.product-grid-section .container-custom .impression-item .impression-title{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: Playfair Display;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
    letter-spacing: 3.2px;
    text-transform: uppercase;
    color: #e1cebd;
    z-index: 6;
}

.product-grid-section .container-custom .impression-item .impression-image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
    z-index: 5;
}

.product-grid-section .container-custom .product-thumb .collection-image .product-image-wrapper {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.product-grid-section .container-custom .product-thumb .collection-image img {
    width: 100%;
    margin: 0 auto;
    max-width: 328px;
    display: block;
    object-fit: cover;
    transform: scale(1);
    -webkit-transform: scale(1);
    transition: all .4s linear;
    -webkit-transition: all .4s linear;
    -moz-transition: all .4s linear;
    -o-transition: all .4s linear;
}

.product-grid-section .container-custom .product-thumb .collection-image .product-image-secondary {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(1);
    -webkit-transform: translateX(-50%) scale(1);
    opacity: 0;
    visibility: hidden;
    transition: all .4s linear;
    -webkit-transition: all .4s linear;
    -moz-transition: all .4s linear;
    -o-transition: all .4s linear;
}

.product-grid-section .container-custom .product-thumb .collection-image .product-image-primary {
    position: relative;
    opacity: 1;
    visibility: visible;
    transition: all .4s linear;
    -webkit-transition: all .4s linear;
    -moz-transition: all .4s linear;
    -o-transition: all .4s linear;
}

.product-grid-section .container-custom .product-thumb .collection-image:hover .product-image-primary {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.product-grid-section .container-custom .product-thumb .collection-image:hover .product-image-secondary {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1.1);
    -webkit-transform: translateX(-50%) scale(1.1);
}

.product-grid-section .container-custom .product-thumb .product-info {
    margin-top: 8px;
    text-align: left;
}

.product-grid-section .container-custom .product-thumb:hover {
    box-shadow: none;
}

.color-swatches-mobile {
    display: none;
}

.load-more-wrapper {
    text-align: center;
    margin: 40px 0;
}

.product-counter {
    font-size: 14px;
    margin-bottom: 12px;
    color: #555;
}

.btn-load-more {
    background: #181818;
    color: #fff;
    border: none;
    padding: 12px 40px;
    width: 100%;
    font-family: Gelion;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-load-more:hover {
    background: #B49E6C;
}

.pagination {
    display: none;
}

.product-progress-wrapper {
    max-width: 370px;
    margin: 14px auto 36px;
    text-align: center;
}

.product-progress-text {
    color: #333;
    margin-bottom: 11px;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    line-height: 24px;
}

.product-progress-bar {
    width: 100%;
    max-width: 197px;
    margin: 0 auto;
    height: 4px;
    background: #D9D9D9;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 11px;
}

.product-progress-fill {
    display: block;
    height: 100%;
    width: 0;
    background: #333333;

}

/* =============================================================================
   FILTER TRIGGER BUTTON
   ============================================================================= */
.sub-category .product-grid-section {
    padding-top: 12px;
}

.sub-category .product-grid-section button#filter-trigger-btn {
    margin: 20px 0 60px;
    display: flex;
    float: right;
    background: #F7F5F0;
    color: #333333;
    border: 0.2px solid #888;
    font-family: 'Open Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.01em;
    align-items: center;
    gap: 8px;
    max-width: 99px;
    padding: 6px 13px;
    height: 33px;
    transition: background 0.3s ease;
}

.sub-category .product-grid-section .product-grid {
    width: 100%;
}

.sub-category .product-grid-section button#filter-trigger-btn:hover {
    background: #B89D6C;
    border-color: #B89D6C;
}

.filter-trigger-btn svg {
    color: #555555;
}

/* =============================================================================
   OVERLAY
   ============================================================================= */
.filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(24, 24, 24, 0.6);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

/* =============================================================================
   FILTER PANEL
   ============================================================================= */
.filter-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 524px;
    max-width: 100%;
    height: 100vh;
    background: #F9F9F9;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

.filter-panel.is-active {
    transform: translateX(0);
}

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

/* =============================================================================
   FILTER SECTIONS PANNEL HEADER
   ============================================================================= */
.filter-panel__header {
    padding: 13px 0px;
    margin-top: 69px;
    position: relative;
    text-align: center;
}

.filter-panel__title {
    letter-spacing: 1px;
    margin: 0;
    font-family: Gelion;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    vertical-align: middle;
    text-transform: uppercase;
}

.filter-panel__close {
    background: none;
    border: none;
    transition: opacity 0.2s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
    padding: 0;
}

.filter-panel__close:hover {
    opacity: 0.6;
}

/* Panel Content (Scrollable) */
.filter-panel__content {
    flex: 1;
    overflow-y: auto;
    padding: 16px 0;
    -webkit-overflow-scrolling: touch;
}

.filter-panel__content::-webkit-scrollbar {
    width: 6px;
}

.filter-panel__content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.filter-panel__content::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.filter-panel__content::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* Panel Footer (Sticky) */
.filter-panel__footer {
    display: flex;
    gap: 12px;
    padding: 20px 0px;
    background: #fff;
    flex-shrink: 0;
    flex-direction: column-reverse;
}

/* =============================================================================
   FILTER SECTIONS (Accordion)
   ============================================================================= */
.filter-section {
    border-bottom: 0.5px solid #D9D9D9;
}

.filter-section__header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
    border-bottom: 1px solid #D9D9D9;
}

.filter-section__header:hover {
    background: #f9f9f9;
}

.filter-section__title {
    font-family: Gelion;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    text-transform: capitalize;
    color: #333333;
}

.filter-section__icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.filter-section__header.is-open .filter-section__icon {
    transform: rotate(180deg);
}

.filter-section__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.filter-section__content.is-open {
    max-height: 1000px;
}

/* =============================================================================
   SIZE PILLS
   ============================================================================= */
.filter-size-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 24px 23px 10px;
}

.filter-size-pill {
    position: relative;
    cursor: pointer;
}

.filter-size-pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.filter-size-pill__label {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    transition: all 0.2s ease;
    background: #D9D9D9;
    font-family: Gelion;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 19.5px;
}

.filter-size-pill input:checked+.filter-size-pill__label {
    background: #333;
    color: #fff;
    border-color: #333;
}

.filter-size-pill:hover .filter-size-pill__label {
    border-color: #000;
}

/* =============================================================================
   COLOR SWATCHES
   ============================================================================= */
.filter-color-grid {
    display: flex;
    gap: 16px;
    padding: 19.5px 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-color-swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.filter-color-swatch input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.filter-color-swatch__circle {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #d1d1d1;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.2px solid #000000;
}

.filter-color-swatch__check {
    opacity: 0;
    transition: opacity 0.2s;
}

.filter-color-swatch input:checked+.filter-color-swatch__circle {
    border-color: #000;
    border-width: 3px;
}

.filter-color-swatch input:checked+.filter-color-swatch__circle .filter-color-swatch__check {
    opacity: 1;
}

.filter-color-swatch__name {
    font-size: 11px;
    text-align: center;
    color: #666;
    display: none;
}

/* =============================================================================
   CHECKBOX LIST
   ============================================================================= */
.filter-checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 24px 20px;
}

.filter-checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    cursor: pointer;
    position: relative;
}

.filter-checkbox-item input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.filter-checkbox-item__box {
    width: 18px;
    height: 18px;
    border: 2px solid #d1d1d1;
    border-radius: 3px;
    flex-shrink: 0;
    transition: all 0.2s;
    position: relative;
}

.filter-checkbox-item__box::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.2s;
}

.filter-checkbox-item input:checked+.filter-checkbox-item__box {
    background: #000;
    border-color: #000;
}

.filter-checkbox-item input:checked+.filter-checkbox-item__box::after {
    opacity: 1;
}

.filter-checkbox-item__label {
    flex: 1;
    font-size: 14px;
    color: #333;
}

.filter-checkbox-item__count {
    font-size: 12px;
    color: #999;
}

/* =============================================================================
   PRICE FILTER
   ============================================================================= */
.filter-price {
    padding: 16px 24px 20px;
}

.filter-price__inputs {
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-price__input-group {
    flex: 1;
}

.filter-price__label {
    display: block;
    font-size: 11px;
    color: #333;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-price__input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d1d1;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.filter-price__input:focus {
    outline: none;
    border-color: #000;
}

.filter-price__separator {
    padding-top: 20px;
    color: #999;
}

/* =============================================================================
   BUTTONS
   ============================================================================= */
.filter-btn {
    flex: 1;
    padding: 14.5px 24px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin: 0 auto;
    max-width: 370px;
}

.filter-btn--primary {
    background: #333;
    color: #fff;
}

.filter-btn--primary:hover {
    background: #B49E6C;
}

.filter-btn--secondary {
    background: #F9F9F9;
    color: #000;
    border: 1px solid #333333;
}

.filter-btn--secondary:hover {
    background: #e5e5e5;
}

/* =============================================================================
   LOADING OVERLAY
   ============================================================================= */
.filter-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    z-index: 10000;
}

.filter-loading.is-active {
    display: flex;
}

.filter-loading__spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

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

.filter-loading__text {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* =============================================================================
   BODY SCROLL LOCK
   ============================================================================= */
body.filter-open {
    overflow: hidden;
}

span.cart-count{
    position: absolute;
    top: -8px;
    right: -8px;
    background: #B49E6C;
    color: #fff;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*Collection-page-E*/
/* ============================================================================
   RESPONSIVE DESIGN
   ========================================================================== */


/* Tablet */
@media (max-width: 1024px) {

    .mega-menu-content {
        padding: 15px 47px 30px;
    }

}

/* Tablet (≤ 992px) */
@media (max-width: 992px) {
    .category-hero {
        height: 400px;
    }

    .category-hero__brand {
        font-size: 48px;
        letter-spacing: 8px;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .inspired-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .newsletter__form-wrapper {
        padding: 40px;
    }

    .trust-bar__container {
        gap: 30px;
    }

    .influencer-item {
        width: 48.6%;
    }
}

/* Mobile (≤ 768px) */
@media (max-width: 767px) {

    #cms-blog p{
        font-size: 18px;
        line-height: 24px;;
    }
    #cms-blog h1{
        font-size: 1.7em;
    }
    #cms-blog h3{
        font-size: 1.5em;
    }
    .category-hero {
        height: 300px;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .mega-menu-top-level {
        gap: 0px;
    }

    .mega-menu-content {
        padding: 15px 47px 30px;
    }

    .mega-menu-close {
        top: 15px;
        right: 20px;
        font-size: 20px;
    }

    .mega-menu-column-title {
        font-size: 14px;
        margin-bottom: 15px;
    }

    /* Show hamburger */
    .mobile-menu-toggle {
        display: block;
    }

    .mega-menu-column-list li.mega-menu-level-1.parent-category>a {
        padding: 11px 28px 15px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 18px;
        line-height: 22px;
        color: #333333;
    }

    .sub-category .mega-menu-column.mega-menu-info-column ul.mega-menu-column-list li:last-child {
        display: block;
    }

    .ctwlk-header {
        padding: 34px 4px 0px;
    }

    .header-left .mega-menu-wrapper ul li.mega-menu-item a.mega-menu-trigger:after {
        display: none;
    }

    .filter-panel {
        height: 500px;
        top: 50%;
        transform: translate(100%, -50%);
    }

    .filter-panel.is-active {
        transform: translate(0, -50%);
    }

    .filter-panel__header {
        margin-top: 0px;
    }

    .filter-panel__footer {
        padding: 20px 16px;
    }

    .product-grid-section .container-custom .product-thumb .collection-image img,
    .our-selection-item .collection-image img {
        max-width: 350px;
    }

    .product-grid-section .container-custom .product-thumb .collection-image,
    .our-selection-item .collection-image {
        height: 250px;
    }

    .product-grid-section .container-custom .impression-item{
        height: 301px; /* 250px image + 51px info */
        position: relative;
    }

    /* Active menu */
    .mega-menu-wrapper.is-open {
        left: 0;
    }

    /* Top level menu */
    .mega-menu-top-level {
        padding: 0 0px;
        position: relative;
    }

    .mega-menu-item {
        width: 50%;
        border: none;
        position: unset;
    }

    .mega-menu-level-1 {
        width: 100%;
        margin-bottom: 0px;
    }

    .mega-menu-trigger {
        display: flex;
        justify-content: center;
        align-items: center;
        color: #000;
        font-size: 20px;
        line-height: 1.5;
        padding: 9px 0;
        text-transform: uppercase;
        font-weight: 500;
        transition: none;
    }

    .mega-menu-column-list li.mega-menu-level-1.parent-category ul {
        display: block;
    }

    .mega-menu-column-list li.mega-menu-level-1.parent-category {
        position: relative;
    }

    .mega-menu-column-list li.mega-menu-level-1.parent-category>a .arrow {
        cursor: pointer;
        display: flex;
    }

    .mega-menu-column-list li.mega-menu-level-1.parent-category.active>a .arrow svg {
        transform: rotate(180deg);
        transition: transform 0.3s ease;
    }

    .mega-menu-top-level li.mega-menu-item.active a.mega-menu-trigger {
        border-bottom: 2px solid var(--CTWLK-GOLD, #B49E6C);
    }

    a.mega-menu-trigger {
        border-bottom: 0.5px solid rgba(136, 136, 136, 0.2);
    }

    .homepage .mega-menu-trigger {
        color: #888888;
    }

    .mega-menu-top-level li.mega-menu-item.active a.mega-menu-trigger {
        color: #333333;
    }

    /* Hide desktop dropdown */
    .mega-menu-dropdown {
        display: none !important;
    }

    .mega-menu-top-level li.mega-menu-item.active .mobile-submenu {
        display: block;
    }

    /* Mobile sub menu */
    .mobile-submenu {
        display: none;
        padding: 0 0 0px;
    }

    .mobile-submenu {
        position: absolute;
        width: 100%;
        left: 0;
    }

    .mega-menu-column-list li.mega-menu-level-1.parent-category ul li {
        padding: 0 52px;
        margin-bottom: 0;
    }

    .mega-menu-column-list li.mega-menu-level-1.parent-category ul li a {
        font-family: Gelion;
        font-weight: 400;
        font-size: 14px;
        line-height: 17px;
        color: #333;
        padding: 15.5px 0;
    }

    .mega-menu-column-list li.mega-menu-level-1.parent-category>ul {
        margin-bottom: 8px;
    }

    button.mobile-menu-close {
        display: block;
        font-size: inherit;
        right: auto;
        left: 16.33px;
        padding: 0;
        top: 17px;
    }

    .mobile-submenu.is-open {
        display: block;
    }

    body.menu-open {
        overflow: hidden;
    }

    .is-sticky .header-wrap-section header.ctwlk-header .container-fluid {
        padding: 0;
    }

    .mobile-menu-toggle svg {
        fill: #F7F5F0;
    }

    .mobile-social-icons svg {
        fill: #555555;
        width: 19.2px;
        height: 19.2px;
    }

    .mobile-social-icons {
        padding: 16.5px 0;
        width: 100%;
        max-width: 141px;
        margin: 12px auto 0;
        display: flex;
        gap: 38px;
    }

    .sticky-header.active .container-fluid .sticky-header-row {
        margin-bottom: 0;
    }

    .sticky-header.active .sticky-header-left .mobile-menu-toggle svg {
        fill: #555;
    }

    /* Hide right icons if needed */
    .header-right {
        gap: 10px;
    }

    .our-selection {
        padding-bottom: 30px;
    }

    .our-selection .our-selection-item .product-card .image-wrap img {
        height: 183px;
    }

    .product-info {
        padding-left: 8px;
    }

    .our-selection .product-thumb {
        padding: 0px;
    }

    .product-card .color-swatches {
        display: none;
    }

    .collection-image .color-swatches {
        display: none;
    }

    .product-info .color-swatches {
        display: flex;
        position: unset;
        padding-top: 6px;
        margin-bottom: 12px;
    }

    .influencer-item__username {
        left: 18px;
        bottom: 13px;
        font-size: 10px;
        line-height: 15px;
    }

    .container-custom {
        padding: 8px 0 0 0px;
    }

    .influencer-section .container-custom h2.influencer__title {
        color: #181818;
        font-family: Gelion;
        font-weight: 700;
        font-size: 20px;
        line-height: 24px;
        text-align: center;
        vertical-align: middle;
        padding: 16px 15px;
        margin-bottom: 16px;
        display: block;
        text-transform: uppercase;
    }

    .influencer-section {
        padding: 0px 0 12px 12px;
    }

    .container-custom h2.get-inspired__title {
        display: none;
    }

    h2.our-selection__title {
        font-weight: 700;
        font-size: 20px;
        line-height: 24px;
        text-align: center;
        vertical-align: middle;
        padding: 16px;
        margin: 0 0 8px;
    }

    .get-inspired {
        padding: 0px;
    }

    .product-name {
        letter-spacing: 1.6px;
    }

    .subcategory-section .subcategory-grid .subcategory-name {
        font-size: 16px;
    }

    .subcategory-section {
        padding: 0 0 30px;
    }

    footer ul li {
        padding: 15.5px 24px;
    }

    footer ul li a {
        margin: 0;
        padding: 0;
    }

    footer .col-sm-3 {
        width: 100%;
        padding: 0 16px;
    }

    footer .container .row {
        margin: 0;
    }

    .influencer-grid-mobile .owl-stage-outer {
        overflow: visible !important;
    }

    .footer-copyright {
        padding: 10px 22.51px 15px;
    }

    .trust-bar__item:last-child {
        margin: 0;
    }

    .newsletter-section h2.newsletter__title {
        display: none;
    }

    .newsletter-section h2.newsletter__title__mobile {
        display: block !important;
        font-family: Gelion;
        font-weight: 600;
        font-size: 16px;
        line-height: 19px;
        text-align: center;
        color: #000;
        margin-bottom: 10px;
    }

    .newsletter-section p.newsletter__subtitle {
        display: none;
    }

    .newsletter-section p.newsletter__subtitle__mobile {
        display: block !important;
        font-family: Gelion;
        font-weight: 400;
        font-size: 14px;
        text-align: center;
        color: #333;
        line-height: 24px;
        margin-bottom: 10px;
    }

    .category-hero__brand {
        font-size: 36px;
        letter-spacing: 6px;
    }

    .category-hero__nav {
        font-size: 14px;
        gap: 20px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-card__info {
        padding: 15px 10px;
    }

    .product-card__name {
        font-size: 12px;
    }

    .product-card__price {
        font-size: 14px;
    }

    .inspired-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .influencer-item {
        aspect-ratio: inherit;
        min-height: 160px;
        width: 100%;
    }

    .newsletter__form-wrapper {
        padding: 25px 29.5px 29px;
        width: 100%;
    }

    .newsletter-section {
        margin: 20px 0 0px;
    }

    .newsletter__image-wrapper {
        display: none;
    }

    .newsletter__subtitle {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .newsletter-container {
        height: unset;
        text-align: center;
    }

    .newsletter__title {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .newsletter__form {
        width: 100%;
        margin: 0 auto;
    }

    .newsletter__subtitle {
        font-size: 14px;
    }

    .trust-bar {
        padding: 25.5px 17.5px;
        background: #F7F5F0;
    }

    .trust-bar__text {
        font-weight: 600;
        margin-bottom: 10px;
    }

    .trust-bar__container {
        flex-direction: column;
        gap: 20px;
    }

    .trust-bar__item {
        flex-direction: column;
        gap: 0px;
        margin-bottom: 20px;
    }

    .category-controls {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .category-controls__left,
    .category-controls__right {
        flex-direction: column;
        gap: 10px;
    }

    h5.footer_title:after {
        content: "\f107";
        font-family: 'Line Awesome Free';
        font-weight: 900;
        position: absolute;
        right: 16px;
        transition: var(--transition);
    }

    h5.footer_title.active:after {
        transform: rotate(180deg);
    }

    footer {
        padding-top: 0;
        border: none;
    }

    h5.footer_title {
        font-weight: 500;
        font-size: 18px;
        line-height: 22px;
        text-transform: capitalize;
        color: #333 !important;
        padding: 13px 0;
        margin: 0;
        transition: var(--transition);
    }

    footer ul.list-unstyled {
        display: none;
    }

    footer .container .col-sm-3:last-child {
        display: none;
    }

    footer .container {
        padding: 0 0px;
    }

    .color-swatches-mobile {
        display: flex;
        position: unset;
        padding-left: 8px;
        margin-top: 6px;
    }

    .product-grid-section .container-custom .product-thumb .collection-image .color-swatches {
        display: none;

    }

    .product-grid-section .container-custom .product-thumb {
        margin-bottom: 0;
    }

    .product-progress-wrapper {
        margin: 0px auto 8px;
    }

    /* .header-gender-selector .gender-selector-btn:not(.active) {
        pointer-events: none;
    } */
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
    .category-hero {
        height: 250px;
    }

    .category-hero__brand {
        font-size: 28px;
        letter-spacing: 4px;
    }

    .category-hero__announcement {
        font-size: 11px;
        padding: 8px 15px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .mega-menu-content {
        padding: 15px 15px 30px;
    }

    .product-grid-section .container-custom .product-thumb .collection-image,
    .our-selection-item .collection-image {
        height: 175px;
    }
    .product-grid-section .container-custom .impression-item{
        height: 226px; /* 175px image + 51px info */
    }
}

/* ============================================================================
   UTILITY CLASSES
   ========================================================================== */
.text-center {
    text-align: center;
}

.text-uppercase {
    text-transform: uppercase;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mt-60 {
    margin-top: 60px;
}

@keyframes goldShimmer {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

/* cms/blog override */

#topic-list a {
    float: left;
    width: fit-content;
    padding: 5px 5px;
    margin-right: 10px;
    color: black;
    background-color: white;
    font-family: "Gelion", serif;
    font-size: 14px;
    border: 1px solid white;
}

#topic-list a.active {
    background-color: #e1cebd;
    color: black;
    border: 1px solid rgba(0, 0, 0, 0.3);
}

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

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
}

/* ============================================================================
   GENDER SELECTOR
   ========================================================================== */
.gender-selector-top {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    text-align: center;
}

.gender-selector-container {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 16px;
    border-radius: 4px;
}

.gender-selector-btn {
    background: none;
    border: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    padding: 0 0 6px;
}

.gender-selector-btn.active {
    opacity: 1;
}

/*.gender-selector-btn.active {
    border-bottom: 1px solid var(--Ash-Black, #181818);
}*/

.gender-selector-btn:not(.active) {
    opacity: 0.6;
}

.gender-selector-divider {
    color: #F7F5F0;
    opacity: 0.5;
}

/* ============================================================================
   STICKY HEADER
   ========================================================================== */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
}

.sticky-header.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sticky-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.sticky-header.active .container-fluid {
    background: #F7F5F0;
    overflow-y: auto;
    padding: 15px 47px 8px;
}

.sticky-header-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.sticky-header-logo {
    display: block;
}

.sticky-header-gender-selector {
    display: flex;
    align-items: center;
    gap: 24px;
}

.sticky-header-gender-selector .gender-selector-btn {
    color: #000;
}

/*.sticky-header-gender-selector button.gender-selector-btn.active {
    border-bottom: 1px solid #000000;
}*/

/* .sticky-header-gender-selector .gender-selector-btn:not(.active) {
    opacity: 0.5;
    cursor: auto;   
    pointer-events: none;
} */

.sticky-header-gender-selector .gender-selector-divider {
    color: #000;
    opacity: 0.3;
}

.sticky-header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.sticky-nav-link {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.sticky-nav-link:hover {
    opacity: 0.7;
}

.sticky-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-header-right svg {
    fill: #555555;
}

.sticky-header-right .icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

/* Initial Header (Category Landing Pages) - NO SUBCATEGORIES */
.homepage .header-row,
.page-category.homepage .header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left-initial,
.header-center-initial,
.header-right-initial {
    display: flex;
    align-items: center;
}

.header-left-initial {
    gap: 24px;
}


/* Hidden mega menu source container (for JS subcategory extraction) */
.mega-menu-source {
    display: none !important;
}

.header-gender-selector {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-gender-selector .gender-selector-btn {
    color: #F7F5F0;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.header-gender-selector .gender-selector-btn.active {
    opacity: 1;
    font-weight: 600;
}

.header-gender-selector .gender-selector-btn:not(.active) {
    opacity: 0.6;
}

.header-gender-selector .gender-selector-divider {
    color: #F7F5F0;
    opacity: 0.5;
}

.header-center-initial {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-right-initial {
    display: flex;
    gap: 12px;
    margin-left: auto;
}

.header-right-initial svg {
    fill: #F7F5F0;
}

/* Sticky Header Subcategories */
.sticky-header-subcategories {
    display: none;
}

.sticky-header.active .sticky-header-subcategories {
    display: block;
}

.sticky-subcategories-nav {
    width: 100%;
}

.sticky-subcategories-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 937px;
    margin: 0 auto;
    gap: 23px;
    list-style: none;

}

.sticky-subcategories-list li {
    line-height: 48px;
    text-align: center;
}

.sticky-subcategories-list li a {
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
}

.sticky-subcategories-list li a {
    font-family: Gelion;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: revert-layer;
    text-transform: uppercase;
    color: #000;
    padding: 0px 0 10px;
    display: inline-block;
}

.sticky-subcategories-list li a.category-active {
    border-bottom: 2px solid #181818;
}

.sticky-subcategories-list li.active a {
    border-bottom: 2px solid var(--Ash-Black, #181818);
}

.sticky-subcategory-link:hover {
    opacity: 0.7;
}

.sticky-header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Ensure sticky header subcategories are visible when active */
.sticky-header.active .sticky-header-subcategories {
    display: block !important;
}

/* Mobile Sticky Header */
@media screen and (max-width: 767px) {
    .gender-selector-top {
        top: 10px;
    }

    .gender-selector-container {
        padding: 6px 12px;
    }


    .sticky-header-row {
        flex-wrap: wrap;
    }

    .sticky-header-left {
        gap: 12px;
    }


    .sticky-subcategories-list {
        gap: 16px;
        justify-content: flex-start;
    }

    .sticky-subcategory-link {
        font-size: 11px;
    }

    .sticky-header-right {
        gap: 8px;
    }

    .mobile-mega-header {
        padding: 45px 0 0 0;
        border-bottom: 0.5px solid rgba(136, 136, 136, 0.2);
        width: 100%;
    }

    .mobile-mega-header .header-gender-selector button.gender-selector-btn {
        width: 50%;
    }

    .header-gender-selector .gender-selector-btn.active {
        color: #333;
        border-bottom: 2px solid var(--CTWLK-GOLD, #B49E6C);
        font-weight: 500;
    }

    .header-gender-selector .gender-selector-btn {
        color: #888888;
    }

    .header-gender-selector .gender-selector-btn {
        font-family: Gelion;
        font-weight: 500;
        font-size: 20px;
        line-height: 1.5;
        text-transform: uppercase;
        padding: 9px 0;
    }

    .sticky-header.active .container-fluid {
        padding: 23px 19px;
    }
}

/* Hide gender selector on mobile when sticky header is active */
@media screen and (max-width: 767px) {
    .is-sticky .gender-selector-top {
        display: none;
    }
}

/* Auto-open mega menu when sticky header activates */
.is-sticky .mega-menu-dropdown.active {
    top: 0;
}

/* Remove all hover-based menu opening */
.mega-menu-item:hover .mega-menu-dropdown {
    /* NO HOVER - removed */
}

.mega-menu-trigger:hover {
    /* NO HOVER - removed */
}

/* Ensure click-based only */
.mega-menu-trigger {
    cursor: pointer;
}

.mega-menu-level-1.parent-category>a {
    cursor: pointer;
}

/* Mobile accordion for subcategories */
@media screen and (max-width: 767px) {
    .mega-menu-level-2 {
        display: none;
    }

    .mega-menu-level-1.submenu-open .mega-menu-level-2 {
        display: block;
    }

    .sub-category section.category-hero {
        margin-top: 80px;
        height: auto;
    }
    .blog-page section.category-hero,
    .blog-page-article section.category-hero {
        margin-top: 71px;
        height: auto;
    }

    .page-product section.category-hero .category-hero__image-wrapper > div{
        background-image: none !important;
        padding:0px !important;
    }
   .sub-category section.category-hero .category-hero__image-wrapper .category-hero__title h1, 
   .page-product section.category-hero .category-hero__image-wrapper .category-hero__title h1{
        font-size: 16px;
        color: black;
    }

    .sub-category section.category-hero .category-hero__image-wrapper .category-hero__title, 
    .page-product section.category-hero .category-hero__image-wrapper .category-hero__title {
        position: relative;
        transform: none;
        height: auto;
        left: 0;
        right: 0px;
        width: 100%;
    }

    .page-product section.category-hero {
        margin-top: 70px;
        
    }

    .page-product #product-info {
        padding-top: 0px;
    }

    .header-wrap-section.is-sticky{
        display: none;
    }
}

	#content .owl-carousel .owl-next, #content .owl-carousel .owl-prev{
		background-color: transparent;
		border: none;
	}
	#content .owl-carousel .owl-next::after{
		content: '>';
		color: black;
		font-size: 24px;
		margin-top: -5px;
	}
	#content .owl-carousel .owl-prev::after{
		content: '<';
		color: black;
		font-size: 24px;
		margin-top: -5px;
	}
	#content .owl-carousel .owl-next:hover, #content .owl-carousel .owl-prev:hover{
		background-color: #d9d9d9;
	}

	#content .thumbnail-container .owl-carousel .owl-prev{
		left: 15px;
	}
	#content .thumbnail-container .owl-carousel .owl-next{
		right: 15px;
	}

	@media (max-width: 767px) {
		#content .owl-carousel .owl-next, #content .owl-carousel .owl-prev {
			display: none;
		}
	}
