/* RESET & FOUNDATION */
@font-face {
    font-family: 'KENAO';
    src: url('fonts/Kenao.woff2') format('woff2'),
        url('fonts/Kenao.woff') format('woff'),
        url('fonts/Kenao.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

#shared-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--color-white);
}

body {
    padding-top: 134px !important; /* Header height */
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #000000;
    --color-white: #ffffff;
    --color-orange: #f26f21;
    /* Rich orange from screenshot */
    --color-whatsapp: #25D366;
    --color-text-dark: #222222;
    --font-serif: 'KENAO';
    /* Strict KENAO usage, no fallback */
    --font-sans: 'Manrope', -apple-system, sans-serif;

    --padding-x: 60px;
    /* Standard section padding, tighter bounds */
    --padding-nav: 5%;
    /* Wider fluid padding specifically for top bar, navbar, and hero */
}

body {
    font-family: var(--font-sans);
    color: var(--color-text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* SCROLL REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* TOP INFO BAR */
.top-bar {
    background-color: var(--color-black);
    color: var(--color-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px var(--padding-nav);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 16px;
}

.contact-link {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-link:hover {
    opacity: 0.8;
}

/* MAIN NAVBAR */
.navbar {
    background-color: var(--color-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding-nav);
    height: 90px;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-left {
    flex: 1;
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    /* Adjust if needed to fit navbar perfectly */
    width: auto;
    object-fit: contain;
}

.nav-center {
    display: flex;
    gap: 46px;
    flex: 2;
    justify-content: center;
}

.nav-center a {
    text-decoration: none;
    color: var(--color-black);
    font-size: 18px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-center a:hover {
    color: var(--color-orange);
}

.nav-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}

.nav-icon-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--color-black);
    font-size: 18px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-icon-link span {
    margin-top: 2px;
}

.nav-icon-link:hover {
    color: var(--color-orange);
}

/* HERO SECTION */
.hero-section {
    position: relative;
    width: 100%;
    /* Remaining viewport height minus navbar (90) and topbar (~40) */
    height: calc(100vh - 130px);
    min-height: 700px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero1.png');
    background-size: cover;
    background-position: center;
}

/* Base overlay for subtle darkening */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
}

/* Gradient overlay at the bottom for text readability, mimicking screenshot's moody vibe */
.hero-bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
}

/* FLOATING ACTION BUTTONS */
.floating-buttons {
    position: fixed;
    right: 32px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.fab {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.fab:hover {
    transform: translateY(-3px);
}

.fab-whatsapp {
    background-color: var(--color-whatsapp);
}

.fab-call {
    background-color: var(--color-orange);
}

/* SLIDER ARROWS */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.1);
    /* Very subtle or none */
    border: none;
    color: var(--color-white);
    cursor: pointer;
    z-index: 10;
    padding: 16px;
    opacity: 0.7;
    transition: opacity 0.3s ease, background 0.3s ease;
}

.slider-arrow:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.3);
}

.arrow-left {
    left: 20px;
}

.arrow-right {
    right: 20px;
}

/* BOTTOM CONTENT */
.hero-bottom-content {
    position: absolute;
    bottom: 60px;
    left: var(--padding-nav);
    right: var(--padding-nav);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 15;
}

.hero-text-block {
    display: flex;
    align-items: flex-end;
    max-width: 1300px;
    position: relative;
}

.hero-heading {
    font-family: var(--font-serif);
    font-size: 85px;
    line-height: 1.05;
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: -2px;
    margin-right: 48px;
    min-width: 380px;
    margin-bottom: -15px;
    /* Visual baseline alignment */
}

.hero-divider {
    width: 3px;
    height: 60px;
    /* Reduced slightly to span second line */
    background-color: var(--color-orange);
    margin-right: 48px;
    margin-bottom: 25px;
    /* Lift from the flex-end bottom edge to align perfectly with 'Every Home' */
}

.hero-text-and-button {
    display: flex;
    align-items: center;
    gap: 48px;
    height: 60px;
    margin-bottom: 10px; /* Reduced from 25px to pull down */
}

.hero-paragraph {
    color: var(--color-white);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
    max-width: 480px;
    letter-spacing: 0.2px;
}

.btn-primary {
    background-color: var(--color-orange);
    color: var(--color-white);
    padding: 10px 12px;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.btn-primary:hover {
    background-color: #d85c15;
}

/* SLIDE INDICATOR */
.slide-indicator {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 400;
    height: 60px;
    margin-bottom: 25px;
    /* Locks exactly to same horizontal plane as divider and button block */
}

.slide-line {
    width: 48px;
    height: 1px;
    background-color: var(--color-orange);
}

/* MODAL / PLACEHOLDER RESET (Just in case) */
a {
    outline: none;
}

/* RESPONSIVE ADAPTATIONS */
@media (max-width: 1400px) {
    .hero-heading {
        font-size: 72px;
        min-width: 320px;
        margin-right: 32px;
    }

    .hero-divider {
        margin-right: 32px;
    }

    .hero-text-and-button {
        gap: 32px;
    }
}

@media (max-width: 1200px) {
    .nav-center {
        gap: 24px;
    }

    .hero-heading {
        font-size: 60px;
        min-width: unset;
    }

    .hero-text-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .hero-divider {
        display: none;
        /* Hide divider on smaller screens */
    }

    .hero-text-and-button {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .hero-bottom-content {
        align-items: flex-end;
    }
}

@media (max-width: 992px) {
    .navbar {
        height: auto;
        padding: 24px var(--padding-x);
        flex-wrap: wrap;
    }

    .nav-center {
        order: 3;
        width: 100%;
        margin-top: 24px;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .nav-right {
        order: 2;
    }

    .hero-bottom-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .slide-indicator {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .hero-heading {
        font-size: 48px;
    }

    .arrow-left {
        left: 10px;
    }

    .arrow-right {
        right: 10px;
    }

    .nav-center {
        display: none;
        /* Hamburger would go here */
    }
}

/* ==========================================================================
   FEATURED COLLECTIONS SECTION
   ========================================================================== */
.featured-collections {
    background-color: #ffffff;
    padding: 100px var(--padding-x) 120px;
    width: 100%;
}

.collections-header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 70px auto;
}

.collections-title {
    font-family: var(--font-serif);
    font-size: 68px;
    font-weight: 400;
    color: var(--color-black);
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.collections-desc {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
    /* Dark grey */
    font-weight: 400;
    margin: 0 auto;
    max-width: 750px;
}

.collections-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: none;
    /* Allows container to hit 60px padding */
    margin: 0 auto;
    position: relative;
}

.collection-arrow {
    background: transparent;
    border: none;
    color: var(--color-black);
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    opacity: 0.7;
    /* Vertically center relative to the image part of the card */
    max-height: 500px;
    /* Approximate image height */
    position: relative;
    top: -50px;
    /* Adjusting up past the title/link area */
}

.collection-arrow:hover {
    opacity: 1;
}

.cards-viewport {
    overflow: hidden;
    flex: 1;
    margin: 0 -15px;
    /* Offset card padding for edge alignment */
    padding: 0 15px;
}

.cards-row {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.category-card {
    display: flex;
    flex-direction: column;
    flex: 0 0 calc((100% - 60px) / 3);
    /* 3 cards visible at a time */
    min-width: 0;
}

.card-img-wrapper {
    width: 100%;
    aspect-ratio: 4 / 5;
    /* Matches the portrait rectangular block from screenshot */
    overflow: hidden;
    margin-bottom: 24px;
    background-color: #e0e0e0;
    /* Placeholder color before image loads */
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cover without distortion */
    display: block;
}

.card-title {
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 400;
    color: var(--color-black);
    letter-spacing: -1px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.category-card:hover .card-title {
    color: var(--color-orange);
}

.card-img-wrapper {
    transition: transform 0.3s ease;
}

.category-card:hover .card-img-wrapper {
    transform: translateY(-5px);
}

.card-img {
    transition: transform 0.5s ease;
}

.category-card:hover .card-img {
    transform: scale(1.05);
}

.card-link {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-orange);
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.card-link:hover {
    opacity: 0.8;
}

/* Responsive adjustments for Featured Collections */
@media (max-width: 1200px) {
    .collections-title {
        font-size: 54px;
    }

    .card-title {
        font-size: 32px;
    }

    .collections-container {
        gap: 20px;
    }

    .cards-row {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .cards-row {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Hide the 3rd card on tablet if sticking to a grid to avoid orphan, or just let it wrap */
    .category-card:last-child {
        display: none;
    }

    .collections-title {
        font-size: 48px;
    }

    .card-title {
        font-size: 28px;
    }

    .collection-arrow {
        top: -60px;
    }
}

@media (max-width: 768px) {
    .featured-collections {
        padding: 40px 0 60px 20px; /* 20px left to show partial card peek */
    }

    .collections-container {
        flex-direction: column;
        align-items: center; /* Center header content */
    }

    .cards-viewport {
        overflow: visible; /* Allow seeing next cards */
        width: 100%;
    }

    .cards-row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 20px;
        padding-right: 20px;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Hide scrollbar Firefox */
    }

    .cards-row::-webkit-scrollbar {
        display: none; /* Hide scrollbar Chrome/Safari */
    }

    .category-card {
        min-width: 280px;
        flex: 0 0 280px;
        scroll-snap-align: start;
    }

    .category-card:last-child {
        display: flex;
    }

    .collection-arrow {
        display: none;
    }

    .collections-title {
        font-size: 42px;
        margin-bottom: 12px;
        padding-right: 0;
        text-align: center;
        font-family: var(--font-serif);
    }

    .collections-paragraph {
        text-align: center;
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 40px;
        padding: 0 20px;
        opacity: 0.8;
    }

    .category-card .card-img-wrapper {
        height: 480px; /* Tall portrait aspect ratio */
        width: 100%;
    }

    .card-title {
        font-size: 28px;
        text-align: left;
        margin-top: 15px;
    }

    .card-link {
        text-align: left;
        display: block;
    }
}

/* ==========================================================================
   CATEGORY BANNER SECTION
   ========================================================================== */
.category-banner-section {
    background-color: #ffffff;
    padding: 0 var(--padding-x) 60px;
    width: 100%;
}

.category-banner-container {
    max-width: none;
    /* Fluid width down to padding */
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
    gap: 40px;
    /* Space between arrows and banner */
}

.banner-arrow {
    background: transparent;
    border: none;
    color: var(--color-black);
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    opacity: 0.8;
}

.banner-arrow:hover {
    opacity: 1;
}

.category-banner {
    flex: 1;
    position: relative;
    background-color: #e0e0e0;
    overflow: hidden;
    aspect-ratio: 21 / 7;
    /* Wide landscape ratio */
    display: flex;
    align-items: flex-end;
}

.sofas-slider-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.banner-img.slide-active {
    opacity: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    /* dark overlay concentrated from the left side and lower portion */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 40%, transparent 100%),
        linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 40%);
}

.banner-content-inner {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    padding: 0 0 50px 60px;
    /* Precise spacing from left and bottom */
    width: 100%;
}

.banner-heading {
    font-family: var(--font-serif);
    font-size: 72px;
    /* Large elegant serif font */
    line-height: 1.05;
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: -1px;
    margin-right: 0;
    /* Clear inherited margins */
}

.banner-divider {
    width: 2px;
    height: 60px;
    /* Thin vertical orange divider line */
    background-color: var(--color-orange);
    margin: 0 40px;
}

.banner-subtitle {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    letter-spacing: 0.3px;
    margin-right: 40px;
}

.banner-btn {
    padding: 12px 32px;
    font-size: 16px;
    border-radius: 0;
    /* Keep it perfectly rectangular */
}

/* Responsive adjustments for Category Banner */
@media (max-width: 1200px) {
    .category-banner-container {
        gap: 20px;
    }

    .banner-content-inner {
        padding: 0 0 40px 40px;
    }

    .banner-heading {
        font-size: 56px;
    }

    .banner-divider {
        margin: 0 30px;
        height: 50px;
    }

    .banner-subtitle {
        font-size: 16px;
        margin-right: 30px;
    }

    .category-banner {
        aspect-ratio: 21 / 8;
    }
}

@media (max-width: 992px) {
    .category-banner {
        aspect-ratio: 16 / 7;
    }

    .banner-content-inner {
        padding: 0 0 30px 30px;
        flex-wrap: wrap;
    }

    .banner-heading {
        font-size: 48px;
        width: 100%;
        margin-bottom: 20px;
    }

    .banner-divider {
        display: none;
        /* Hide divider when wrapping */
    }

    .banner-subtitle {
        margin-right: 20px;
        margin-bottom: 10px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .category-banner-section {
        padding: 20px 16px 40px; /* White space around the banner */
        background-color: #fff;
    }

    .category-banner-container {
        gap: 0;
    }

    .banner-arrow {
        display: none;
    }

    .category-banner {
        aspect-ratio: 4 / 5;   /* Tall portrait like reference */
        border-radius: 10px;   /* Rounded corners as in image */
        overflow: hidden;
    }

    .banner-overlay {
        /* Subtle gradient only at bottom for text legibility */
        background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 40%, transparent 65%);
    }

    .banner-content-inner {
        padding: 0 24px 32px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end; /* Push content to bottom */
        text-align: left;
    }

    .banner-heading {
        font-size: 42px;
        line-height: 1.05;
        margin-bottom: 10px;
        font-family: var(--font-serif);
        color: #fff;
    }

    .banner-divider {
        display: none;
    }

    .banner-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
        margin-right: 0;
        white-space: normal;
        color: rgba(255,255,255,0.9);
        font-weight: 400;
    }

    .banner-btn {
        width: auto;       /* Not full-width — compact button */
        min-width: 160px;
        text-align: center;
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* ==========================================================================
   CATEGORY GRID SHOWCASE SECTION
   ========================================================================== */
.category-grid-section {
    background-color: #ffffff;
    /* Very light grey */
    padding: 40px 152px 60px;
    width: 100%;
}

.category-grid-header {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto 60px auto;
}

.grid-heading {
    font-family: var(--font-serif);
    font-size: 84px;
    font-weight: 400;
    color: var(--color-black);
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.grid-paragraph {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
    font-weight: 400;
    margin: 0 auto;
    max-width: 900px;
}

.category-grid-container {
    max-width: none;
    /* Fluid width down to padding */
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    /* Equal spacing between columns and rows */
    column-gap: 30px;
    row-gap: 40px;
    /* Tile-to-label needs normal spacing, row-to-row might need a bit more */
}

.grid-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    cursor: pointer;
}

.grid-tile {
    width: 100%;
    aspect-ratio: 1;
    /* Square */
    background-color: #d3d3d3;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 24px;
    /* Ensure images have a little breathing room from edges */
    transition: transform 0.3s ease;
}

.grid-card:hover .grid-tile {
    transform: translateY(-8px);
}

.grid-img {
    object-fit: contain;
    width: 125%;
    height: 125%;
    transition: transform 0.5s ease;
}

.grid-card:hover .grid-img {
    transform: scale(1.1);
}

/* Product Specific Tweaks Removed for Unified Scaling */

.grid-label {
    font-family: var(--font-sans);
    font-size: 28px;
    font-weight: 400;
    color: var(--color-black);
    text-align: left;
    transition: color 0.3s ease;
}

.grid-card:hover .grid-label {
    color: var(--color-orange);
}

/* Responsive adjustments for Category Grid */
@media (max-width: 1200px) {
    .grid-heading {
        font-size: 54px;
    }

    .category-grid-section {
        padding-left: 132px;
        padding-right: 132px;
    }

    .category-grid-container {
        gap: 20px;
        row-gap: 30px;
    }
}

@media (max-width: 992px) {
    .category-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-heading {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .category-grid-section {
        padding: 30px var(--padding-x) 20px; /* Reduced bottom padding from 80px to 20px */
    }

    .grid-heading {
        font-size: 38px;
    }

    .category-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        row-gap: 32px; /* Increased to separate labels from next row tiles */
    }

    .grid-tile {
        background-color: transparent; /* Remove the grey background as requested */
        padding: 0; /* Flush look */
        margin-bottom: 12px;
    }

    .grid-label {
        font-size: 16px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .category-grid-container {
        grid-template-columns: repeat(2, 1fr); /* Keep 2 columns even on small mobile */
        gap: 12px;
    }
}

/* ==========================================================================
   BEDROOM PROMO BANNER SECTION
   ========================================================================== */
.bedroom-promo-section {
    background-color: #ffffff;
    padding: 0 var(--padding-x) 40px;
    width: 100%;
}

.bedroom-banner-container {
    max-width: none;
    /* Fluid width down to padding */
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
    gap: 40px;
    /* Space between arrows and banner */
}

.bedroom-banner {
    flex: 1;
    position: relative;
    background-color: #e0e0e0;
    overflow: hidden;
    aspect-ratio: 2 / 1;
    /* Wide landscape block, adjustable if needed */
    display: flex;
    align-items: flex-end;
    /* Align content to bottom */
}

.bedroom-banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.bedroom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    /* dark left/bottom overlay */
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 30%, transparent 100%),
        linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 40%, transparent 100%);
}

.bedroom-content-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    /* Center elements vertically */
    padding: 0 60px 50px 0;
    width: 100%;
}

.play-button {
    width: 140px;
    height: 140px;
    background-color: rgba(242, 111, 33, 0.7);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 60px;
    margin-right: 40px;
    position: relative;
    bottom: -10px;
    z-index: 4;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.05);
}

.play-icon {
    width: 40px;
    height: 40px;
    color: #1a1a1a;
    /* Dark play triangle */
    margin-left: 8px;
    /* Optically center triangle */
}

.bedroom-text-block {
    position: relative;
    z-index: 5;
    /* Sit on top of play button shadow/edge */
    display: flex;
    flex-direction: column;
}

.bedroom-heading {
    font-family: var(--font-serif);
    font-size: 64px;
    line-height: 1;
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.bedroom-support-text {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-orange);
    /* Orange supporting line */
}

.bedroom-divider {
    width: 2px;
    height: 60px;
    background-color: var(--color-orange);
    margin: 0 40px;
}

.bedroom-subtitle {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    color: var(--color-white);
    margin-bottom: 10px;
    /* Align nicely with the bottom area */
}

/* ==========================================================================
   USP GRID
   ========================================================================== */
.usp-grid-container {
    max-width: none;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 90px;
}

.usp-card {
    background-color: #e5e5e5;
    /* flat light grey tile */
    padding: 36px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    /* icon-to-text alignment */
    transition: transform 0.3s ease;
}

.usp-card:hover {
    transform: translateY(-5px);
}

.usp-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--color-black);
    /* minimal black line icon */
    transition: color 0.3s ease;
}

