:root {
    --primary-green: #0C6939;
    --dark-green: #064024;
    --accent-yellow: #ffc800;
    --text-white: #ffffff;
    --text-dark: #333333;
    --bg-white: #ffffff;
    --bg-grey: #f8f9fa;
    --card-bg: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    min-height: 100vh;
    padding: 0;
}

/* Full Width Hero Section */
.hero-full {
    width: 100%;
    color: var(--text-white);
    position: relative;
    padding-bottom: 50px;
}

    .hero-full::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--primary-green);
        background: linear-gradient(135deg, #0e6d42 0%, #064225 100%);
        clip-path: polygon( 0 0, 55% 0, 55.5% 0.5px, 56.0% 2.2px, 56.5% 4.9px, 57.0% 8.6px, 57.5% 13.2px, 58.0% 18.5px, 58.5% 24.6px, 59.0% 31.1px, 59.5% 38.0px, 60.0% 45.0px, 60.5% 52.0px, 61.0% 58.9px, 61.5% 65.4px, 62.0% 71.5px, 62.5% 76.8px, 63.0% 81.4px, 63.5% 85.1px, 64.0% 87.8px, 64.5% 89.5px, 65% 90px, 100% 90px, 100% calc(100% - 40px), calc(100% - 0.8px) calc(100% - 32.2px), calc(100% - 3px) calc(100% - 24.7px), calc(100% - 6.7px) calc(100% - 17.8px), calc(100% - 11.7px) calc(100% - 11.7px), calc(100% - 17.8px) calc(100% - 6.7px), calc(100% - 24.7px) calc(100% - 3px), calc(100% - 32.2px) calc(100% - 0.8px), calc(100% - 40px) 100%, 40px 100%, 32.2px calc(100% - 0.8px), 24.7px calc(100% - 3px), 17.8px calc(100% - 6.7px), 11.7px calc(100% - 11.7px), 6.7px calc(100% - 17.8px), 3px calc(100% - 24.7px), 0.8px calc(100% - 32.2px), 0 calc(100% - 40px) );
        z-index: 0;
    }

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 0 5%;
    z-index: 100;
    height: 90px;
    --c: 55%;
    transition: background-color 0.3s ease;
}

    .header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--bg-white);
        z-index: -1;
        will-change: clip-path;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        clip-path: polygon( 100% 0, var(--c) 0, calc(var(--c) + 0.5%) 0.5px, calc(var(--c) + 1.0%) 2.2px, calc(var(--c) + 1.5%) 4.9px, calc(var(--c) + 2.0%) 8.6px, calc(var(--c) + 2.5%) 13.2px, calc(var(--c) + 3.0%) 18.5px, calc(var(--c) + 3.5%) 24.6px, calc(var(--c) + 4.0%) 31.1px, calc(var(--c) + 4.5%) 38.0px, calc(var(--c) + 5.0%) 45.0px, calc(var(--c) + 5.5%) 52.0px, calc(var(--c) + 6.0%) 58.9px, calc(var(--c) + 6.5%) 65.4px, calc(var(--c) + 7.0%) 71.5px, calc(var(--c) + 7.5%) 76.8px, calc(var(--c) + 8.0%) 81.4px, calc(var(--c) + 8.5%) 85.1px, calc(var(--c) + 9.0%) 87.8px, calc(var(--c) + 9.5%) 89.5px, calc(var(--c) + 10%) 90px, 100% 90px );
    }

    .header.scrolled {
    }

.logo-icon path {
    transition: fill 0.3s ease;
}

img.logo-icon {
    transition: filter 0.3s ease;
    filter: brightness(0) invert(1); /* Default to white */
}

.header.scrolled .logo-icon path,
.header.nav-open .logo-icon path {
    fill: var(--text-dark);
}

.header.scrolled img.logo-icon,
.header.nav-open img.logo-icon {
    filter: brightness(0); /* Change to black on scroll */
}

.header.scrolled .logo-text,
.header.nav-open .logo-text {
    color: var(--text-dark);
}

.nav-link.dropdown svg path, .nav-link.dropdown svg circle {
    transition: stroke 0.2s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 24px;
    height: 24px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}
.mobile-only-nav {
    display: none !important;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s ease, color 0.2s ease;
}

    .nav-link:hover {
        opacity: 0.8;
    }

    .nav-link.dropdown {
        display: flex;
        align-items: center;
        gap: 6px;
    }

.right-nav-container {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 60px;
    padding-right: 5%;
}



.right-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link.dark {
    color: var(--text-dark);
}

.cart-btn {
    background-color: var(--accent-yellow);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .cart-btn:hover {
        /* No translate or yellow shadow */
    }
    
    .cart-btn:hover svg {
        stroke: #0a6b3c !important;
    }

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
}

/* Hero Section Styles */
.hero-section {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 0 5% 5% 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.hero-left {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: 5;
}

.hero-lamp {
    width: 120%;
    max-width: 1800px;
    height: auto;
    position: absolute;
    top: -20px;
    left: 40%;
    transform: translateX(-50%);
    object-fit: contain;
}

.lamp-glow {
    display: none;
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(140,255,180,0.4) 0%, rgba(14,109,66,0) 70%);
    top: 40%;
    right: 50px; /* Align with the lamp visually */
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 50%;
    animation: pulse 4s infinite alternate;
}

