/* =========================================
   SHOP SECTION
   ========================================= */

body.shop-catalog-page {
    background-color: #1C1A29 !important;
}

.shop-section {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    background: #F8F5EE;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 160px 0;
    position: relative;
    overflow: hidden;
}

.shop-container {
    width: 1440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.shop-header-area {
    position: relative;
    width: 100%;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shop-title {
    color: #050409;
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 500;
    text-align: center;
    line-height: 56px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.shop-dots {
    width: 581px;
    height: 6px;
    background-image: radial-gradient(circle, var(--accent-gold) 3px, transparent 3px);
    background-size: 26px 6px;
    background-position: center;
    background-repeat: repeat-x;
    margin-bottom: 40px;
}

/* --- Pagination Top Right --- */
.shop-pagination {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.shop-page-arrow {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.shop-page-arrow:hover {
    opacity: 0.7;
}

.shop-page-text {
    color: #050409;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: 2px;
}

/* --- Carousel Area --- */
.shop-carousel-wrap {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
}

.shop-carousel-btn {
    width: 44px;
    height: 44px;
    border: none;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.shop-carousel-btn:hover {
    transform: scale(1.1);
}

.shop-carousel-btn.left {
    margin-right: -10px;
}

.shop-carousel-btn.right {
    margin-left: -10px;
}

.shop-carousel-btn img {
    width: 16px;
    height: 16px;
}

.shop-cards-container {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 24px;
    width: 100%;
    flex: 1;
    min-width: 0;
    padding: 20px 24px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.shop-cards-container::-webkit-scrollbar { display: none; }
.shop-cards-container .shop-card { scroll-snap-align: center; }

/* --- Card --- */
.shop-card {
    width: 380px;
    height: 580px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    padding: 24px;
    box-sizing: border-box;
    position: relative;
    transition: transform 0.3s ease, z-index 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.shop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.15);
}

.shop-card-link {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    width: 100% !important;
    text-decoration: none !important;
    color: inherit !important;
}

/* Horizontal scroll carousel — uniform cards (coverflow removed) */
.shop-card.active {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.shop-card-heart {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.2s ease;
}

.shop-card-heart:hover {
    transform: scale(1.1);
}

.shop-card-image-wrap {
    width: 100%;
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.shop-card-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.shop-card:hover .shop-card-image {
    transform: scale(1.05);
}

.shop-card-title {
    color: #050409;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 60px;
}

.shop-card-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars {
    display: flex;
    gap: 2px;
}

.shop-card-star {
    width: 12px;
    height: 12px;
}

.reviews-count {
    color: #050409;
    font-family: var(--font-main);
    font-size: 12px;
}

.shop-card-status {
    color: #17B26A;
    font-family: var(--font-main);
    font-size: 12px;
    margin-bottom: auto;
}

.shop-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 16px;
}

.shop-card-price-block {
    display: flex;
    flex-direction: column;
}

.shop-card-old-price {
    color: #8C8C8C;
    font-family: var(--font-main);
    font-size: 12px;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.shop-card-price-current {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.shop-card-price {
    color: #050409;
    font-family: var(--font-main);
    font-size: 22px;
    font-weight: 600;
}

.shop-card-currency {
    color: #050409;
    font-family: var(--font-main);
    font-size: 14px;
}

.shop-card-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    height: 40px;
    color: #050409;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 20px;
    border: 1px solid #D1B88B;
    background: transparent;
    transition: background 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.shop-card-btn:hover {
    background: #D1B88B;
    color: #fff;
}

.shop-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.shop-footer-text {
    color: #050409;
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 500;
    line-height: 56px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 40px;
    max-width: 900px;
}

.shop-footer-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 76px;
    padding: 0 40px;
    color: #050409;
    font-family: var(--font-main);
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 100px;
    border: none;
    outline: none;
    background: linear-gradient(0deg, #FDC667 0%, #FDC667 100%),
                radial-gradient(ellipse 123.78% 97.90% at -0.00% -3.37%, white 1%, rgba(255, 249.69, 249.69, 0) 100%),
                linear-gradient(82deg, rgba(193, 200, 202, 0.80) 0%, rgba(214, 221, 220, 0.80) 16%, rgba(214, 239, 239, 0.80) 27%, rgba(204, 214, 213, 0.80) 37%, rgba(193, 200, 201, 0.80) 47%, rgba(190, 204, 208, 0.80) 57%, rgba(217, 241, 247, 0.80) 74%, rgba(203, 229, 234, 0.80) 89%, rgba(204, 208, 209, 0.80) 100%);
    background-blend-mode: color, overlay, normal;
    box-shadow: 0 10px 24px rgba(253, 198, 103, 0.22), 0 4px 10px rgba(0, 0, 0, 0.12),
                0px -2px 1.5px rgba(0, 0, 0, 0.40) inset, 
                0px 2px 1.5px rgba(255, 255, 255, 0.40) inset, 
                0px 6px 6px rgba(255, 255, 255, 0.25) inset, 
                0px -8px 6px rgba(149, 142, 142, 0.20) inset;
    transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}

.shop-footer-btn:hover {
    transform: scale(1.03);
    filter: brightness(1.05);
    box-shadow: 0 12px 28px rgba(253, 198, 103, 0.32), 0 6px 12px rgba(0, 0, 0, 0.16),
                0px -2px 1.5px rgba(0, 0, 0, 0.40) inset, 
                0px 2px 1.5px rgba(255, 255, 255, 0.40) inset, 
                0px 6px 6px rgba(255, 255, 255, 0.25) inset, 
                0px -8px 6px rgba(149, 142, 142, 0.20) inset;
}

/* =========================================
   PRODUCT MODAL
   ========================================= */
.product-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.product-modal {
    background-color: #F8F5EE;
    width: 90%;
    max-width: 1000px;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-height: 90vh;
    overflow-y: auto;
}

.product-modal-overlay.active .product-modal {
    transform: translateY(0) scale(1);
}

.product-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #050409;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, background 0.3s ease;
    z-index: 10;
}

.product-modal__close:hover {
    transform: rotate(90deg);
    background: #FDC667;
}

.product-modal__content-wrapper {
    display: flex;
    flex-direction: column;
}

.product-modal__top {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.product-modal__image-col {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.product-modal__image-col img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.product-modal__info-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.product-modal__title {
    color: #050409;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 16px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.product-modal__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.product-modal__price-block {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    background: rgba(253, 198, 103, 0.1);
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(253, 198, 103, 0.3);
}

.product-modal__old-price {
    color: #8C8C8C;
    font-family: var(--font-main);
    font-size: 16px;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.product-modal__current-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.product-modal__price {
    color: #050409;
    font-family: var(--font-main);
    font-size: 32px;
    font-weight: 600;
}

.product-modal__currency {
    color: #050409;
    font-size: 18px;
}

.product-modal__volume {
    font-family: var(--font-main);
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}

.product-modal__desc {
    font-family: var(--font-main);
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 24px;
    white-space: pre-wrap;
}

.product-modal__chars-title {
    font-family: var(--font-heading);
    font-size: 20px;
    color: #050409;
    margin-bottom: 12px;
    font-weight: 500;
}

.product-modal__chars {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.pm-char-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dotted #ccc;
    padding-bottom: 4px;
}

.pm-char-key {
    color: #666;
    font-family: var(--font-main);
    font-size: 15px;
}

.pm-char-val {
    color: #050409;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 500;
    text-align: right;
}

.product-modal__action-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.product-modal__action-btns button {
    width: 100%;
    font-size: 16px;
    padding: 16px 20px;
    cursor: pointer;
    border-radius: 100px;
    font-weight: 500;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.product-modal__action-btns button:hover {
    transform: scale(1.02);
    filter: brightness(1.05);
}

.product-modal__bottom {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 30px;
}

.bottom-btns {
    margin-top: 40px;
}

@media (max-width: 992px) {
    .product-modal__top {
        flex-direction: column;
        gap: 24px;
    }
    .product-modal__image-col img {
        max-height: 300px;
    }
    .product-modal__action-btns {
        flex-direction: column;
    }
}
@media (max-width: 576px) {
    .product-modal {
        padding: 24px;
    }
    .product-modal__title {
        font-size: 22px;
    }
    .product-modal__price {
        font-size: 26px;
    }
}

/* --- Product Badges (Stick-labels) --- */
.product-badge {
    position: absolute;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Outfit', 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    box-sizing: border-box;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.shop-card:hover .product-badge {
    transform: scale(1.08);
}

.product-badge-status {
    top: 20px;
    left: 20px;
}

.product-badge-discount {
    top: 20px;
    right: 20px;
}

/* Specific styling for each badge type */
.product-badge-hit {
    background: #ff6d00; /* Vibrant Orange */
    color: #ffffff;
    border: 2px solid #ffffff;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.product-badge-new {
    background: #1e5a22; /* Dark Green background */
    color: #eed699; /* Goldish text */
    border: 2px solid #2e7d32;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.product-badge-recommended {
    background: linear-gradient(135deg, #d4af37 0%, #aa7c11 100%); /* Premium Gold gradient */
    color: #3b2505; /* Dark brown text */
    border: 2px solid #ebd382;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 3px;
}

.product-badge-discount-blue {
    background: #0b1c5c; /* Royal dark blue */
    color: #ffffff;
    border: 2px solid #1a3299;
    font-size: 13px;
    letter-spacing: -0.2px;
}

.product-badge-discount-red {
    background: #7a1515; /* Rich dark red */
    color: #ffffff;
    border: 2px solid #a82222;
    font-size: 13px;
    letter-spacing: -0.2px;
}

/* Shift the heart icon down dynamically if there is a top-right badge to prevent overlapping */
.shop-card-heart.has-badge-right {
    top: 92px;
}

/* Breadcrumbs Clearance for Fixed Header */
.shop-catalog-page .svc-breadcrumb {
    background: transparent;
    padding-top: 140px;
    padding-bottom: 12px;
}

.shop-catalog-page .svc-breadcrumb .container {
    padding: 0 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.shop-catalog-page .svc-breadcrumb a,
.shop-catalog-page .svc-breadcrumb span,
.shop-catalog-page .svc-breadcrumb__current {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #8C8C8C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.shop-catalog-page .svc-breadcrumb a:hover {
    color: #D1B88B;
}

.shop-catalog-page .svc-breadcrumb__sep {
    margin: 0 6px;
    color: #CCC;
}

@media (max-width: 768px) {
    .shop-catalog-page .svc-breadcrumb {
        padding-top: 20px;
    }
    .shop-catalog-page .svc-breadcrumb .container {
        padding: 0 20px;
    }
}


/* =========================================
   CATALOG LAYOUT & FILTERS
   ========================================= */

.catalog-main {
    padding-top: 40px;
    padding-bottom: 80px;
    max-width: 1300px;
    margin: 0 auto;
}

/* Catalog Top Bar */
.catalog-top-bar {
    display: flex;
    justify-content: flex-end; /* Align sorting controls to the right since search is moved */
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.search-box-wrap {
    position: relative;
    flex: 1;
    min-width: 280px;
    max-width: 480px;
}

.search-box-wrap input {
    width: 100%;
    padding: 12px 40px 12px 44px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    font-family: var(--font-main);
    font-size: 14px;
    background: #FFF;
    color: #333;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-box-wrap input:focus {
    border-color: #D1B88B;
    box-shadow: 0 0 10px rgba(209, 184, 139, 0.15);
}

.search-box-wrap .search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #8C8C8C;
    font-size: 16px;
}

.search-box-wrap #search-clear-btn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 20px;
    color: #8C8C8C;
    cursor: pointer;
    line-height: 1;
}

.search-box-wrap #search-clear-btn:hover {
    color: #333;
}

.catalog-meta-sort {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.products-count {
    font-family: var(--font-main);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75); /* Readable light color on dark background */
    font-weight: 500;
}

.sort-select-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-select-wrap label {
    font-family: var(--font-main);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85); /* Readable light color on dark background */
    font-weight: 500;
}

.sort-select-wrap select {
    padding: 10px 24px 10px 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    font-family: var(--font-main);
    font-size: 14px;
    background: #FFF;
    color: #333;
    outline: none;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.sort-select-wrap select:focus {
    border-color: #D1B88B;
}

/* Mobile Filter Open Button */
.mobile-filter-toggle-btn {
    display: none;
    background: #050409;
    color: #FFF;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
}

.mobile-filter-toggle-btn:hover {
    background: #D1B88B;
}

/* Layout Grid */
.catalog-content-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Sidebar */
/* Sidebar & Filters Override (Figma Style) */
.catalog-sidebar {
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
}

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

.sidebar-header h3 {
    font-family: var(--font-heading), serif;
    font-size: 20px;
    font-weight: 600;
    color: #FFF8EA;
    text-transform: uppercase;
}

.sidebar-close-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #FFF8EA;
}

.sidebar-scroll-content {
    overflow-y: auto;
    flex: 1;
    padding-right: 4px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-scroll-content::-webkit-scrollbar {
    width: 4px;
}

.sidebar-scroll-content::-webkit-scrollbar-thumb {
    background-color: rgba(209, 184, 139, 0.4);
    border-radius: 2px;
}

.filter-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filter-group {
    border: none !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
}

.filter-title {
    background: #3E3B54 !important; /* Figma Dark Slate Navy */
    color: #D1B88B !important; /* Figma Gold text */
    padding: 12px 16px !important;
    font-family: var(--font-number), sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-radius: 4px 4px 0 0;
    border: 1px solid rgba(209, 184, 139, 0.15);
    margin: 0 !important;
    user-select: none;
}

.filter-title i {
    color: #D1B88B !important;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.filter-title.active i {
    transform: rotate(180deg);
}

.filter-body {
    background: #FAF8F5 !important; /* Figma Cream Background */
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-top: none;
    padding: 18px 16px !important;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-top: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-body.hidden {
    display: none !important;
}

/* Category Tree styling (Figma Style) */
.category-tree {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.category-tree-item {
    margin-bottom: 2px;
}

.category-tree-item:last-child {
    margin-bottom: 0;
}

.category-tree-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    cursor: pointer;
}

.category-tree-item:last-child .category-tree-row {
    border-bottom: none;
}

.category-tree-name {
    font-family: var(--font-main), sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #2D2B3D !important; /* Figma Dark text */
    cursor: pointer;
    transition: color 0.2s ease;
}

.category-tree-row:hover .category-tree-name,
.category-tree-name.active {
    color: #D1B88B !important;
}

.toggle-subcats {
    cursor: pointer;
    font-size: 11px !important;
    color: #2D2B3D !important;
    padding: 4px;
    transition: transform 0.3s ease;
}

.toggle-subcats.active {
    transform: rotate(90deg);
}

.subcategory-list {
    list-style: none;
    padding-left: 12px;
    margin-top: 4px;
    margin-bottom: 6px;
    border-left: 2px solid rgba(209, 184, 139, 0.4) !important;
}

.subcategory-item {
    font-family: var(--font-main), sans-serif !important;
    font-size: 13px !important;
    color: #555 !important;
    padding: 5px 0 !important;
    cursor: pointer;
    transition: color 0.2s ease;
}

.subcategory-item:hover, .subcategory-item.active {
    color: #D1B88B !important;
}

/* Checkboxes (Figma Style) */
.filter-checkbox-label {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 28px !important;
    cursor: pointer;
    font-family: var(--font-main), sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #2D2B3D !important; /* Figma dark text */
    user-select: none;
    min-height: 20px;
    line-height: 1.4;
    margin: 0 !important;
}

.filter-checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #FFF !important;
    border: 1px solid #3E3B54 !important; /* Figma dark border */
    border-radius: 4px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.filter-checkbox-label:hover input ~ .checkmark {
    border-color: #D1B88B !important;
}

.filter-checkbox-label input:checked ~ .checkmark {
    background-color: #FFF !important;
    border-color: #3E3B54 !important;
}

.checkmark:after {
    content: "\f00c" !important; /* FontAwesome check icon */
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 11px !important;
    color: #3E3B54 !important;
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translateY(-50%) !important;
    display: none;
}

.filter-checkbox-label input:checked ~ .checkmark:after {
    display: block !important;
}

.empty-filter-txt {
    font-family: var(--font-main);
    font-size: 13px;
    color: #8C8C8C;
    font-style: italic;
    padding: 4px 0;
}

/* Price Range Inputs (Figma Style) */
.price-range-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    width: 100%;
}

.price-range-inputs::before {
    content: 'з';
    font-family: var(--font-main);
    font-size: 14px;
    color: #2D2B3D;
}

.price-sep {
    font-size: 0; /* Hide dash */
}

.price-sep::after {
    content: 'до';
    font-family: var(--font-main);
    font-size: 14px;
    color: #2D2B3D;
    visibility: visible;
}

.price-range-inputs input {
    width: 60px;
    height: 34px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    font-family: var(--font-main);
    font-size: 13px;
    text-align: center;
    background: #FFF;
    color: #2D2B3D;
    outline: none;
    -moz-appearance: textfield;
}

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

.price-ok-btn {
    background: #1C1A29; /* Figma dark slate */
    color: #FFF;
    border: 1px solid #1C1A29;
    width: 40px;
    height: 34px;
    border-radius: 5px;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-ok-btn:hover {
    background: #D1B88B;
    border-color: #D1B88B;
    color: #1C1A29;
}

/* Custom Double Price Slider (Figma Teal Theme) */
.price-slider-track-wrap {
    position: relative;
    height: 20px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    width: 100%;
}

.price-slider-track-wrap::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    z-index: 1;
}

.slider-track {
    position: absolute;
    height: 4px;
    background: #1e5a22; /* Figma Dark Green Slider */
    border-radius: 2px;
    z-index: 2;
}

.range-slider {
    position: absolute;
    width: 100%;
    pointer-events: none;
    -webkit-appearance: none;
    background: none;
    outline: none;
    height: 0;
    margin: 0;
    z-index: 5;
}

.range-slider::-webkit-slider-thumb {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #D1B88B; /* Figma Gold handle */
    border: 2px solid #1C1A29;
    pointer-events: auto;
    -webkit-appearance: none;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    transition: transform 0.1s ease;
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.range-slider::-moz-range-thumb {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #D1B88B;
    border: 2px solid #1C1A29;
    pointer-events: auto;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

/* Reset Filter button */
.filter-reset-btn {
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    border: 1px solid #D1B88B;
    background: transparent;
    color: #D1B88B;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.filter-reset-btn:hover {
    background: #D1B88B;
    color: #1C1A29;
}


/* Products Grid Container */
.catalog-products-wrapper {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.catalog-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

/* Redefine card properties inside the catalog to make them fit grid nicely */
.catalog-products-grid .shop-card {
    width: 100%;
    height: 480px;
    padding: 16px;
    margin: 0;
}

.catalog-products-grid .shop-card-image-wrap {
    height: 200px;
}

/* Popular Categories bar updates */
/* Popular Categories & Centered Search bar (Figma Style) */
.popular-cats-section {
    padding: 60px 0 40px 0;
    width: 100%;
    background: #FAF8F5; /* Light warm cream background */
}

/* Centered container alignment matching the header */
.shop-catalog-page .popular-cats-section .container {
    padding-left: max(40px, calc((100vw - 1360px) / 2));
    padding-right: max(40px, calc((100vw - 1360px) / 2));
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Centered Search Wrapper */
.shop-search-wrap-centered {
    position: relative;
    width: 100%;
    max-width: 658px; /* Figma specification */
    margin: 0 auto 50px auto;
}

.shop-search-wrap-centered input {
    width: 100%;
    padding: 16px 20px 16px 52px;
    font-family: var(--font-main), sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #050409;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    outline: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.shop-search-wrap-centered input:focus {
    border-color: #D1B88B;
    box-shadow: 0 4px 20px rgba(209, 184, 139, 0.15);
}

.search-icon-centered {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: #8C8C8C;
    font-size: 16px;
    pointer-events: none;
}

/* Clear button inside centered search input */
.shop-search-wrap-centered #search-clear-btn {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 20px;
    color: #8C8C8C;
    cursor: pointer;
    padding: 4px;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.shop-search-wrap-centered #search-clear-btn:hover {
    color: #3E3B54;
}

/* Centered Title */
.popular-cats-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.05em;
    color: #050409;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 12px 0;
}

/* Dots Divider */
.shop-dots-centered {
    width: 320px;
    height: 6px;
    background-image: radial-gradient(circle, #D1B88B 3px, transparent 3px);
    background-size: 20px 6px;
    background-position: center;
    background-repeat: repeat-x;
    margin: 0 auto 40px auto;
}

/* Categories List wrapper */
.popular-cats-wrapper {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 16px;
    width: 100%;
}

.popular-cat-btn {
    flex-shrink: 1; /* Allow slight shrink to fit completely on small desktop */
    white-space: nowrap;
    padding: 14px 28px;
    border: 1px solid rgba(209, 184, 139, 0.15);
    border-radius: 6px; /* Rectangular shape with 6px radius */
    background: #FFFFFF; /* Standing out on cream background */
    color: #3E3B54;
    font-family: var(--font-main), sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

@media (max-width: 1400px) {
    .popular-cats-wrapper {
        gap: 12px;
    }
    .popular-cat-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 1100px) {
    .popular-cats-wrapper {
        gap: 8px;
    }
    .popular-cat-btn {
        padding: 10px 14px;
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    .popular-cats-wrapper {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none; /* Hide scrollbar Firefox */
        -ms-overflow-style: none; /* Hide scrollbar IE/Edge */
        padding: 10px 20px;
        box-sizing: border-box;
    }
    .popular-cats-wrapper::-webkit-scrollbar {
        display: none; /* Hide scrollbar Chrome/Safari */
    }
    .popular-cat-btn {
        flex-shrink: 0; /* Keep them touch friendly on mobile/tablet */
        padding: 12px 20px;
        font-size: 14px;
    }
}

.popular-cat-btn:hover {
    background: #D1B88B;
    color: #FFFFFF;
    border-color: #D1B88B;
    box-shadow: 0 6px 16px rgba(209, 184, 139, 0.25);
}

.popular-cat-btn.active {
    background: #3E3B54; /* Dark slate active background */
    color: #FFF8EA; /* Warm cream text */
    border-color: #3E3B54;
    box-shadow: 0 6px 16px rgba(62, 59, 84, 0.25);
}

/* Loader */
.catalog-loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
    width: 100%;
}

.loader {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(209, 184, 139, 0.3);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.loader::after {
    content: '';  
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-bottom-color: #D1B88B;
}

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

/* Empty State */
.catalog-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

.catalog-empty-state.hidden {
    display: none;
}

.empty-icon {
    font-size: 64px;
    color: rgba(209, 184, 139, 0.5);
    margin-bottom: 24px;
}

.catalog-empty-state h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: #050409;
    margin-bottom: 12px;
}

.catalog-empty-state p {
    font-family: var(--font-main);
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.catalog-empty-state .btn-primary {
    background: #050409;
    color: #FFF;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.catalog-empty-state .btn-primary:hover {
    background: #D1B88B;
}

.hidden {
    display: none !important;
}

/* =========================================
   RESPONSIVENESS FOR CATALOG
   ========================================= */

/* Desktop layout (min-width: 993px) */
@media (min-width: 993px) {
    .shop-catalog-page .catalog-content-layout {
        flex-direction: row;
        gap: 40px;
        align-items: flex-start;
    }

    .shop-catalog-page .catalog-sidebar {
        width: 300px !important;
        flex-shrink: 0 !important;
        position: sticky !important;
        top: 130px !important; /* Clears fixed header on scroll */
        max-height: calc(100vh - 160px) !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        box-shadow: none !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .shop-catalog-page .sidebar-header {
        justify-content: center;
        margin-bottom: 30px;
        border: none;
    }

    .shop-catalog-page .sidebar-header h3 {
        font-family: var(--font-heading), serif !important;
        font-size: 26px !important;
        font-weight: 500 !important;
        color: #FFF8EA !important;
        text-transform: uppercase;
        position: relative;
        padding-bottom: 18px;
        letter-spacing: 2px;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .shop-catalog-page .sidebar-header h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        width: 120px;
        height: 6px;
        background-image: radial-gradient(circle, var(--accent-gold, #D1B88B) 3px, transparent 3px);
        background-size: 16px 6px;
        background-position: center;
        background-repeat: repeat-x;
    }

    .shop-catalog-page .sidebar-close-btn {
        display: none !important;
    }

    .shop-catalog-page .sidebar-scroll-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        overflow-y: auto !important;
        padding-right: 6px !important;
    }

    .shop-catalog-page .filter-column {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .shop-catalog-page .filter-reset-btn {
        width: 100% !important;
        padding: 12px 0 !important;
        background: transparent;
        border: 1px solid #D1B88B;
        color: #D1B88B;
        border-radius: 30px;
        font-family: var(--font-main);
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 10px;
    }

    .shop-catalog-page .filter-reset-btn:hover {
        background: #D1B88B;
        color: #1C1A29;
    }
}

@media (max-width: 992px) {
    .shop-catalog-page .catalog-main {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 16px !important;
    }

    .shop-catalog-page .catalog-content-layout {
        width: 100% !important;
        max-width: 100% !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .shop-catalog-page .catalog-products-wrapper {
        width: 100% !important;
        max-width: 100% !important;
    }

    .shop-catalog-page .catalog-products-grid {
        width: 100% !important;
        max-width: 100% !important;
    }

    .mobile-filter-toggle-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 100% !important;
        height: 48px !important;
        background: #FDC667 !important; /* Solid brand gold */
        color: #1C1A29 !important; /* Dark text for contrast */
        border: none !important;
        border-radius: 8px !important;
        font-size: 15px !important;
        font-family: var(--font-main);
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        cursor: pointer;
        padding: 0 !important; /* Prevent text wrap/overflow */
        box-shadow: 0 4px 12px rgba(253, 198, 103, 0.22) !important;
        transition: transform 0.2s ease, opacity 0.2s ease !important;
        gap: 8px;
        box-sizing: border-box;
        order: 1 !important;
    }

    .mobile-filter-toggle-btn i {
        display: inline-block !important;
        color: #1C1A29 !important;
        font-size: 14px !important;
        margin: 0 !important;
    }

    .mobile-filter-toggle-btn span {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        color: #1C1A29 !important;
        font-weight: 600 !important;
        font-size: 15px !important;
        text-transform: uppercase !important;
    }

    .mobile-filter-toggle-btn:hover {
        opacity: 0.9 !important;
        transform: scale(1.01);
    }
    
    .sidebar-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(5, 4, 9, 0.6);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .sidebar-backdrop.active {
        opacity: 1;
        visibility: visible;
    }

    .catalog-sidebar {
        position: fixed !important;
        top: 0 !important;
        left: -320px !important; /* Hidden on the left (reverted back to left) */
        right: auto !important;
        width: 300px !important;
        height: 100vh !important;
        max-height: 100vh !important;
        z-index: 10000 !important;
        background: #FFFFFF !important; /* Pure white background */
        box-shadow: 10px 0 30px rgba(0,0,0,0.15) !important; /* Shadow on the right */
        transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 24px !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .catalog-sidebar.active {
        left: 0 !important;
        right: auto !important;
    }
    
    .sidebar-header {
        border-bottom: 1px solid #E5E7EB !important;
        padding-bottom: 14px !important;
        margin-bottom: 20px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .sidebar-header h3 {
        color: #1F2937 !important; /* Dark text matching the screenshot */
        font-family: var(--font-main), sans-serif !important;
        font-size: 18px !important;
        font-weight: 600 !important;
        text-transform: none !important;
        letter-spacing: 0 !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        margin: 0 !important;
    }
    
    .sidebar-header h3::after {
        display: none !important; /* Hide figma star underline line on mobile */
    }
    
    .sidebar-close-btn {
        display: block !important;
        color: #4B5563 !important;
        font-size: 20px !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1 !important;
    }
    
    .sidebar-close-btn:hover {
        color: #1F2937 !important;
    }
    
    .sidebar-scroll-content {
        overflow-y: auto !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important; /* tighter gap on mobile */
        padding-right: 4px !important;
    }

    .filter-column {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }

    .filter-title {
        background: #F3F4F6 !important; /* Light grey button style */
        color: #1F2937 !important; /* Dark text */
        border: none !important;
        border-radius: 8px !important; /* Rounded corners */
        padding: 12px 16px !important;
        font-family: var(--font-main), sans-serif !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        text-transform: none !important; /* Normal case */
        letter-spacing: 0 !important;
        margin-bottom: 4px !important;
    }

    .filter-title i {
        color: #4B5563 !important; /* Chevron color */
    }

    .filter-title.active i {
        transform: none !important; /* Rely on JS swapped class name */
    }

    .filter-body {
        background: #FFFFFF !important; /* White body to blend with background */
        border: none !important;
        padding: 8px 12px 16px 12px !important;
        margin-bottom: 8px !important;
    }
    
    .filter-reset-btn {
        width: 100% !important;
        padding: 12px 0 !important;
        background: #1C1A29 !important;
        color: #FFF !important;
        border: none !important;
        border-radius: 8px !important;
        font-family: var(--font-main);
        font-weight: 500;
        cursor: pointer;
        margin-top: 10px;
    }

    .filter-reset-btn:hover {
        background: #D1B88B !important;
        color: #1C1A29 !important;
    }

    .catalog-top-bar {
        padding: 12px 16px !important;
        display: block !important;
        margin-bottom: 20px !important;
    }
    
    .catalog-meta-sort {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
    }
    
    .products-count {
        order: 3 !important;
        text-align: center !important;
        margin-top: 4px !important;
        font-size: 13px !important;
        color: rgba(255, 255, 255, 0.6) !important;
        display: block !important;
    }
    
    .sort-select-wrap {
        order: 2 !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .sort-select-wrap label {
        display: none !important;
    }

    .sort-select-wrap select {
        width: 100% !important;
        height: 44px !important;
        padding: 0 12px !important;
        background: #FFFFFF !important; /* White background */
        color: #1F2937 !important; /* Dark text */
        border: 1px solid #E5E7EB !important; /* Light border */
        border-radius: 8px !important;
        font-size: 13px !important;
        font-family: var(--font-main);
        cursor: pointer;
        outline: none;
        appearance: none !important;
        -webkit-appearance: none !important;
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%231F2937' viewBox='0 0 24 24'><path d='M7 10l5 5 5-5z'/></svg>") !important;
        background-repeat: no-repeat !important;
        background-position: right 12px center !important;
        padding-right: 28px !important;
    }

    .catalog-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
    
    .catalog-products-grid .shop-card {
        height: 400px;
    }
    
    .catalog-products-grid .shop-card-image-wrap {
        height: 160px;
    }
}

@media (max-width: 576px) {
    .catalog-top-bar {
        padding: 12px 16px !important;
    }
    
    .catalog-products-grid {
        grid-template-columns: 1fr !important;
    }
    
    .catalog-products-grid .shop-card {
        max-width: 360px !important;
        margin: 0 auto !important;
        height: 380px !important;
    }
    
    .catalog-products-grid .shop-card-image-wrap {
        height: 140px !important;
    }
}

/* =========================================
   SHOP HERO BANNER (FIGMA STYLE)
   ========================================= */
.shop-hero-banner {
    position: relative;
    width: 100%;
    height: 820px; /* Figma: height 820px */
    display: block;
    padding: 0;
    overflow: hidden;
    background: #1C1A29;
}

.shop-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.shop-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: right 65%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-top: 140px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
    z-index: 1;
}

.shop-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Dots styling */
.shop-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.shop-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.shop-slider-dot.active {
    background: #FDC667;
    transform: scale(1.2);
}


.shop-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(28, 26, 41, 0.85) 0%, rgba(28, 26, 41, 0.35) 100%);
    z-index: 1;
}

.shop-banner-container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Figma: justify-content: space-between */
    align-items: flex-start; /* Aligns breadcrumbs and text content perfectly along the same left edge */
    padding-bottom: 40px; /* Figma: padding-bottom: 40px */
    padding-top: 20px;
    max-width: 100%;
    box-sizing: border-box;
    padding-left: max(40px, calc((100vw - 1360px) / 2)); /* Matched with header padding for exact alignment of logo and text */
    padding-right: max(40px, calc((100vw - 1360px) / 2)); /* Matched with header padding for exact alignment of actions and text */
}

.shop-banner-breadcrumb {
    margin-bottom: 30px;
}

.shop-banner-breadcrumb a,
.shop-banner-breadcrumb span {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.shop-banner-breadcrumb a:hover {
    color: #D1B88B;
}

.shop-banner-breadcrumb .breadcrumb-sep {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.35);
}

.shop-banner-breadcrumb .breadcrumb-current {
    color: #FFF;
}

.shop-banner-content {
    max-width: 658px; /* Figma: width 658px */
    text-align: left;
}

.shop-banner-title {
    font-family: 'Playfair Display', serif; /* Figma: font-family Playfair Display */
    font-size: clamp(28px, 3.125vw, 60px); /* Figma: font-size 60px at 1920px */
    font-weight: 500; /* Figma: font-weight 500 */
    line-height: 1.4; /* Figma: line-height 140% */
    letter-spacing: -0.01em; /* Figma: letter-spacing -1% */
    color: #FFF;
    text-transform: uppercase; /* Figma: text-transform: uppercase */
    margin-bottom: 20px; /* Figma: gap 20px */
}

.shop-banner-subtitle {
    font-family: var(--font-main), sans-serif;
    font-size: clamp(14px, 1.1vw, 18px);
    font-weight: 400;
    line-height: 1.5;
    color: #FFF8EA; /* Figma: background #FFF8EA */
    max-width: 658px; /* Figma: width 658px */
}

/* =========================================
   BENEFITS SECTION OVERRIDES FOR CATALOG
   ========================================= */
.benefits-section-new {
    background: #1C1A29 !important;
    padding: 60px 0 !important;
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    overflow: hidden;
}

.shop-catalog-page .benefits-title-new {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    color: #D1B88B !important;
    text-align: center !important;
    letter-spacing: 1px !important;
    margin-bottom: 20px !important;
}

.shop-catalog-page .gold-dots-divider {
    width: 100% !important;
    max-width: 400px !important;
    height: 4px !important;
    background-image: radial-gradient(circle, #D1B88B 2px, transparent 3px) !important;
    background-size: 16px 100% !important;
    background-repeat: repeat-x !important;
    margin: 0 auto 40px auto !important;
}

.benefits-grid-new {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 24px 48px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.benefit-item-new {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    text-align: left !important;
    gap: 12px !important;
    min-width: auto !important;
    max-width: none !important;
}

.benefit-item-new i.benefit-icon-fallback {
    font-size: 20px !important;
    color: #D1B88B !important;
    margin-bottom: 0 !important;
    width: 24px !important;
    height: 24px !important;
    display: inline-flex;
    align-items: center !important;
    justify-content: center !important;
}

.benefit-item-new .benefit-icon-img {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain !important;
    display: inline-block !important;
}

.shop-catalog-page .benefit-item-new span {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    color: #FFF !important;
}

/* =========================================
   RESPONSIVE OVERRIDES FOR NEW BLOCKS
   ========================================= */
@media (max-width: 992px) {
    .shop-hero-banner {
        height: 460px;
        padding-top: 130px;
    }

    .shop-banner-container {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 40px;
    }

    .shop-banner-title {
        font-size: 36px;
    }

    .shop-banner-subtitle {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .shop-hero-banner {
        height: 380px;
        padding-top: 130px;
    }

    .shop-banner-title {
        font-size: 28px;
    }

    .shop-banner-subtitle {
        font-size: 14px;
    }
}