.usp-card:hover .usp-icon {
    color: var(--color-orange);
}

.usp-text {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-black);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.usp-card:hover .usp-text {
    color: var(--color-orange);
}

/* Responsive adjustments for Bedroom Section */
@media (max-width: 1400px) {
    .usp-grid-container {
        padding: 0 60px;
    }
}

@media (max-width: 1200px) {
    .bedroom-heading {
        font-size: 56px;
    }

    .play-button {
        width: 120px;
        height: 120px;
        margin-right: -20px;
    }

    .play-icon {
        width: 30px;
        height: 30px;
    }

    .bedroom-divider {
        margin: 0 20px 10px 20px;
    }

    .usp-grid-container {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 132px;
    }
}

@media (max-width: 992px) {
    .bedroom-banner {
        aspect-ratio: 16 / 9;
    }

    .bedroom-content-wrapper {
        flex-wrap: wrap;
        /* Let subtitle drop down */
        padding: 0 30px 40px 0;
    }

    .bedroom-divider {
        display: none;
    }

    .bedroom-subtitle {
        width: 100%;
        margin-left: 90px;
        /* Align with text block above */
        margin-top: 15px;
    }

    .usp-grid-container {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cols */
    }
}

@media (max-width: 768px) {
    .bedroom-promo-section {
        padding: 24px 20px 40px; /* Contained frame effect */
        background-color: #fff;
    }

    .bedroom-banner-container {
        flex-direction: column;
        gap: 0;
    }

    .bedroom-banner {
        width: 100%;
        aspect-ratio: 4 / 5;
        border-radius: 12px;
        overflow: hidden;
        position: relative;
    }

    .bedroom-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
        z-index: 2;
    }

    .bedroom-content-wrapper {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 40px 24px;
        z-index: 3;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .bedroom-heading {
        font-size: 32px;
        line-height: 1.1;
        margin-bottom: 12px;
        font-family: var(--font-serif);
        color: #fff;
    }

    .play-video-link {
        color: var(--color-orange);
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        margin-top: 10px;
    }

    .play-button {
        display: none; /* Removed as per user request */
    }

    .play-icon {
        width: 28px;
        height: 28px;
        fill: #fff;
        margin-left: 4px;
    }

    .bedroom-subtitle {
        color: #fff;
        font-size: 15px;
        line-height: 1.4;
        opacity: 0.9;
        margin-bottom: 8px;
        text-align: left; /* Explicitly left-aligned */
        width: 100%;
    }

    .usp-grid-container {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 20px 20px 10px; /* Reduced bottom padding from 40px to 10px */
        gap: 12px;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .usp-grid-container::-webkit-scrollbar {
        display: none;
    }

    .usp-card {
        flex: 0 0 160px; /* Small enough to show multiple */
        scroll-snap-align: start;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0;
        padding: 24px 12px;
        min-height: 180px;
        background-color: #f0f0f0;
        justify-content: flex-start;
    }

    .usp-icon {
        width: 42px;
        height: 42px;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .usp-text {
        font-size: 14px;
        line-height: 1.4;
    }
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    position: relative;
    background-color: #ffffff;
    padding: 60px 0 40px;
    width: 100%;
    z-index: 1;
}

/* Creating the split background effect roughly behind the bottom half of cards */
.testimonials-bg-split {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 27%;
    /* Adjust to match the intersection on the cards */
    background-color: #e8e8e8;
    /* slightly darker grey */
    z-index: -1;
}

.testimonials-header {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 50px auto;
    padding: 0 var(--padding-x);
}

.testimonials-heading {
    font-family: var(--font-serif);
    font-size: 80px;
    /* Very large elegant serif */
    font-weight: 400;
    color: var(--color-black);
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.testimonials-paragraph {
    font-family: var(--font-sans);
    font-size: 18px;
    color: #444444;
    font-weight: 400;
    margin-bottom: 12px;
}

.watch-stories {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-orange);
    cursor: pointer;
}

.watch-play-icon {
    width: 22px;
    height: 22px;
}

.testimonials-slider-container {
    max-width: none;
    /* Fluid width */
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 60px;
    /* Space between arrows and cards */
    position: relative;
    z-index: 2;
}

.testimonials-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    flex: 1;
    /* Take up remaining space */
}

.testimonial-card {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16; /* Mobile-first story aspect ratio */
    background-color: #000; /* Black bars if needed */
    display: flex;
    border-radius: 12px;
    overflow: hidden;
}

.testimonial-video {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Show full video */
}

.testimonial-caption {
    position: absolute;
    bottom: 50px;
    /* Near bottom center */
}

.category-card {
    min-width: 30%;
    margin-right: 2%;
    text-align: left;
}

.category-card .card-title {
    font-family: var(--font-serif);
    font-size: 32px;
    margin: 20px 0 8px;
    color: var(--color-black);
}

.category-card .card-link {
    color: var(--color-orange) !important;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.3s ease;
}

.category-card:hover .card-link {
    gap: 8px;
}

.category-card .card-img-wrapper {
    overflow: hidden;
    height: 450px;
}

.category-card .card-img {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.category-card:hover .card-img {
    transform: scale(1.05);
}

/* Specific styling for 'Trending Now' and 'Modern Living' color shift as seen in mockup */
.category-card:nth-child(3):hover .card-title,
.category-card:nth-child(4):hover .card-title {
    color: #f26f21 !important;
}

.banner-overlay-text {
    left: 10%;
    right: 10%;
    text-align: center;
    color: var(--color-white);
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;
    text-shadow: 0px 1px 12px rgba(0, 0, 0, 0.5);
    /* shadow for high readability */
}

.audio-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.75);
    /* Dark circular icon button */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.audio-btn.is-unmuted {
    background-color: var(--color-orange);
    transform: scale(1.1);
}

.audio-btn:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.mute-icon,
.speaker-icon {
    width: 18px;
    height: 18px;
}

/* Responsive adjustments for Testimonials */
@media (max-width: 1400px) {
    .testimonials-heading {
        font-size: 64px;
    }
}

@media (max-width: 1200px) {
    .testimonials-heading {
        font-size: 56px;
    }

    .testimonials-slider-container {
        gap: 20px;
        padding: 0 132px;
    }

    .testimonials-cards {
        gap: 20px;
    }

    .testimonial-caption {
        font-size: 15px;
        bottom: 40px;
    }
}

@media (max-width: 992px) {
    .testimonials-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Hide the 3rd card on tablet for strict 2-column if needed, or allow horizontal scroll */
    .testimonial-card:last-child {
        display: none;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 10px 0 0; /* Reduced top padding to remove unwanted gap */
    }

    .testimonials-bg-split {
        display: none;
    }

    .testimonials-header {
        text-align: center;
        margin-bottom: 24px;
        padding: 0 20px;
    }

    .testimonials-heading {
        font-size: 36px;
        margin-bottom: 12px;
        padding: 0;
        text-align: center;
        font-family: var(--font-serif);
        line-height: 1.1;
        letter-spacing: -0.5px;
    }

    .testimonials-paragraph {
        font-size: 14px;
        text-align: center;
        margin-bottom: 16px;
        opacity: 0.75;
    }

    .watch-stories {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: center;
        color: var(--color-orange);
        font-size: 14px;
        line-height: 1.3;
        max-width: 240px;
        margin: 0 auto;
    }

    .watch-play-icon {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }

    .testimonials-slider-container {
        padding: 0;
        overflow: visible;
        width: 100%;
    }

    .testimonials-cards {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 12px;
        padding: 24px 20px 30px;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .testimonials-cards::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        min-width: 260px;
        flex: 0 0 260px;
        scroll-snap-align: start;
        aspect-ratio: 9 / 16;
        border-radius: 8px;
        overflow: hidden;
    }

    .testimonial-card:last-child {
        display: flex;
    }

    .testimonial-caption {
        font-size: 13px;
        bottom: 20px;
        padding: 0 16px;
        line-height: 1.4;
    }

    .audio-btn {
        right: 12px;
        bottom: 12px;
        width: 32px;
        height: 32px;
    }

    .testimonials-slider-container > .banner-arrow {
        display: none;
    }
}

/* ==========================================================================
   LEAD CAPTURE SECTION
   ========================================================================== */
.lead-capture-section {
    background-color: #e8e8e8;
    /* Continue the darker grey from the testimonial split */
    padding: 40px var(--padding-x) 120px;
    width: 100%;
    text-align: center;
}

.lead-capture-container {
    max-width: 1200px;
    margin: 0 auto;
}

.lead-capture-header {
    margin-bottom: 70px;
    /* Distance from paragraph to form row */
}

.lead-heading {
    font-family: var(--font-serif);
    font-size: 80px;
    /* Very large elegant serif */
    font-weight: 400;
    color: var(--color-black);
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.lead-paragraph {
    font-family: var(--font-sans);
    font-size: 18px;
    color: #444444;
    font-weight: 400;
    line-height: 1.6;
}

.lead-form {
    display: flex;
    align-items: flex-end;
    /* Align inputs and button nicely */
    justify-content: center;
    gap: 40px;
    /* Gap between inputs */
    max-width: 1000px;
    margin: 0 auto;
}

.form-group {
    flex: 1;
    /* Make inputs share equal space */
    position: relative;
}

.lead-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #b3b3b3;
    /* Thin grey line */
    padding: 10px 0;
    font-family: var(--font-sans);
    font-size: 18px;
    color: var(--color-black);
    outline: none;
    transition: border-color 0.3s ease;
}

.lead-input:focus {
    border-bottom-color: var(--color-orange);
}

.lead-input::placeholder {
    color: #999999;
    /* Light grey */
    opacity: 1;
}

/* Button specific styling */
.lead-submit-btn {
    background-color: var(--color-orange);
    color: var(--color-white);
    border: none;
    padding: 14px 40px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
    /* Don't shrink the button */
    margin-bottom: 2px;
    /* Align nicely with the input baselines */
}

.lead-submit-btn:hover {
    background-color: #d85c15;
}

/* LEAD THANKS STATE */
.lead-thanks-state {
    text-align: center;
    padding: 40px 0;
}

.thanks-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    animation: scaleIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scaleIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lead-thanks-state .lead-paragraph {
    max-width: 600px;
    margin: 0 auto 32px;
}

/* Responsive adjustments for Lead Capture */
@media (max-width: 1200px) {
    .lead-heading {
        font-size: 64px;
    }
}

@media (max-width: 992px) {
    .lead-heading {
        font-size: 56px;
    }

    .lead-form {
        gap: 20px;
        flex-wrap: wrap;
        /* Let it wrap if needed on smaller tablets */
    }

    .form-group {
        flex: 1 1 calc(33.333% - 20px);
        min-width: 200px;
    }

    .lead-submit-btn {
        flex: 1 1 100%;
        /* Make button full width if it wraps */
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .lead-capture-section {
        padding: 60px 20px 80px;
        text-align: left;
    }

    .lead-heading {
        font-size: 32px;
        line-height: 1.0;
        margin-bottom: 16px;
        text-align: left;
    }

    .lead-paragraph {
        font-size: 15px;
        line-height: 1.6;
        text-align: left;
        margin-bottom: 40px;
    }

    .lead-capture-header {
        margin-bottom: 30px;
    }

    .lead-form {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .form-group {
        width: 100%;
        flex: none;
    }

    .lead-submit-btn {
        width: 100%;
        padding: 16px;
        font-size: 18px;
        margin-top: 10px;
    }
}

/* ==========================================================================
   FINAL BANNER & FOOTER SECTION
   ========================================================================== */
.footer-promo-banner {
    position: relative;
    width: 100%;
    aspect-ratio: 24 / 7;
    /* very wide panoramic */
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Push content to the right */
    overflow: hidden;
}

.footer-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.footer-banner-content {
    position: relative;
    z-index: 2;
    padding-right: 12%;
    /* Keep it well within the layout on the right */
    text-align: center;
    /* Or right align? The screenshot looks slightly centered within its block or flush right. We'll use text-align right. Wait, the screenshot shows "Discover Furniture" and "Crafted by Ark" centered to each other but placed on the right. */
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* Align button nicely */
}

.footer-banner-heading {
    font-family: var(--font-serif);
    font-size: 72px;
    /* Large elegant serif */
    font-weight: 400;
    color: var(--color-black);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
    text-align: center;
    /* keep text lines centered to each other */
}

.footer-cta-btn {
    background-color: var(--color-orange);
    color: var(--color-white);
    border: none;
    padding: 16px 36px;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-end;
    /* push right under heading */
    margin-right: 20px;
    /* Slight optical adjustment relative to "Ark" text length */
}

.footer-cta-btn:hover {
    background-color: #d95e1c;
}

/* FOOTER */
.site-footer {
    background-color: #050505;
    /* Deep rich black */
    width: 100%;
    padding: 100px 152px 40px;
    color: var(--color-white);
}

.footer-container {
    max-width: none;
    /* Fluid width */
    margin: 0 auto;
}

.footer-brand-area {
    margin-bottom: 80px;
}

.footer-logo {
    margin-bottom: 24px;
}

.ark-footer-logo {
    display: block;
    height: 48px;
    /* Slightly taller to match premium feel */
    width: auto;
    object-fit: contain;
}

.footer-description {
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--color-white);
    font-weight: 300;
    line-height: 1.6;
    max-width: 1000px;
    /* Constrain width similar to screenshot */
}

/* Footer Columns */
.footer-columns {
    display: grid;
    grid-template-columns: 1fr 2fr 1.5fr 1fr;
    /* Custom widths: Shop gets more space */
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col-heading {
    font-family: var(--font-sans);
    font-size: 18px;
    color: var(--color-orange);
    font-weight: 500;
    margin-bottom: 30px;
}

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

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

.footer-links a {
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

/* Shop layout specificity */
.shop-subcols {
    display: flex;
    gap: 80px;
    /* Space between the two internal lists */
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.social-link {
    color: var(--color-white);
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.7;
}

/* Bottom Divider */
.footer-divider {
    height: 1px;
    background-color: #333333;
    /* subtle grey line */
    width: 100%;
    margin-bottom: 30px;
}

/* Footer Accordion (mobile only) */
.footer-accordion-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: default;
    color: var(--color-orange);
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
}

.footer-accordion-icon {
    display: none; /* hidden on desktop */
    transition: transform 0.3s ease;
    flex-shrink: 0;
}


.copyright {
    font-family: var(--font-sans);
    font-size: 14px;
    color: #888888;
    /* muted grey */
    font-weight: 400;
}

/* Responsive constraints for Banner & Footer */
@media (max-width: 1400px) {
    .footer-columns {
        grid-template-columns: 1fr 1.5fr 1fr 1fr;
    }

    .shop-subcols {
        gap: 40px;
    }
}

@media (max-width: 1200px) {
    .site-footer {
        padding-left: 132px;
        padding-right: 132px;
    }
}

@media (max-width: 1024px) {
    .footer-banner-heading {
        font-size: 56px;
    }

    .footer-banner-content {
        padding-right: 5%;
    }

    .site-footer {
        padding: 60px 20px;
        text-align: left;
    }

    .footer-brand-area {
        margin-bottom: 40px;
        text-align: left;
    }

    .footer-logo {
        margin-bottom: 20px;
    }

    .ark-footer-logo {
        height: 36px;
    }

    .footer-description {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 40px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
        text-align: left;
    }

    .footer-col-heading,
    .footer-accordion-btn {
        font-size: 18px;
        margin-bottom: 20px;
    }

    /* Accordion behavior on mobile */
    .footer-accordion-btn {
        cursor: pointer;
        margin-bottom: 0;
    }

    .footer-accordion-icon {
        display: block; /* show chevron on mobile */
    }

    .footer-accordion-btn[aria-expanded="true"] .footer-accordion-icon {
        transform: rotate(180deg);
    }

    .footer-accordion-body {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding-top 0.35s ease;
        padding-top: 0;
    }

    .footer-accordion-body.is-open {
        max-height: 400px;
        padding-top: 20px;
    }

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

@media (max-width: 768px) {
    /* Brochure banner: image fills top, text+button below on white */
    .footer-promo-banner {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: unset;
        aspect-ratio: unset;
        background-color: #fff;
        padding: 0 20px; /* Restored horizontal gap as requested */
        margin: 20px 0 0;
    }

    .footer-banner-bg {
        position: relative;
        width: 100%;
        height: 70vw;
        object-fit: cover;
        border-radius: 0;
    }

    .footer-banner-content {
        position: relative;
        background: #fff;
        backdrop-filter: none;
        padding: 28px 20px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 0;
        border-radius: 0;
        width: 100%;
    }

    .footer-banner-heading {
        font-size: 32px;
        line-height: 1.15;
        margin-bottom: 20px;
        color: var(--color-black);
        font-family: var(--font-serif);
    }

    .footer-banner-btn, .footer-cta-btn {
        width: auto;
        min-width: 280px;
        margin: 20px auto 0;
        display: block;
        padding: 16px 32px;
        background-color: var(--color-orange);
        color: var(--color-white);
        border: none;
        font-size: 16px;
        font-weight: 500;
        border-radius: 2px;
        cursor: pointer;
        text-align: center;
    }
}

/* ==========================================================================
   LOGIN MODAL
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-overlay.is-active {
    display: flex;
}

.login-modal {
    background-color: #fff;
    width: 90%;
    max-width: 930px;
    height: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    color: #666;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
}

.modal-container {
    display: flex;
    flex-direction: row;
    height: 100%;
}

.modal-poster {
    flex: 1.15;
    background-color: #fffaf0;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.poster-content {
    padding: 30px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.poster-badge {
    font-family: var(--font-serif);
    font-size: 54px;
    line-height: 0.95;
    color: #ff9933;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.poster-badge.is-dark {
    color: var(--color-black);
}

.poster-offer {
    background-color: #1a237e;
    color: #fff;
    display: inline-block;
    padding: 6px 20px;
    font-size: 16px;
    font-weight: 600;
    margin: 15px auto;
    border-radius: 4px;
    clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
}

.poster-shipping {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.poster-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: auto;
}

.modal-form {
    flex: 1;
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
}

.form-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--color-black);
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}

.form-input {
    width: 100%;
    height: 54px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s;
}

.form-input:focus {
    border-color: #999;
}

.pass-group {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.forgot-pass-wrapper {
    text-align: right;
    margin-bottom: 30px;
}

.forgot-pass-link {
    font-size: 13px;
    color: #888;
    text-decoration: none;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.btn-signin {
    flex: 1;
    background-color: var(--color-black);
    color: #fff;
    border: none;
    height: 48px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-otp {
    flex: 1;
    background-color: #fff;
    color: var(--color-black);
    border: 1px solid #ddd;
    height: 48px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.signup-prompt {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.signup-link {
    color: var(--color-orange);
    text-decoration: none;
    font-weight: 500;
}

.divider {
    text-align: center;
    position: relative;
    margin-bottom: 20px;
    font-size: 14px;
    color: #999;
}

.divider::before,
.divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 42%;
    height: 1px;
    background-color: #eee;
}

.divider::before { left: 0; }
.divider::after { right: 0; }

.social-login {
    display: flex;
    gap: 15px;
}

.social-btn {
    flex: 1;
    height: 44px;
    background: #fff;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #444;
    cursor: pointer;
    transition: background-color 0.3s;
}

@media (max-width: 768px) {
    .modal-container {
        flex-direction: column;
    }
    
    .modal-poster {
        display: none;
    }
    
    .modal-form {
        padding: 40px 20px;
    }
}

/* Authentication State Styles */
.auth-error-msg {
    color: #d93025;
    background-color: #fce8e6;
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 20px;
    display: none; /* Shown via JS */
    text-align: center;
}

.auth-error-msg.visible {
    display: block;
}

#navbarLoginBtn.is-logged-in #navbarLoginText::after {
    /* Optional: status indicator */
    color: inherit;
}
/* -------------------------------------------------------------------------- */
/* 22. VIDEO MODAL */
/* -------------------------------------------------------------------------- */

.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 5000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal-overlay.is-active {
    display: flex;
    opacity: 1;
}

.video-modal-container {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background: #000;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.video-modal-close:hover {
    transform: scale(1.1);
}

/* --- MOBILE RESPONSIVE UTILITIES --- */
.desktop-only {
    display: flex !important;
}
.mobile-only {
    display: none !important;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: flex !important;
    }
}

/* --- MOBILE MENU DRAWER --- */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 4000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.is-active {
    display: block;
    opacity: 1;
}

.mobile-menu-panel {
    position: absolute;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background-color: var(--color-white);
    transition: right 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.mobile-menu-overlay.is-active .mobile-menu-panel {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-menu-header .logo-img {
    height: 40px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 32px;
    color: var(--color-black);
    cursor: pointer;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.mobile-menu-links a {
    text-decoration: none;
    color: var(--color-black);
    font-size: 20px;
    font-weight: 500;
    font-family: var(--font-serif);
}

.mobile-menu-footer {
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.mobile-auth-btn {
    display: block;
    color: var(--color-orange);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 24px;
}

.mobile-social-links {
    display: flex;
    gap: 20px;
    color: var(--color-black);
}

.hamburger-menu-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--color-black);
}

@media (max-width: 768px) {
    /* ── Global mobile padding: 20px on left/right ── */
    :root {
        --padding-x: 20px;
        --padding-nav: 20px;
    }

    .navbar {
        height: 70px;
        padding: 0 20px;
    }

    .logo-img {
        height: 35px;
    }

    .nav-center {
        display: none !important;
    }

    .nav-right {
        gap: 16px;
    }

    .top-bar {
        display: none !important; /* Hide top bar on mobile to match image */
    }

    body {
        padding-top: 70px !important;
    }

    /* Hero Section Mobile — Match reference image exactly */
    .hero-section {
        height: 100svh; /* Full viewport with safe area */
        min-height: 600px;
    }

    /* Dark gradient overlay at bottom for text readability */
    .hero-section::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 55%;
        background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
        z-index: 1;
        pointer-events: none;
    }

    .hero-bottom-content {
        bottom: 0;
        left: 0;
        right: 0;
        padding: 0 24px 48px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
        z-index: 2;
    }

    .hero-heading {
        font-size: 44px;
        line-height: 1.05;
        margin-right: 0;
        margin-bottom: 0;
        min-width: unset;
        width: 100%;
        letter-spacing: -0.5px;
        text-align: center;
    }

    .hero-text-block {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .hero-divider {
        display: none;
    }

    .hero-text-and-button {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        height: auto;
        width: 100%;
    }

    .hero-paragraph {
        font-size: 15px;
        max-width: 90%;
        opacity: 0.85;
        line-height: 1.5;
        text-align: center;
    }

    .btn-primary {
        width: 100%;
        max-width: 340px;
        padding: 16px 28px;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 0.5px;
        text-align: center;
        border-radius: 2px;
    }

    .slide-indicator {
        display: none;
    }

    .slider-arrow {
        padding: 10px;
        opacity: 0.4;
        z-index: 2;
    }

    .arrow-left {
        left: 12px;
    }

    .arrow-right {
        right: 12px;
    }

    .floating-buttons {
        right: 16px;
        bottom: 24px;
        gap: 12px;
    }

    .fab {
        width: 44px;
        height: 44px;
    }
}

/* --- SEARCH OVERLAY REFINED --- */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 3000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

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

.search-container {
    width: 100%;
    max-width: 900px;
    transform: translateY(30px);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.search-overlay.is-active .search-container {
    transform: translateY(0);
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    border-bottom: 1.5px solid var(--color-black);
    padding: 1rem 0;
    margin-bottom: 2.5rem;
}

#searchInput {
    width: 100%;
    border: none;
    background: transparent;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    padding-left: 1.5rem;
    outline: none;
    color: var(--color-text-dark);
}

@media (max-width: 768px) {
    #searchInput {
        font-size: 1.5rem;
        padding-left: 1rem;
    }
}

#searchInput::placeholder {
    color: #ccc;
    font-size: 2rem;
}

@media (max-width: 768px) {
    #searchInput::placeholder {
        font-size: 1.2rem;
    }
}

.search-trending h4 {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 1.5rem;
}

.trending-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.trending-tags span {
    padding: 0.6rem 1.5rem;
    border: 1px solid #eee;
    background: #fcfcfc;
    border-radius: 30px;
    font-size: 0.85rem;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trending-tags span:hover {
    background: var(--color-black);
    color: var(--color-white);
    border-color: var(--color-black);
    transform: translateY(-2px);
}

/* --- SIDEBAR PANEL REFINED --- */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    z-index: 3100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

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

.sidebar-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 450px;
    height: 100%;
    background: #fff;
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: column;
}

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

.sidebar-header {
    padding: 2rem;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-header h3 {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-text-dark);
}

.sidebar-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #aaa;
    transition: color 0.3s ease;
    line-height: 1;
}

.sidebar-close:hover {
    color: var(--color-black);
}

.sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

.sidebar-footer {
    padding: 2rem;
    border-top: 1px solid #f5f5f5;
    background: #fafafa;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.checkout-btn {
    width: 100%;
    padding: 1.2rem;
    background-color: var(--color-orange);
    color: var(--color-white);
    border: none;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.checkout-btn:hover:not(:disabled) {
    background-color: #d85c15;
}

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

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: #aaa;
}

.empty-state svg {
    margin-bottom: 1.5rem;
    stroke: #eee;
}

.empty-state p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* --- CART & WISHLIST ITEMS REFINED --- */
.cart-item, .wishlist-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #f9f9f9;
}