.hero-right {
    flex: 1.6;
    padding-left: 0;
    margin-left: -15%;
    padding-top: 150px;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sparkles {
    position: absolute;
    top: -20px;
    right: 20%;
    animation: sparkle 2s infinite alternate;
}

.hero-title-wrapper {
    margin-bottom: 30px;
    padding-left: 50px;
}

.hero-title {
    font-size: clamp(40px, 5.5vw, 96px);
    font-weight: 600;
    line-height: 1.1;
    word-wrap: break-word;
}

.title-last-line {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 100%;
}

.highlight {
    color: var(--accent-yellow);
}

.search-container {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    background-color: #fff;
    border-radius: 30px;
    padding: 5px 25px;
    width: 350px;
    max-width: 100%;
    height: 65px;
    margin-left: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    box-sizing: border-box;
}

@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 30px;
    padding: 15px 35px;
    letter-spacing: 0.5px;
    margin-left: 20px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    height: 65px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.view-all-btn:hover {
    background-color: var(--text-white);
    color: var(--text-dark);
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
}

    .search-input::placeholder {
        color: #999;
    }

.search-btn {
    background-color: var(--accent-yellow);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

    .search-btn:hover {
        transform: scale(1.05);
        background-color: #e5b400;
    }

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    padding-left: 50px;
}

.room-title-above {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0px;
}

.room-title-overlay {
    position: absolute;
    bottom: 40px;
    left: 5%;
    font-size: 32px;
    font-weight: 700;
    color: white;
    z-index: 10;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
    pointer-events: none;
}

/* Horizontal Drawer Slider Preview */
.room-drawer-slider {
    position: absolute;
    bottom: 40px;
    right: 0;
    display: flex;
    align-items: center;
    z-index: 20;
}

.drawer-toggle-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    box-shadow: -5px 0 15px rgba(0,0,0,0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    left: 24px;
    z-index: 2;
    transition: all 0.3s ease;
}

    .drawer-toggle-btn svg {
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        stroke: var(--text-dark);
    }

    .drawer-toggle-btn:hover {
        transform: scale(1.05);
    }

.room-drawer-slider.expanded .drawer-toggle-btn svg {
    transform: rotate(180deg);
}

.drawer-content {
    width: 0;
    overflow: hidden;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    height: 150px; /* slightly taller to fit scrollbar */
}

.room-drawer-slider.expanded .drawer-content {
    width: 330px; /* Enough for 2 cards (140px each + gap/padding) */
}

.drawer-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.drawer-track {
    display: flex;
    gap: 12px;
    padding: 0 12px 0 36px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100%;
}

    .drawer-track::-webkit-scrollbar {
        height: 6px;
    }

    .drawer-track::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.05);
        border-radius: 4px;
        margin: 0 12px 0 36px;
    }

    .drawer-track::-webkit-scrollbar-thumb {
        background: var(--primary-green);
        border-radius: 4px;
    }

        .drawer-track::-webkit-scrollbar-thumb:hover {
            background: #739d57;
        }

.drawer-card {
    min-width: 140px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

    .drawer-card:hover {
        transform: translateY(-3px);
    }

    .drawer-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        user-select: none;
        -webkit-user-drag: none;
        pointer-events: none;
    }

.drawer-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px 10px 10px;
}

.drawer-card-title {
    color: white;
    font-size: 13px;
    font-weight: 500;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

@keyframes sparkle {
    0% {
        transform: scale(0.8) rotate(0deg);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.2) rotate(10deg);
        opacity: 1;
    }
}

/* Second Section (Boxy) */
.second-section-wrapper {
    padding: 0 5%;
    margin-top: 40px;
}

.second-section.boxy {
    background-color: var(--bg-grey);
    border-radius: 40px;
    display: flex;
    gap: 60px;
    padding: 40px 5%;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.stats-container {
    flex: 0 0 250px;
}

.stats-number {
    font-size: 80px;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 10px;
}

    .stats-number .percent {
        font-size: 50px;
    }

.stats-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.4;
    font-weight: 500;
}

.featured-wrapper {
    flex: 1;
    background-color: transparent;
    overflow: hidden;
}

.featured-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.featured-title {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #e6e8eb;
    padding: 8px 20px;
    border-radius: 30px;
}

    .featured-title h3 {
        font-size: 16px;
        font-weight: 600;
        color: #666;
    }

.slider-controls {
    display: flex;
    gap: 15px;
}

.slider-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #e6e8eb;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .slider-btn:hover {
        background-color: #d1d4d8;
    }

.product-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 40px 40px 40px 40px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

    .product-slider::-webkit-scrollbar {
        display: none;
    }

.product-card {
    min-width: 240px;
    flex-shrink: 0;
    background-color: var(--card-bg);
    border-radius: 25px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }

.product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.product-name {
    font-size: 18px;
    font-weight: 500;
    color: #666;
    margin-bottom: 10px;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

    .product-price .decimal {
        font-size: 14px;
    }

.product-image {
    width: 100px;
    height: 100px;
    max-width: 50%;
    object-fit: cover;
    mix-blend-mode: multiply;
    border-radius: 20px;
}

.add-btn {
    position: absolute;
    bottom: -20px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-green);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(10, 91, 54, 0.3);
    transition: transform 0.3s ease;
    z-index: 10;
}

    .add-btn:hover {
        transform: scale(1.1);
    }