.cart-item img, .wishlist-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 2px;
}

.cart-item-info, .wishlist-item-info {
    flex: 1;
}

.cart-item-info h4, .wishlist-item-info h4 {
    margin: 0 0 0.5rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-dark);
}

.cart-item-info p, .wishlist-item-info p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--color-orange);
    font-weight: 600;
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.8rem;
}

.qty-controls button {
    width: 28px;
    height: 28px;
    border: 1px solid #eee;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.qty-controls button:hover {
    border-color: var(--color-black);
    background: var(--color-black);
    color: var(--color-white);
}

.remove-item {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #ddd;
    cursor: pointer;
    padding: 0.2rem;
    transition: color 0.3s;
    line-height: 1;
}

.remove-item:hover {
    color: #ff4d4d;
}

/* --- SEARCH RESULTS REFINED --- */
.search-results-area {
    width: 100%;
    margin-top: 2rem;
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 1rem;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.search-result-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #f5f5f5;
    transition: all 0.3s ease;
}

.search-result-item:hover {
    border-color: var(--color-black);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.search-result-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.result-info h5 {
    margin: 0 0 0.5rem;
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 500;
}

.result-info span {
    font-weight: 600;
    color: var(--color-orange);
    font-size: 1.1rem;
}

.no-results {
    text-align: center;
    padding: 4rem;
    color: #888;
    font-family: var(--font-serif);
    font-size: 1.5rem;
}

/* --- QUICK ADD BUTTON REFINED --- */
.quick-add-btn {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: var(--color-orange);
    color: #fff;
    border: none;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
    z-index: 10;
}

.product-card:hover .quick-add-btn {
    bottom: 0;
    opacity: 1;
}

.quick-add-btn:hover {
    background: #d85c15;
}

/* --- BADGES REFINED --- */
.icon-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--color-black) !important;
    transition: color 0.3s ease;
}

.icon-link svg {
    stroke: currentColor;
}

.icon-link:hover {
    color: var(--color-orange) !important;
}

.badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--color-orange);
    color: #fff;
    font-size: 0.65rem;
    min-width: 20px;
    height: 20px;
    padding: 0 4px;
    border-radius: 50%;
    display: none; /* controlled by JS inline flex */
    align-items: center;
    justify-content: center;
    font-weight: 800;
    pointer-events: none;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Fix for Quick Add button positioning */
.product-image-wrapper {
    position: relative;
    overflow: hidden;
}
/* --- WISHLIST & RECENTLY VIEWED (1:1 CLONE) --- */
.wishlist-layout {
    display: flex;
    padding: 60px var(--padding-nav);
    gap: 60px;
    background: #fff;
    min-height: 80vh;
}

.wishlist-sidebar {
    width: 300px;
    flex-shrink: 0;
    border-right: 1px solid #f0f0f0;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f9f9f9;
}

.sidebar-item-info h4 {
    font-family: var(--font-sans);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 2px;
}

.sidebar-item-info p {
    font-size: 12px;
    color: #999;
    letter-spacing: 0.2px;
}

.sidebar-item.active {
    color: var(--color-orange);
}

.sidebar-item.active .sidebar-item-info p {
    color: var(--color-orange);
    opacity: 0.8;
}