/* Third Section */
.third-section {
    padding: 80px 5%;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.trusted-header {
    margin-bottom: 80px;
}

    .trusted-header h2 {
        font-size: 44px;
        font-weight: 400;
        color: #999;
        margin-bottom: 20px;
    }

        .trusted-header h2 strong {
            font-weight: 700;
            color: var(--text-dark);
        }

    .trusted-header p {
        color: #666;
        font-size: 14px;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.8;
    }

.testimonials {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    background-color: var(--bg-white);
    border: 1px solid #babbd6;
    border-radius: 15px;
    padding: 40px 30px 30px;
    position: relative;
    max-width: 45%;
    flex: 1;
    min-width: 350px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.avatar {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--bg-white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.quote-mark {
    font-size: 40px;
    color: var(--primary-green);
    font-weight: 800;
    line-height: 1;
    display: inline-block;
}

.top-quote {
    margin-bottom: 10px;
}

.bottom-quote {
    display: block;
    text-align: right;
    margin-top: 10px;
}

.testimonial-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

/* Dream Product Section */
.dream-section-wrapper {
    margin: 80px 5% 0;
    position: relative;
}

.dream-tab {
    width: 60%;
    height: 60px;
    background-color: var(--bg-grey);
    margin: 0 auto;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    position: relative;
}

    .dream-tab::before, .dream-tab::after {
        content: '';
        position: absolute;
        bottom: 0;
        width: 40px;
        height: 40px;
        background: transparent;
        border-radius: 50%;
    }

    .dream-tab::before {
        left: -40px;
        box-shadow: 20px 20px 0 0 var(--bg-grey);
    }

    .dream-tab::after {
        right: -40px;
        box-shadow: -20px 20px 0 0 var(--bg-grey);
    }

.dream-body {
    background-color: var(--bg-grey);
    border-radius: 40px;
    padding: 60px 5% 80px;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: -10px; /* pull up to seamlessly merge with tab */
}

.dream-title-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.dream-title {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 0;
    color: var(--text-dark);
}

.dream-underline {
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 70px;
    object-fit: contain;
    mix-blend-mode: multiply; /* Removes white background */
    opacity: 0.9;
    pointer-events: none;
}

.dream-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-dark);
    margin: 40px 0 30px;
    text-align: left;
}

.text-green {
    color: var(--primary-green);
    font-weight: 700;
}

.dream-word {
    font-family: 'Great Vibes', 'Brush Script MT', 'Lucida Handwriting', cursive !important;
    font-weight: 400 !important;
    font-size: 2em;
    display: inline-block;
    transform: translateY(5px);
    color: var(--primary-green);
}

/* Interactive Room Scene */
.interactive-room-container {
    width: 100%;
    margin: 60px 0;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.fade-transition {
    transition: opacity 0.5s ease-in-out;
}

.fade-out {
    opacity: 0 !important;
}

/* Product Card Entrance Animation */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-enter {
    animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0; /* Starts hidden until animation begins */
}

.interactive-room {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #000;
    cursor: crosshair;
}

.room-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.light-component.hotspot {
    position: absolute;
    cursor: pointer;
    z-index: 5;
    /* pure invisible interaction zone */
}

    .light-component.hotspot .hover-ring {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 80px;
        height: 80px;
        transform: translate(-50%, -50%) scale(0.8);
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, 0.4);
        background: rgba(255, 255, 255, 0.05);
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        /* Highlights the pixels behind it! */
        backdrop-filter: brightness(1.4) contrast(1.1);
        pointer-events: none;
        z-index: 1;
    }

    .light-component.hotspot .popover {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -100%) scale(0.9);
        background: rgba(255, 255, 255, 0.95);
        padding: 10px 15px;
        border-radius: 12px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        white-space: nowrap;
        z-index: 10;
    }

        .light-component.hotspot .popover.popover-bottom {
            transform: translate(-50%, 0%) scale(0.9);
        }

.popover h4 {
    margin: 0 0 5px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
}

.popover p {
    margin: 0;
    font-size: 13px;
    color: var(--primary-green);
    font-weight: 700;
}