.wishlist-content {
    flex-grow: 1;
}

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

/* 1:1 PRODUCT CARD FOR WISHLIST */
.wishlist-card {
    position: relative;
    background: #fff;
}

.card-image-box {
    position: relative;
    background: #f7f7f7;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image-box img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.wishlist-card:hover .card-image-box img {
    transform: scale(1.08);
}

.card-badge-off {
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    color: #fff;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    z-index: 5;
}

.card-heart-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    z-index: 5;
}

.card-status-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(240, 240, 240, 0.9);
    color: #888;
    text-align: center;
    padding: 8px 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.card-info {
    padding: 15px 5px;
}

.card-name {
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 500;
    color: #111;
    margin-bottom: 10px;
}

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

.card-old-price {
    color: #aaa;
    text-decoration: line-through;
    font-size: 14px;
}

.card-new-price {
    color: var(--color-orange);
    font-weight: 700;
    font-size: 17px;
}

.card-tax-info {
    font-size: 11px;
    color: #999;
    margin-bottom: 6px;
}

.card-emi-info {
    color: var(--color-orange);
    font-size: 12px;
    font-weight: 600;
}

/* WISHLIST MOBILE RESPONSIVE */
@media (max-width: 992px) {
    .wishlist-layout {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
    }

    .wishlist-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
        overflow-x: auto;
        gap: 20px;
        padding-bottom: 10px;
        scrollbar-width: none;
    }

    .wishlist-sidebar::-webkit-scrollbar {
        display: none;
    }

    .sidebar-item {
        padding: 15px 0;
        border-bottom: none;
        flex-shrink: 0;
        gap: 10px;
    }

    .sidebar-item-info h4 {
        font-size: 16px;
        white-space: nowrap;
    }

    .sidebar-item-info p {
        display: none; /* Hide subtext on mobile tabs */
    }

    .sidebar-icon svg {
        width: 20px;
        height: 20px;
    }

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

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