/* Hover effects */
.light-component.hotspot:hover .hover-ring {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.light-component.hotspot:hover .popover {
    opacity: 1;
    transform: translate(-50%, -130%) scale(1);
}

    .light-component.hotspot:hover .popover.popover-bottom {
        transform: translate(-50%, 30%) scale(1);
    }

.mobile-only {
    display: none;
}

.dream-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e2e5e9;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

    .nav-arrow:hover {
        background-color: #d1d5db;
    }

.dream-grid {
    display: grid;
    grid-template-rows: 1fr;
    grid-auto-columns: calc((100% - 90px) / 4);
    grid-auto-flow: column;
    gap: 30px;
    flex: 1;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

    .dream-grid::-webkit-scrollbar {
        display: none;
    }

.dream-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: start;
}

    .dream-card:hover {
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }

    .dream-card img {
        width: 100%;
        height: 150px;
        object-fit: contain;
        margin-bottom: 20px;
        mix-blend-mode: multiply;
        transition: transform 0.3s ease;
    }
    
    .dream-card:hover img {
        transform: scale(1.08);
    }

    .dream-card h4 {
        font-size: 16px;
        color: var(--text-dark);
        margin-bottom: 8px;
        font-weight: 600;
    }

    .dream-card p {
        font-size: 14px;
        color: #999;
    }

/* Footer */
.footer {
    background-color: var(--primary-green);
    background: linear-gradient(135deg, #0e6d42 0%, #064225 100%);
    color: var(--text-white);
    padding: 80px 5% 40px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    margin-top: 80px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-col {
    /* Removed flex: 1 so columns don't stretch fully */
}

.footer-left h2 {
    font-size: 36px;
    font-weight: 300;
    line-height: 1.2;
}

    .footer-left h2 .highlight {
        font-weight: 700;
        color: #a8e6cf;
    }

.footer-description {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

.footer-center p, .footer-right p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.social-icons {
    display: flex;
    gap: 15px;
}

    .social-icons a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s ease;
    }

        .social-icons a:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }

.footer-center-links {
    display: flex;
    justify-content: flex-start;
    gap: 100px;
}
.footer-right-icons {
    display: flex;
    justify-content: flex-end;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: white;
}
.footer-heading {
    color: white;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

/* Responsive Updates */
@media (max-width: 1024px) {
    .header::before {
        display: none !important;
    }
    .hero-full::before {
        clip-path: none !important;
    }
    .header {
        background-color: transparent;
        transition: background-color 0.3s ease;
    }
    .hamburger-btn, .right-nav .nav-link.dark {
        color: var(--text-white);
        transition: color 0.3s ease;
    }
    .header.scrolled {
        background-color: var(--bg-white);
    }
    .header.scrolled .hamburger-btn,
    .header.scrolled .right-nav .nav-link.dark {
        color: var(--text-dark);
    }

    .main-nav {
        display: flex;
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        bottom: auto;
        width: 100%;
        max-width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 40px 30px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transform: none;
        clip-path: inset(0 0 100% 0);
        opacity: 0;
        visibility: hidden;
        transition: clip-path 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, visibility 0.4s ease;
        z-index: -2;
        align-items: flex-start;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
    }

        .main-nav.active {
            clip-path: inset(0 -30px -30px -30px);
            opacity: 1;
            visibility: visible;
        }

    .header.nav-open {
        background-color: var(--bg-white);
    }

        .header.nav-open .hamburger-btn,
        .header.nav-open .right-nav .nav-link.dark {
            color: var(--text-dark);
        }

    .main-nav .nav-link {
        color: var(--text-dark);
        font-size: 20px;
        padding: 15px 0;
        width: 100%;
        text-align: left;
    }

        .main-nav .nav-link.dropdown svg path {
            stroke: var(--text-dark);
        }

    .hide-mobile {
        display: none !important;
    }

    .mobile-only-nav {
        display: flex !important;
        align-items: center;
        gap: 8px;
    }

    .hamburger-btn {
        display: flex;
    }

    .hero-section {
        flex-direction: column;
        padding-top: 100px;
        min-height: 100vh;
        text-align: center;
    }

    .hero-left {
        display: none !important;
    }

    .hero-lamp {
        position: relative;
        width: 80%;
        max-width: 350px;
        height: auto;
        inset: auto;
    }

    .lamp-glow {
        top: 50%;
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
        width: 300px;
        height: 300px;
    }

    .hero-right {
        margin-left: 0;
        padding-left: 0;
        padding-top: 20px;
        width: 100%;
        align-items: center;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-title-wrapper {
        display: contents;
    }

    .hero-title {
        order: 1;
        font-size: clamp(32px, 8vw, 80px);
        white-space: normal;
        max-width: 100%;
        word-wrap: break-word;
        padding-left: 0;
        text-align: center;
    }

    .hero-description {
        order: 2;
        padding-left: 0;
        text-align: center;
        margin: 20px 0;
    }

    .search-container {
        order: 3;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .view-all-btn {
        order: 4;
        width: 100%;
        max-width: 350px;
        margin: 15px auto 0 auto;
    }

    .sparkles {
        display: none !important;
    }

    .title-last-line {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .second-section-wrapper {
        padding-top: 40px;
    }

    .second-section.boxy {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
        gap: 60px; /* Increased gap */
    }

    .stats-container {
        flex: none;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 5%;
        box-sizing: border-box;
    }

    .stats-number {
        margin-bottom: 0;
    }

    .stats-text {
        text-align: right;
    }

    .featured-wrapper {
        width: 100%;
        background-color: var(--bg-grey);
        border-radius: 40px;
        padding: 40px 5%;
        box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        box-sizing: border-box;
    }

    .featured-header {
        position: static;
        width: 100%;
        justify-content: space-between;
    }

    .testimonial-card {
        max-width: 100%;
    }

    .dream-grid {
        grid-auto-columns: calc((100% - 30px) / 2);
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0 5%;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 50px;
    }
    
    .footer-center-links {
        flex-direction: column;
        gap: 40px;
    }
    .footer-right-icons {
        justify-content: flex-start;
        margin-top: 20px;
    }

    .right-nav-container {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-title {
        font-size: clamp(24px, 10vw, 40px);
    }



    .featured-wrapper {
        padding: 30px 5%;
    }

    .stats-number {
        font-size: 80px;
    }

        .stats-number .percent {
            font-size: 50px;
        }

    .stats-text {
        font-size: 18px;
    }

    .dream-grid {
        grid-auto-columns: 100%;
    }

    .footer {
        padding: 50px 5% 30px;
        margin-top: 50px;
    }

    .footer-top {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px;
        text-align: left;
    }

    .footer-left h2 {
        font-size: 30px;
    }

    .footer-center-links {
        flex-direction: column;
        gap: 40px;
    }


}

/* Animations for stats */
.anim-fade-out-down {
    animation: fadeOutDown 0.5s forwards;
}

.anim-fade-in-top {
    animation: fadeInTop 0.5s forwards;
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

@keyframes fadeInTop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Product Page Specific Styles --- */
.product-page {
    background-color: #f0f2f5;
}

.product-container {
    margin: 120px 4% 40px;
    padding: 0 5%;
}

.product-top {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.product-gallery {
    flex: 1;
    background-color: #ffffff;
    border-radius: 30px;
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: background-color 0.4s ease;
}

    .product-gallery.dark-bg {
        background-color: #222222;
    }

        .product-gallery.dark-bg .main-product-img {
            mix-blend-mode: normal;
        }

.category-tag {
    position: absolute;
    top: 30px;
    left: 40px;
    background-color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.gallery-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 20px;
}

.main-product-img {
    max-width: 60%;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: opacity 0.3s ease;
}

.main-product-img[src*="preview-image-unavailable"] {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: normal;
}

.gallery-dots {
    display: flex;
    gap: 8px;
    margin-top: 30px;
}

    .gallery-dots .dot {
        width: 8px;
        height: 8px;
        border-radius: 8px;
        background-color: #d1d5db;
        cursor: pointer;
        transition: width 0.3s ease, background-color 0.3s ease;
    }

        .gallery-dots .dot.active {
            width: 24px;
            background-color: var(--primary-green);
        }

.product-details {
    flex: 1;
    padding-top: 20px;
}

.product-name {
    font-size: 48px;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.features-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.features-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

    .features-text p {
        margin-bottom: 15px;
    }

.color-options {
    display: flex;
    gap: 15px;
}

.color-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.3s, border-color 0.3s;
}

    .color-btn.dark {
        background-color: #333333;
    }

    .color-btn.light {
        background-color: #e5e5e5;
        border-color: #ccc;
    }

    .color-btn.active {
        transform: scale(1.1);
        border-color: var(--primary-green);
        box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--primary-green);
    }

.product-specs {
    margin-bottom: 150px;
    overflow-x: auto;
    background-color: #ffffff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.specs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    text-align: left;
    font-size: 14px;
}

    .specs-table th {
        background-color: #f0f7f3;
        color: var(--primary-green);
        font-weight: 700;
        padding: 20px 15px;
        font-size: 14px;
        white-space: normal;
        border-bottom: 1px solid #eee;
    }

    .specs-table td {
        padding: 20px 15px;
        color: #444;
        border-bottom: 1px solid #eee;
        font-weight: 500;
    }

    .specs-table tr:hover td {
        background-color: #fafafa;
    }

.related-products {
    margin-bottom: 150px;
}

.related-title {
    font-size: 48px;
    font-weight: 700;
    color: #666;
    margin-bottom: 40px;
    text-align: left;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .product-top {
        flex-direction: column;
    }

    .product-name {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .interactive-room-wrapper {
        display: flex;
        flex-direction: column;
    }

    .room-drawer-slider {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        display: block;
        z-index: 10;
        margin-bottom: 40px;
    }

    .drawer-toggle-btn.desktop-only {
        display: none !important;
    }

    .drawer-nav-controls.mobile-only {
        display: flex !important;
    }

    .drawer-content {
        width: 100% !important;
        background: transparent;
        backdrop-filter: none;
        border-radius: 0;
        box-shadow: none;
        height: auto;
    }

    .room-drawer-slider.expanded .drawer-content {
        width: 100% !important;
    }

    .drawer-track {
        padding: 10px 0;
        gap: 15px;
        -webkit-overflow-scrolling: touch;
    }

    .drawer-card {
        height: auto;
        overflow: visible;
        display: flex;
        flex-direction: column;
        background: transparent;
    }

        .drawer-card img {
            height: 100px;
            border-radius: 8px;
        }

    .drawer-card-info {
        position: relative;
        background: none;
        padding: 8px 0 0 0;
        text-align: center;
    }

    .drawer-card-title {
        color: var(--text-dark);
        font-size: 14px;
    }

    .interactive-room {
        aspect-ratio: 4/3;
    }

    .light-component.hotspot .hover-ring {
        width: 50px;
        height: 50px;
    }

    .light-component.hotspot .popover {
        padding: 5px 10px;
        border-radius: 8px;
    }

    .popover h4 {
        font-size: 11px;
        margin: 0 0 2px;
    }

    .popover p {
        font-size: 10px;
    }

    .light-component.hotspot:hover .popover {
        transform: translate(-50%, -120%) scale(0.9);
    }

        .light-component.hotspot:hover .popover.popover-bottom {
            transform: translate(-50%, 20%) scale(0.9);
        }
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease-out;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* --- Category Page Specific Styles --- */
.category-page {
    background-color: #f8f9fa;
}

.category-container {
    margin: 60px 4% 40px;
    padding: 0 5%;
}

.category-header {
    margin-bottom: 40px;
}

.breadcrumbs {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

    .breadcrumbs a {
        color: var(--text-dark);
        text-decoration: none;
        transition: color 0.3s;
    }

        .breadcrumbs a:hover {
            color: var(--primary-green);
        }

    .breadcrumbs span {
        color: #666;
    }

.category-title {
    font-size: 48px;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.category-desc {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    line-height: 1.6;
}

.category-layout {
    display: flex;
    gap: 40px;
}

.category-sidebar {
    width: 250px;
    flex-shrink: 0;
}

.filter-section {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.filter-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .filter-list li {
        margin-bottom: 12px;
    }

    .filter-list label {
        font-size: 14px;
        color: #555;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .filter-list input[type="checkbox"] {
        accent-color: var(--primary-green);
        width: 16px;
        height: 16px;
    }

.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .price-inputs input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-family: inherit;
        font-size: 14px;
    }

.color-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.color-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

    .color-dot:hover {
        transform: scale(1.1);
    }

.category-main {
    flex: 1;
}

.category-sort {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 14px;
    color: #666;
}

/* Custom Dropdown */
.custom-dropdown {
    position: relative;
    font-size: 14px;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-white);
    border: 1px solid #ddd;
    border-radius: 30px;
    font-family: inherit;
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
    outline: none;
    transition: all 0.3s;
}

    .dropdown-toggle:hover {
        border-color: #bbb;
    }

.dropdown-arrow {
    transition: transform 0.3s;
}

.custom-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    list-style: none;
    padding: 10px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
    border: 1px solid #eee;
}

.custom-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 10px 20px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    color: #555;
    white-space: nowrap;
}

    .dropdown-item:hover, .dropdown-item.active {
        background: #f8f9fa;
        color: var(--primary-green);
        font-weight: 500;
    }

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.category-card {
    background-color: var(--bg-white);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .category-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }

.card-img-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    background: #f4f6f8;
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .card-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        mix-blend-mode: normal;
    }

.tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

    .tag.new {
        background-color: var(--primary-green);
    }

    .tag.sale {
        background-color: #e74c3c;
    }

.card-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    flex: 1;
}

    .card-info h4 {
        font-size: 16px;
        font-weight: 600;
        color: var(--text-dark);
        margin-bottom: 8px;
    }

    .card-info .price {
        font-size: 16px;
        font-weight: 700;
        color: var(--primary-green);
        margin-bottom: 12px;
        margin-top: auto;
    }

        .card-info .price del {
            color: #999;
            font-size: 14px;
            font-weight: 500;
            margin-right: 8px;
        }

    .card-info .colors {
        display: flex;
        gap: 6px;
    }

        .card-info .colors span {
            width: 16px;
            height: 16px;
            border-radius: 50%;
            border: 1px solid #ddd;
        }

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.page-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    border: none;
    background: var(--bg-white);
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .page-btn:hover {
        background: #e2e5e9;
    }

    .page-btn.active {
        background: var(--primary-green);
        color: white;
    }

    .page-btn:last-child {
        width: auto;
        padding: 0 20px;
        border-radius: 20px;
    }

@media (max-width: 991px) {
    .category-layout {
        flex-direction: column;
    }

    .category-sidebar {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .filter-section {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .category-title {
        font-size: 36px;
    }

    .category-sidebar {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

/* Banner Slider */
.category-banner-wrapper {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 0;
    height: 400px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.category-banner-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 90px 80px 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

    .banner-slide.active {
        opacity: 1;
        pointer-events: auto;
    }

.banner-content {
    position: relative;
    flex: 1;
    color: white;
    max-width: 50%;
    z-index: 2;
}

    .banner-content.dark-text {
        color: var(--text-dark);
    }

        .banner-content.dark-text p {
            color: var(--text-dark);
        }

    .banner-content h2 {
        font-size: 40px;
        font-weight: 300;
        margin-bottom: 10px;
    }

    .banner-content p {
        font-size: 16px;
        margin-bottom: 25px;
        opacity: 0.9;
    }

.banner-btn {
    display: inline-block;
    padding: 12px 30px;
    background: white;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .banner-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .banner-btn.dark {
        background: var(--text-dark);
        color: white;
    }

.banner-img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 60%;
    object-fit: cover;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 40%);
    mask-image: linear-gradient(to right, transparent 0%, black 40%);
}

.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.8);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

    .banner-arrow:hover {
        background: white;
    }

.prev-banner {
    left: 20px;
}

.next-banner {
    right: 20px;
}

.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.b-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

    .b-dot.active {
        width: 24px;
        border-radius: 4px;
        background: white;
    }

.banner-slide:nth-child(2) .b-dot {
    background: rgba(0,0,0,0.2);
}

    .banner-slide:nth-child(2) .b-dot.active {
        background: var(--text-dark);
    }

@media (max-width: 768px) {
    .category-banner-wrapper {
        height: 300px;
    }

    .banner-slide {
        padding: 90px 40px 0;
    }

    .banner-content h2 {
        font-size: 28px;
    }

    .banner-img {
        display: block;
        width: 100%;
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 60%);
        mask-image: linear-gradient(to bottom, transparent 0%, black 60%);
    }

    .banner-content {
        max-width: 100%;
        text-align: center;
    }
}

.product-name.is-long {
    font-size: 42px !important;
}

@media (max-width: 991px) {
    .product-name.is-long {
        font-size: 32px !important;
    }
}

/* Styles imported from all-products.html */

/* Reference Image Category Styles */
.ref-cat-header {
    text-align: center;
    margin: 80px 0 30px;
}

.ref-cat-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

    .ref-cat-title-container::before,
    .ref-cat-title-container::after {
        content: '';
        width: 40px;
        height: 2px;
        background: #d4a373;
    }

    .ref-cat-title-container h2 {
        font-size: 1.4rem;
        font-weight: 700;
        color: #111;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

.ref-cat-header p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.ref-cat-wrapper {
    position: relative;
    max-width: 1440px;
    margin: 0 auto 80px;
    padding: 0 40px;
}

.ref-cat-track {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-behavior: smooth;
    padding: 15px 0 25px;
}

    .ref-cat-track::-webkit-scrollbar {
        display: none;
    }

.new-cat-card {
    min-width: 260px;
    width: 260px;
    max-width: 260px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    padding-bottom: 25px;
    scroll-snap-align: start;
    border: 1px solid #f0f0f0;
}

    .new-cat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

.new-cat-img {
    width: 100%;
    height: 180px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    position: relative;
}

    .new-cat-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .new-cat-img::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 50px;
        background: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0));
    }

.new-cat-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -24px;
    z-index: 2;
    border: 3px solid #fff;
    color: #fff;
}

    .new-cat-icon svg {
        width: 22px;
        height: 22px;
        fill: none;
        stroke: #fff;
        stroke-width: 2;
    }

.new-cat-title {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin: 15px 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 15px;
    text-align: center;
    box-sizing: border-box;
    display: block;
    width: 100%;
    word-break: break-word;
}

.new-cat-link {
    font-size: 0.85rem;
    color: #666;
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    padding: 0 15px;
    word-break: break-word;
    font-weight: 500;
}

.ref-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    color: #444;
}

    .ref-arrow.left {
        left: 10px;
    }

    .ref-arrow.right {
        right: 10px;
    }

/* Minimalist Edge-to-Edge Product Grid */
.editorial-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 120px;
    padding: 0 40px;
}

.prod-minimal {
    text-decoration: none;
    color: #000;
    position: relative;
    display: block;
}

.prod-minimal-img {
    width: 100%;
    aspect-ratio: 4/5;
    background: #f4f4f4;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 24px;
    position: relative;
}

    .prod-minimal-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    }

.prod-minimal:hover .prod-minimal-img img {
    transform: scale(1.05);
}

.quick-add {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    color: #000;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.prod-minimal:hover .quick-add {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.prod-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.prod-text h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}

.prod-text p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

.prod-rating {
    display: flex;
    align-items: center;
    gap: 3px;
}

    .prod-rating svg {
        width: 16px;
        height: 16px;
        fill: #111;
    }

/* Reference Image Promo Grid */
.ref-promo-grid {
    display: flex;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 40px;
}

.ref-promo-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ref-promo-right {
    flex: 1;
}

.ref-promo-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #f4f4f4;
    display: block;
}

    .ref-promo-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 100%);
        z-index: 1;
        pointer-events: none;
    }

    .ref-promo-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .ref-promo-card:hover img {
        transform: scale(1.05);
    }

.ref-promo-content {
    position: absolute;
    top: 40px;
    left: 40px;
    color: white;
    z-index: 2;
    right: 20px;
}

.promo-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.9;
    text-transform: uppercase;
}

.ref-promo-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 10px 0 15px;
    line-height: 1.25;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.ref-promo-content p {
    font-size: 0.95rem;
    max-width: 250px;
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.promo-btn {
    background: #111;
    color: white;
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s;
}

    .promo-btn:hover {
        background: #333;
    }

@media (max-width: 900px) {
    .ref-promo-grid {
        flex-direction: column;
        padding: 0 20px;
    }

    .ref-promo-right .ref-promo-card {
        height: 350px !important;
    }
}

/* Reference Image Bestsellers Carousel */
.ref-bestsellers-section {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 120px;
    padding: 80px 20px 0;
}

.ref-bestsellers-info {
    grid-column: 1 / span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ref-bestsellers-products {
    display: contents;
}

@media (max-width: 1024px) {
    .ref-bestsellers-section {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .ref-bestsellers-info {
        width: 100%;
        margin-bottom: 24px;
    }

    .ref-bestsellers-products {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        flex-wrap: nowrap;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        gap: 24px;
        padding-bottom: 20px;
    }

        .ref-bestsellers-products::-webkit-scrollbar {
            display: none;
        }

    .ref-product-card {
        flex: 0 0 220px;
        scroll-snap-align: start;
    }
}

@media (max-width: 768px) {
    .ref-product-card {
        flex: 0 0 160px;
    }
}

.ref-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.ref-bestsellers-info h2 {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.1;
    color: #111;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}

.ref-bestsellers-info p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 35px;
}

.ref-view-all-btn {
    display: inline-flex;
    align-items: center;
    background: #4a5c43; /* Earthy dark green */
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    width: fit-content;
    transition: background 0.3s;
}

    .ref-view-all-btn:hover {
        background: #394734;
    }

.ref-product-card {
    min-width: 0;
    direction: ltr;
    text-decoration: none;
}

.ref-pc-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    background: #f4f4f4;
    margin-bottom: 18px;
}

    .ref-pc-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.ref-product-card:hover .ref-pc-image img {
    transform: scale(1.05);
}

.ref-wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    z-index: 2;
    transition: transform 0.2s;
}

    .ref-wishlist-btn:hover {
        transform: scale(1.1);
    }

    .ref-wishlist-btn svg {
        width: 16px;
        height: 16px;
        fill: none;
        stroke: #555;
        stroke-width: 2;
    }

.ref-pc-rating-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: white;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #111;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    z-index: 2;
}

    .ref-pc-rating-badge::before {
        content: '★';
        color: #FFC800;
        font-size: 0.9rem;
    }

.ref-pc-details h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #111;
    margin: 0 0 6px;
}

.ref-pc-spec {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
    margin-bottom: 5px;
}

.ref-pc-colors {
    display: flex;
    gap: 8px;
}

    .ref-pc-colors span {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        display: inline-block;
        box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
    }

@media (max-width: 1024px) {
    .ref-bestsellers-section {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .ref-bestsellers-info {
        width: 100%;
        margin-bottom: 24px;
    }

    .ref-bestsellers-products {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        flex-wrap: nowrap;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        gap: 24px;
        padding-bottom: 20px;
    }

        .ref-bestsellers-products::-webkit-scrollbar {
            display: none;
        }

    .ref-product-card {
        flex: 0 0 220px;
        scroll-snap-align: start;
    }
}

@media (max-width: 768px) {
    .ref-product-card {
        flex: 0 0 160px;
    }
}

.ref-carousel-nav {
    display: none;
}

.editorial-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 20px;
}

}

@media (max-width: 768px) {
    .ref-promo-left {
        flex-direction: column;
    }

    .ref-cat-circle {
        width: 80px;
        height: 80px;
    }

    .ref-cat-item span {
        font-size: 0.75rem;
    }

    .ref-product-card {
        min-width: 150px;
    }

    .editorial-products {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.features-banner {
    background-color: var(--primary-green);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 5%;
    margin-bottom: 0px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 220px;
    padding: 15px;
}

.feature-icon svg {
    width: 36px;
    height: 36px;
}

.feature-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 5px;
    letter-spacing: 0.5px;
}

.feature-text p {
    font-size: 0.8rem;
    color: #aaa;
    margin: 0;
    line-height: 1.4;
}

.feature-divider {
    width: 1px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
    .features-banner {
        display: grid;
        grid-template-columns: 1fr 1px 1fr;
        gap: 20px 0;
    }

    .feature-divider:nth-child(4) {
        display: none;
    }

    .feature-divider {
        height: 100%;
    }
}

@media (max-width: 576px) {
    .features-banner {
        grid-template-columns: 1fr;
    }

    .feature-divider {
        display: none;
    }
}
    

/* Contact CTA Section Styles */
.contact-cta-section {
    padding: 120px 5%;
    background-color: var(--bg-white);
}
.contact-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0e6d42 0%, #064225 100%);
    border-radius: 30px;
    padding: 80px 60px;
    box-shadow: 0 20px 50px rgba(12, 105, 57, 0.2);
    position: relative;
    overflow: hidden;
}
.contact-cta-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,200,0,0.15) 0%, rgba(255,200,0,0) 70%);
    border-radius: 50%;
    z-index: 1;
}
.contact-cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}
.contact-cta-wrapper h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
    line-height: 1.2;
}
.contact-cta-wrapper p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 0;
    line-height: 1.6;
}
.contact-cta-action {
    position: relative;
    z-index: 2;
}
.contact-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 50px;
    background-color: var(--accent-yellow);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 200, 0, 0.3);
}
.contact-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 200, 0, 0.4);
}

@media (max-width: 900px) {
    .contact-cta-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 60px 30px;
        gap: 40px;
    }
    .contact-cta-wrapper h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .category-sort {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px !important;
    }

    .filter-list {
        max-height: 250px !important;
    }

    .category-sidebar {
        margin-bottom: 20px;
    }

    .dropdown-menu {
        box-sizing: border-box;
    }
}

/* Classy Standard Contact Banner Styles */
.clean-contact-section {
    padding: 40px 5%;
    background-color: var(--bg-white, #ffffff);
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.clean-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    position: relative;
    min-height: 250px;
}

.clean-contact-content {
    flex: 0 0 45%;
    max-width: 500px;
    position: relative;
    z-index: 2;
    padding-right: 40px;
}

.clean-contact-title {
    font-size: 42px;
    font-weight: 300;
    color: var(--text-dark, #222222);
    margin-bottom: 12px;
    line-height: 1.1;
    font-family: 'Montserrat', sans-serif;
}

.clean-contact-desc {
    font-size: 15px;
    font-weight: 300;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 24px;
}

.clean-contact-action {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.clean-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 45px;
    background-color: var(--text-dark, #222222);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    border: 1px solid var(--text-dark, #222222);
}

.clean-btn:hover {
    background-color: transparent;
    color: var(--text-dark, #222222);
}

.clean-contact-image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    z-index: 1;
}

.clean-contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-mask-image: linear-gradient(115deg, transparent 0%, transparent 20%, black 70%);
    mask-image: linear-gradient(115deg, transparent 0%, transparent 20%, black 70%);
}

@media (max-width: 1024px) {
    .clean-contact-section {
        padding: 40px 0;
    }
    .clean-contact-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 0 5%;
        min-height: auto;
    }
    .clean-contact-content {
        flex: 1;
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 0;
    }
    .clean-contact-action {
        justify-content: center;
    }
    .clean-contact-title {
        font-size: 36px;
    }
    .clean-contact-image-wrapper {
        position: relative;
        width: 100%;
        right: 0;
        height: 250px;
        order: -1;
        margin-bottom: 10px;
    }
    .clean-contact-image {
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 30%, black 85%);
        mask-image: linear-gradient(to bottom, transparent 0%, transparent 30%, black 85%);
    }
}

/* --- New Product Page Styles --- */
.product-hero-banner {
    background: linear-gradient(135deg, #0e6d42 0%, #064225 100%);
    padding: 200px 20px 80px;
    text-align: left;
    color: white;
}
.product-hero-content {
    max-width: 1200px;
    margin: 0 auto;
}
.product-breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 500;
}
.product-breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}
.product-breadcrumb a:hover {
    color: #fff;
}
.product-breadcrumb span {
    margin: 0 8px;
    opacity: 0.6;
}
.product-breadcrumb-active {
    color: #fff;
    font-weight: 700;
}
.product-hero-title {
    font-size: 52px;
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
}
.product-hero-company {
    font-size: 18px;
    margin-top: 10px;
    opacity: 0.9;
    font-family: var(--font-primary, 'Montserrat', sans-serif);
}

.product-image-fit {
    width: 100%;
    min-height: 300px;
    max-height: 500px;
    object-fit: contain;
}

.product-actions-row {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}
.product-qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    height: 42px;
}
.product-qty-selector button {
    background: none;
    border: none;
    padding: 0 12px;
    font-size: 18px;
    cursor: pointer;
    color: #555;
    height: 100%;
}
.product-qty-selector input {
    width: 75px;
    text-align: center;
    border: none;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    font-size: 15px;
    font-weight: 600;
    padding: 0 5px;
    outline: none;
    height: 100%;
    -moz-appearance: textfield;
}
.product-qty-selector input::-webkit-outer-spin-button,
.product-qty-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.product-add-cart-btn {
    background-color: #0e6d42;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0 20px;
    height: 42px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
    font-family: var(--font-primary, 'Montserrat', sans-serif);
    display: flex;
    align-items: center;
    gap: 6px;
}
.product-add-cart-btn:hover {
    background-color: #0b5835;
}
.product-add-cart-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.wishlist-heart-btn {
    background: none;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: #999;
}
.wishlist-heart-btn:hover {
    border-color: #0e6d42;
    color: #0e6d42;
}
.wishlist-heart-btn.active {
    color: #0e6d42;
    border-color: #0e6d42;
}
.wishlist-heart-btn.active svg {
    fill: #0e6d42;
    stroke: #0e6d42;
}

.wishlist-card-img-wrapper {
    position: relative;
    height: 220px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    padding: 15px;
    box-sizing: border-box;
}
.wishlist-card-img-link {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.wishlist-card-img-link img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: auto;
    display: block;
}

.pdf-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}
.pdf-modal-content {
    background: white;
    border-radius: 12px;
    width: 95%;
    max-width: 1200px;
    height: 90vh;
    display: flex;
    flex-direction: column;
    position: relative;
}
.pdf-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
}
.pdf-modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.rfq-notice {
    background-color: #fff8e1;
    color: #856404;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    border: 1px solid #ffe082;
}

.brochure-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
}

.product-small-outline-btn {
    border: 1px solid #ccc;
    background: white;
    color: #333;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}
.product-small-outline-btn:hover {
    border-color: #0e6d42;
    color: #0e6d42;
}


/* --- Related Products Carousel --- */
.related-carousel-wrapper {
    position: relative;
    padding: 0 40px; /* Space for buttons */
    margin-top: 20px;
}
.related-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding-bottom: 20px; /* For scrollbar */
    scrollbar-width: none; /* Firefox */
}
.related-carousel::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}
.related-carousel .ref-product-card {
    flex: 0 0 calc(33.333% - 14px); /* 3 items per view desktop */
    min-width: 250px;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    color: #333;
}
.carousel-btn:hover {
    background: #f0f0f0;
    border-color: #ccc;
    background: #f9f9f9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.carousel-btn-prev {
    margin-right: -22px;
}
.carousel-btn-next {
    margin-left: -22px;
}

@media (max-width: 992px) {
    .related-carousel > * {
        flex: 0 0 calc(50% - 10px); /* 2 items on tablet */
    }
}

@media (max-width: 576px) {
    .related-carousel > * {
        flex: 0 0 100%; /* 1 item on mobile */
    }
}

/* Back Button */
.product-back-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #555;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
    z-index: 10;
}
.product-back-btn:hover {
    background: #f5f5f5;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .related-carousel .ref-product-card {
        flex: 0 0 calc(50% - 10px); /* 2 items per view tablet */
    }
}
@media (max-width: 576px) {
    .related-carousel .ref-product-card {
        flex: 0 0 100%; /* 1 item per view mobile */
    }
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
}

