@font-face {
    font-family: "AR ESSENCE";
    src: url("https://db.onlinewebfonts.com/t/214be83dc5e681d0e4f8ceb33dd0ea3c.eot");
    src: url("https://db.onlinewebfonts.com/t/214be83dc5e681d0e4f8ceb33dd0ea3c.eot?#iefix") format("embedded-opentype"),
        url("https://db.onlinewebfonts.com/t/214be83dc5e681d0e4f8ceb33dd0ea3c.woff2") format("woff2"),
        url("https://db.onlinewebfonts.com/t/214be83dc5e681d0e4f8ceb33dd0ea3c.woff") format("woff"),
        url("https://db.onlinewebfonts.com/t/214be83dc5e681d0e4f8ceb33dd0ea3c.ttf") format("truetype"),
        url("https://db.onlinewebfonts.com/t/214be83dc5e681d0e4f8ceb33dd0ea3c.svg#AR ESSENCE") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* CSS RESET & VARIABLES */
:root {
    --color-primary: #8da586;
    /* sage green — navbar, buttons, accents */
    --color-primary-dark: #6e8467;
    /* deep sage green */
    --color-primary-tint: #f2f5f1;
    /* light sage green tint */
    --color-white: #FFFFFF;
    /* page background, cards */
    --color-bg-light: #FAF9F6;
    /* alternate section background */
    --color-black: #111111;
    /* footer, strong dark elements */
    --color-dark: #333333;
    /* headings, body text */
    --color-text-muted: #666666;
    /* description text */
    --color-border: #E0E0E0;
    /* card borders, dividers */
    --color-accent: #FF6B35;
    /* sale/offer badges only */
    --white: #FFFFFF;
    --light-grey: #8E8E8E;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    --color-sage: #8da586;
    --color-cream: #F8F7F5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
    background-color: #111411 !important;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-dark);
    background-color: #FAF8F5;
    background-image: none !important;
    line-height: 1.6;
    overflow-x: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
    -webkit-font-smoothing: antialiased;
}

/* ENSURE FULL TRANSPARENCY ACROSS ALL SECTIONS SO BACKGROUND CIRCLES ARE VISIBLE */
section,
.section-padding,
.categories,
.about,
.why-choose-us-section,
.testimonials,
.showrooms-section,
.gallery-page-main,
.projects-section,
.contact-hero-section,
.contact-form-section,
.hero-slider,
.collection-hero,
.about-hero-v2,
.craftsmanship-v2,
.process-v2,
.stats-v2,
.cta-banner-v2,
.newsletter-strip {
    background-color: transparent !important;
}

/* SECTION PADDING REDUCTION FOR CONTENT SECTIONS (EXCLUDING HERO SECTIONS) */
.section-padding,
.categories,
.about,
.why-choose-us-section,
.testimonials,
.showrooms-section,
.gallery-page-main,
.projects-section,
.contact-form-section,
.craftsmanship-v2,
.process-v2,
.stats-v2,
.cta-banner-v2,
.newsletter-strip {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
}

.hero-slider,
.hero-section,
.collection-hero,
.about-hero-v2,
.gallery-hero,
.projects-hero,
.contact-hero-section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.categories,
.showrooms-section,
.why-choose-us-section,
.projects-section {
    background-image: none !important;
}

.about,
.testimonials,
.gallery-page-main,
.contact-hero-section {
    background-image: none !important;
}

.category-card-12,
.showroom-card-v2,
.hotel-project-card,
.testimonial-card,
.feature-card-v2,
.process-step-v2,
.craftsmanship-card-v2 {
    background-color: #FFFFFF !important;
    border-radius: 12px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
    border: 0.5px solid #E0E0E0 !important;
}

h1,
h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--color-dark);
}

h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--color-dark);
}

h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--color-dark);
}

button,
input,
select,
textarea {
    font-family: 'Inter', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* SECTION HEADERS (3-LAYER STRUCTURE) */
.section-header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.section-eyebrow {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #2D7A3A;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 700;
    color: #111111 !important;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.heading-divider {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.divider-line {
    width: 40px;
    height: 1px;
    background-color: #2D7A3A;
}

.divider-diamond {
    font-size: 8px;
    color: #2D7A3A;
    line-height: 1;
}

@media (max-width: 767px) {
    .section-title {
        font-size: 32px;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* UTILITY CLASSES */
.container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 2.25rem 0 !important;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 2.25rem 0;
    }
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 2.25rem;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-size: 2.8rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1.25rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--color-primary);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
}

/* BUTTONS & CTAs */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(92, 61, 46, 0.15);
}

.btn-secondary {
    background-color: transparent;
    border: 1.5px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-gold {
    background-color: var(--color-primary);
    color: var(--white);
}

.btn-gold:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(201, 151, 59, 0.15);
}

/* ANNOUNCEMENT BAR & STICKY HEADER */
/* ANNOUNCEMENT BAR (TOP STRIP) */
.top-announcement-strip {
    height: 36px;
    background-color: #2D7A3A;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
}

body.announcement-dismissed .top-announcement-strip {
    display: none;
}

.announcement-close-btn {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.85;
    padding: 0.25rem 0.5rem;
}

.announcement-close-btn:hover {
    opacity: 1;
}

.marquee-content {
    display: inline-flex;
    animation: marquee-scroll 35s linear infinite;
}

.marquee-content span {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #FFFFFF;
    padding-right: 6rem;
    display: inline-block;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* BODY ADJUSTMENT */
body {
    padding-top: 0;
}

/* MAIN STICKY HEADER */
header {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    height: 72px;
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9990 !important;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
}

header.scrolled {
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.10);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* LEFT — LOGO BLOCK */
/* LEFT — LOGO BLOCK */
.nav-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-img-wrapper {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.nav-logo-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.logo-title {
    font-family: 'AR ESSENCE', 'AR Essence', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #2D7A3A;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.logo-divider-line {
    width: 40px;
    height: 2px;
    background-color: #2D7A3A;
    margin: 3px 0;
}

.reg-mark {
    font-family: 'Inter', sans-serif;
    font-size: 0.35em;
    font-weight: 500;
    vertical-align: super;
    margin-left: 3px;
    opacity: 0.8;
}

.logo-subtitle {
    font-family: 'AR ESSENCE', 'AR Essence', sans-serif;
    font-size: 14px;
    /* increased since AR essence might be smaller than inter */
    font-weight: 500;
    color: #111111;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-left: 2px;
}

/* CENTER — NAVIGATION LINKS */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link-item {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #111111;
    letter-spacing: 0.3px;
    padding: 8px 16px;
    position: relative;
    text-decoration: none;
    transition: color 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* HOVER slide underline for all links except contact button */
.nav-link-item:not(.nav-btn-contact)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background-color: #2D7A3A;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-link-item:not(.nav-btn-contact):hover {
    color: #2D7A3A;
}

.nav-link-item:not(.nav-btn-contact):hover::after {
    transform: scaleX(1);
}

/* ACTIVE state */
.nav-link-item.active-link:not(.nav-btn-contact) {
    color: #2D7A3A !important;
    font-weight: 600 !important;
}

.nav-link-item.active-link:not(.nav-btn-contact)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background-color: #2D7A3A;
    transform: scaleX(1) !important;
    transform-origin: left;
}

/* COLLECTIONS LINK CHEVRON */
.nav-link-item .chevron {
    display: none !important;
}

/* SPECIAL CTA BUTTON FOR CONTACT */
.nav-btn-contact {
    background-color: #2D7A3A !important;
    color: #FFFFFF !important;
    padding: 8px 24px !important;
    border-radius: 25px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: background-color 0.25s ease, transform 0.25s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
    box-shadow: 0 4px 10px rgba(45, 122, 58, 0.2);
}

.nav-btn-contact:hover {
    background-color: #1A4D22 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(45, 122, 58, 0.3);
}

/* COLLECTIONS MEGA-DROPDOWN */
.nav-item-dropdown {
    position: relative;
}

.collections-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 480px;
    background-color: #FFFFFF;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-top: 3px solid #2D7A3A;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1000;
    overflow: hidden;
    margin-top: 16px;
}

.nav-item-dropdown:hover .collections-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    padding: 1.25rem;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    transition: background-color 0.2s ease, border-radius 0.2s ease;
    text-decoration: none;
}

.dropdown-item:hover {
    background-color: rgba(45, 122, 58, 0.05);
    border-radius: 8px;
}

.dropdown-icon-area {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #E8F5E9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.dropdown-item:hover .dropdown-icon-area {
    background-color: #2D7A3A;
    color: #FFFFFF;
}

.dropdown-text-area {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #111111;
    transition: color 0.2s ease, font-weight 0.2s ease;
}

.dropdown-item:hover .dropdown-text-area {
    color: #2D7A3A;
    font-weight: 600;
}

.dropdown-footer {
    display: block;
    background-color: #E8F5E9;
    color: #2D7A3A;
    font-family: 'AR Essense', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-footer:hover {
    background-color: #2D7A3A;
    color: #FFFFFF;
}

/* RIGHT — ACTION ICONS */
.nav-action-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #444444;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: color 0.25s ease, background-color 0.25s ease;
    padding: 0;
}

.nav-icon-btn:hover {
    color: #2D7A3A;
    background-color: rgba(45, 122, 58, 0.05);
}

.phone-icon-wrapper {
    position: relative;
    display: inline-block;
}

.phone-tooltip {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #111111;
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    white-space: nowrap;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 100;
}

.phone-tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(2px);
}

/* Mobile Hamburger Button Override */
.mobile-menu-btn {
    display: none;
    /* hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    color: #444444;
    transition: color 0.25s ease;
    border-radius: 50%;
}

.mobile-menu-btn:hover {
    color: #2D7A3A;
    background-color: rgba(45, 122, 58, 0.05);
}

/* MOBILE MENU DRAWER OVERLAY */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #111111;
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 6rem 2rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.mobile-nav-overlay.open {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #FFFFFF;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
}

.mobile-nav-close:hover {
    color: #2D7A3A;
    transform: rotate(90deg);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
}

.mobile-link {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-link:hover,
.mobile-link.active-link {
    color: #2D7A3A;
}

.mobile-link-accent {
    color: #E8F5E9;
    /* light green tint */
    border-bottom: 2px solid #2D7A3A;
    padding-bottom: 4px;
}

/* SEARCH OVERLAY */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 2100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-overlay.open {
    opacity: 1;
    visibility: visible;
}

.search-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    color: #111111;
    transition: color 0.2s ease, transform 0.2s ease;
}

.search-close-btn:hover {
    color: #2D7A3A;
    transform: rotate(90deg);
}

.search-container {
    width: 90%;
    max-width: 600px;
}

.search-form {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #2D7A3A;
    padding-bottom: 0.5rem;
}

.search-input {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #111111;
    padding: 0 1rem 0 0;
}

.search-input::placeholder {
    color: #888888;
}

.search-submit-btn {
    background: none;
    border: none;
    color: #2D7A3A;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.search-submit-btn:hover {
    transform: scale(1.1);
}

.search-results {
    margin-top: 2rem;
    max-height: 50vh;
    overflow-y: auto;
    text-align: left;
}

.search-result-item {
    display: block;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-fast);
}

.search-result-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(45, 122, 58, 0.12);
}

.search-result-type {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 0.35rem;
}

.search-result-title {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--color-black);
    margin-bottom: 0.25rem;
}

.search-result-sub {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.search-no-results {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-muted);
    text-align: center;
    padding: 1rem;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 991px) {
    .nav-links {
        gap: 0.15rem;
    }

    .nav-link-item {
        padding: 8px 10px;
        font-size: 13px;
    }

    .collections-dropdown {
        width: 440px;
    }
}

@media (max-width: 767px) {
    header {
        height: 60px;
    }

    .top-announcement-strip {
        display: none;
        /* hidden on mobile space */
    }

    .nav-logo-container {
        gap: 8px;
    }

    .nav-logo-img-wrapper {
        width: 34px;
        height: 34px;
    }

    .logo-title {
        font-size: 20px;
    }

    .logo-subtitle {
        font-size: 8px;
        letter-spacing: 4px;
    }

    .logo-divider-line {
        width: 30px;
    }

    .nav-links {
        display: none;
        /* hidden on mobile */
    }

    .mobile-menu-btn {
        display: flex;
    }
}

/* 2. HERO SECTION — LUXURY FULL-SCREEN IMAGE SLIDER */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    background-color: #111111;
    overflow: hidden;
}

.slides-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), visibility 1.2s;
    z-index: 1;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 6s ease-out;
    z-index: 1;
}

.hero-slide.active .slide-bg-image {
    transform: scale(1);
    animation: kenBurns 6s forwards ease-out;
}

@keyframes kenBurns {
    0% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

.hero-slide-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-slide-card {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    padding: 0;
    box-shadow: none;
    max-width: 800px;
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s, opacity 1s ease 0.3s;
}

.hero-slide.active .hero-slide-card {
    transform: translateY(0);
    opacity: 1;
}

.hero-slide-card>* {
    opacity: 0;
    transform: translateY(15px);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
}

.hero-slide.active .hero-slide-card>* {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide.active .hero-eyebrow-pill {
    transition-delay: 0.4s;
}

.hero-slide.active .hero-headline {
    transition-delay: 0.5s;
}

.hero-slide.active .hero-subtext {
    transition-delay: 0.6s;
}

.hero-slide.active .hero-buttons {
    transition-delay: 0.7s;
}

.hero-eyebrow-pill {
    background-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #E8F5E9;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.slide-text-line {
    display: block;
}

.slide-text-line.highlighted {
    background: linear-gradient(120deg, #86efac, #a7f3d0, #34d399, #86efac);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShimmer 4s infinite linear;
    background-size: 200% auto;
}

@keyframes textShimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.hero-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
}

.btn-explore-3d {
    background-color: #FFFFFF !important;
    color: #1A4D22 !important;
    padding: 14px 32px !important;
    border-radius: 6px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    cursor: pointer !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    position: relative !important;
    overflow: hidden !important;
}

.btn-explore-3d::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(45deg);
    transition: 0.5s;
    opacity: 0;
}

.btn-explore-3d:hover::after {
    left: 120%;
    opacity: 1;
    transition: all 0.6s ease-in-out;
}

.btn-explore-3d:hover {
    background-color: #E8F5E9 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 30px rgba(45, 122, 58, 0.4) !important;
}

.btn-catalogue-3d {
    background-color: transparent !important;
    border: 1.5px solid #FFFFFF !important;
    color: #FFFFFF !important;
    padding: 14px 32px !important;
    border-radius: 6px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    display: inline-flex !important;
    align-items: center !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.btn-catalogue-3d:hover {
    background-color: rgba(255, 255, 255, 0.12) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.15) !important;
}

/* GLOWING AMBIENT ORBS */
.hero-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.1;
    pointer-events: none;
    z-index: 2;
    animation: floatOrb 12s infinite ease-in-out;
}

.orb-1 {
    width: 450px;
    height: 450px;
    background: var(--color-primary-tint);
    top: 10%;
    right: 15%;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: var(--color-sage);
    bottom: 5%;
    left: 10%;
    animation-delay: -6s;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translateY(0) scale(1) rotate(0deg);
    }

    50% {
        transform: translateY(-40px) scale(1.15) rotate(180deg);
    }
}

/* SLIDER CONTROLS */
.slider-controls {
    position: absolute;
    bottom: 50px;
    right: 10%;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 10;
}

.control-arrow {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(8px);
}

.control-arrow:hover {
    background: #FFFFFF;
    color: #2D7A3A;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

.slider-counter {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.current-number {
    color: #86efac;
    font-size: 18px;
}

.counter-divider {
    opacity: 0.5;
}

/* PROGRESS BAR */
.slider-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 10;
}

.slider-progress-bar {
    width: 0%;
    height: 100%;
    background: #86efac;
    box-shadow: 0 0 10px #86efac;
}

/* SCROLL INDICATOR */
.hero-scroll-indicator {
    position: absolute;
    bottom: 85px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 3;
    pointer-events: none;
}

.scroll-text {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 3px;
    font-weight: 600;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.scroll-dot {
    width: 1px;
    height: 12px;
    background-color: #FFFFFF;
    position: absolute;
    top: -12px;
    left: 0;
    animation: scrollDot 2s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scrollDot {
    0% {
        top: -12px;
    }

    70%,
    100% {
        top: 40px;
    }
}

/* RESPONSIVE HERO */
@media (max-width: 991px) {
    .hero {
        padding: 100px 0 120px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-left {
        align-items: center;
    }

    .hero-headline-3d {
        font-size: 42px;
        text-align: center;
        align-items: center;
    }

    .hero-subtext-3d {
        text-align: center;
    }

    .hero-buttons-3d {
        justify-content: center;
    }

    .hero-trust-strip {
        text-align: center;
    }

    .hero-right-3d {
        height: 380px;
    }
}

@media (max-width: 575px) {
    .hero-headline-3d {
        font-size: 32px;
    }

    .hero-buttons-3d {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        align-items: stretch;
    }

    .btn-explore-3d,
    .btn-catalogue-3d {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-right-3d {
        display: none;
    }
}

/* BOTTOM OVERLAPPING STATS BAR */
.hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 90%;
    max-width: 1000px;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 0.5px solid #E0E0E0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 24px 30px;
    z-index: 10;
}

.hero-stat-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #E0E0E0;
}

.hero-stat-col:last-child {
    border-right: none;
}

.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #2D7A3A;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-lbl {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* RESPONSIVE STATS BAR */
@media (max-width: 991px) {
    .hero-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        transform: translate(-50%, 30%);
    }

    .hero-stat-col {
        border-right: none;
    }

    .hero-stat-col:nth-child(odd) {
        border-right: 1px solid #E0E0E0;
    }
}

@media (max-width: 575px) {
    .hero-stats-bar {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 20px;
        transform: translate(-50%, 20%);
    }

    .hero-stat-col {
        border-right: none !important;
        border-bottom: 1px solid #E0E0E0;
        padding-bottom: 10px;
    }

    .hero-stat-col:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* 3. ABOUT US */
.about {
    background-color: var(--color-bg-light);
    padding: 100px 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem !important;
    align-items: center;
}

.about-visual {
    position: relative;
    padding: 0.5rem 1rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-bracket-frame {
    position: relative;
    width: 400px;
    height: 400px;
}

.about-bracket-frame::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 60px;
    height: 60px;
    border-top: 3px solid var(--color-primary);
    border-left: 3px solid var(--color-primary);
    pointer-events: none;
    z-index: 1;
}

.about-bracket-frame::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
    border-bottom: 3px solid var(--color-primary);
    border-right: 3px solid var(--color-primary);
    pointer-events: none;
    z-index: 1;
}

.about-card-large {
    width: 100%;
    height: 100%;
    background: url('../images/category_living.png') center/cover no-repeat;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-card-small {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 220px;
    background-color: var(--color-white);
    padding: 2rem 1.5rem;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
    border: 1px solid var(--color-border);
}

.about-quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--color-primary);
    line-height: 1;
    height: 2rem;
    margin-bottom: 0.5rem;
}

.about-quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-style: italic;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.3;
}

.about-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary, #2D7A3A);
    letter-spacing: 1.8px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.75rem;
    white-space: nowrap;
}

.about-eyebrow-break {
    display: none;
}

@media (max-width: 768px) {
    .about-eyebrow {
        white-space: normal;
        font-size: 11px;
        letter-spacing: 1.2px;
        line-height: 1.6;
        display: block;
        text-align: center;
    }
    .about-eyebrow-break {
        display: block;
    }
}

.about-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 4.5vw, 46px);
    color: var(--color-dark);
    line-height: 1.25;
    margin-bottom: 1.25rem;
    font-weight: 700;
    overflow-wrap: break-word;
    word-break: break-word;
}

.about-divider {
    width: 60px;
    height: 2px;
    background-color: var(--color-primary);
    margin-bottom: 2rem;
}

.about-story-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-mini-stats {
    display: flex;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.mini-stat-box {
    flex: 1;
    background-color: var(--color-primary-tint);
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    padding: 1rem 0.75rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    transition: var(--transition-fast);
}

.mini-stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(45, 122, 58, 0.12);
}

.mini-stat-box span {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 0.85rem 2rem;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    text-decoration: none;
}

.about-cta-btn:hover {
    background-color: var(--color-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 122, 58, 0.2);
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }

    .about-visual {
        order: 2;
        padding: 1rem 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .about-bracket-frame {
        width: min(100%, 280px);
        height: auto;
        aspect-ratio: 1 / 1;
        margin: 0 auto;
    }

    .about-card-small {
        width: calc(100% - 20px);
        max-width: 220px;
        bottom: -15px;
        right: 0;
        padding: 1.25rem 1rem;
    }

    .about-quote-text {
        font-size: 16px;
    }

    .about-text-content {
        text-align: center;
    }

    .about-headline {
        font-size: clamp(22px, 5vw, 32px);
        margin-bottom: 1rem;
        text-align: center;
    }

    .about-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .about-story-text {
        font-size: clamp(14px, 3.5vw, 16px);
        line-height: 1.6;
        text-align: left;
        max-width: 100%;
    }

    .about-mini-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 0.75rem;
        margin: 2rem 0;
        width: 100%;
    }

    .mini-stat-box {
        width: 100%;
        max-width: 100%;
        padding: 0.85rem 0.5rem;
    }

    .mini-stat-box span {
        font-size: 0.8rem;
    }
}

/* 4. WHY CHOOSE WINSOME */
.why-choose-us-section {
    background-color: var(--color-bg-light);
    padding: 100px 0;
    color: var(--color-dark);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.promise-card {
    background-color: var(--color-white);
    padding: 3rem 2rem !important;
    border: 1px solid rgba(141, 165, 134, 0.12) !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.promise-card:hover {
    transform: translateY(-4px) !important;
    background-color: var(--color-primary-tint) !important;
    border-color: rgba(141, 165, 134, 0.3) !important;
    box-shadow: 0 12px 30px rgba(141, 165, 134, 0.08) !important;
}

.promise-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--color-primary-tint);
    color: var(--color-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    transition: all 0.4s ease;
}

.promise-card:hover .promise-icon-wrapper {
    background-color: var(--color-white);
    color: var(--color-primary-dark);
}

.promise-svg-icon {
    width: 30px;
    height: 30px;
    stroke: currentColor;
    fill: none;
}

.promise-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-dark);
    letter-spacing: 0.2px;
    text-transform: none;
}

.promise-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

@media (max-width: 991px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 575px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* 5. PRODUCT CATEGORIES */
.categories {
    background-color: var(--color-white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.category-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--color-border);
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card:hover .category-img {
    transform: scale(1.08);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 77, 34, 0.9) 0%, rgba(26, 77, 34, 0.3) 60%, rgba(26, 77, 34, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    z-index: 2;
}

.category-card::after {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    border: 1px solid rgba(201, 151, 59, 0);
    z-index: 3;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.category-card:hover::after {
    border-color: rgba(201, 151, 59, 0.4);
}

.category-title {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.category-card:hover .category-title {
    transform: translateY(0);
}

.category-count {
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.category-card:hover .category-count {
    opacity: 1;
    transform: translateY(0);
}

.category-action {
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(15px);
    transition: var(--transition-smooth);
    display: flex;
    gap: 0.75rem;
}

.category-card:hover .category-action {
    opacity: 1;
    transform: translateY(0);
}

.category-btn {
    font-size: 0.7rem;
    padding: 0.6rem 1.2rem;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    border: 1px solid var(--white);
    background-color: transparent;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-fast);
}

.category-btn:hover {
    background-color: var(--white);
    color: var(--color-dark);
}

.category-btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.category-btn-primary:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--color-primary);
}

@media (max-width: 991px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        height: 320px;
    }

    .category-title {
        transform: translateY(0);
    }

    .category-count,
    .category-action {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 6. FEATURED PRODUCTS SHOWCASE */
.featured-showcase {
    background-color: var(--color-primary-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.featured-carousel-wrapper {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.featured-scroll-row {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 1rem 0.5rem 2rem 0.5rem;
    scrollbar-width: none;
}

.featured-scroll-row::-webkit-scrollbar {
    display: none;
}

.featured-product-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    border-left: 4px solid transparent;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-decoration: none;
}

.featured-product-card:hover {
    transform: translateY(-8px);
    border-left-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.product-image-area {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-product-card:hover .product-card-img {
    transform: scale(1.05);
}

.product-code-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--color-primary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 30px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.product-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-grow: 1;
    align-items: flex-start;
}

.product-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.25;
    text-align: left;
}

.product-category-tag {
    background-color: var(--color-primary-tint);
    color: var(--color-primary-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.4;
    margin-bottom: 0.5rem;
    text-align: left;
}

.product-card-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: auto;
    transition: var(--transition-fast);
}

.featured-product-card:hover .product-card-link {
    gap: 0.6rem;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-white);
    color: var(--color-primary-dark);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition-fast);
}

.carousel-nav-btn:hover {
    background-color: var(--color-primary);
    color: var(--white);
    border-color: var(--color-primary);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav-btn.prev-btn {
    left: -10px;
}

.carousel-nav-btn.next-btn {
    right: -10px;
}

@media (max-width: 1250px) {
    .carousel-nav-btn.prev-btn {
        left: 1rem;
    }

    .carousel-nav-btn.next-btn {
        right: 1rem;
    }
}

@media (max-width: 768px) {
    .carousel-nav-btn {
        display: none;
    }

    .featured-carousel-wrapper {
        padding: 0 1rem;
    }
}

/* 7. MANUFACTURING EXCELLENCE */
.manufacturing {
    background: linear-gradient(to bottom, #FAF9F6, #F2F5F1);
    padding: 100px 0 0 0;
    color: var(--color-dark);
    position: relative;
}

.mfg-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.mfg-eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--color-sage);
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.mfg-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    color: var(--color-dark);
    line-height: 1.2;
    font-weight: 700;
}

.mfg-editorial-grid {
    display: grid;
    grid-template-columns: 0.4fr 0.2fr 0.4fr;
    gap: 4rem;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem 5rem 2rem;
}

/* LEFT COLUMN */
.mfg-visual-left {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: visible;
}

.mfg-gradient-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(20, 30, 22, 0.35) 100%), url('../img/WhatsApp Image 2026-08-12 at 2.07.14 PM.jpeg') center 35% / cover no-repeat;
    filter: brightness(0.98) contrast(1.05) saturate(1.05);
    transition: transform 0.7s cubic-bezier(0.2, 1, 0.3, 1), filter 0.7s ease;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
    border: 1px solid rgba(181, 146, 119, 0.3);
}

.mfg-visual-left:hover .mfg-gradient-placeholder {
    transform: scale(1.04);
    filter: brightness(1.02) contrast(1.06) saturate(1.08);
}

.mfg-visual-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-white);
    color: var(--color-primary-dark);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.6rem 1.25rem;
    border-radius: 30px;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    z-index: 2;
    border: 1px solid rgba(141, 165, 134, 0.15);
}

/* CENTER COLUMN */
.mfg-stats-center {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
    align-items: center;
    border-left: 1px solid rgba(141, 165, 134, 0.2);
    border-right: 1px solid rgba(141, 165, 134, 0.2);
    padding: 1rem 0;
    text-align: center;
}

.mfg-stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
}

.mfg-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary-dark);
    line-height: 1.1;
}

.mfg-stat-lbl {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* RIGHT COLUMN */
.mfg-features-right {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.mfg-feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mfg-feature-point {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--color-dark);
    line-height: 1.4;
    text-align: left;
}

.mfg-feature-point .icon {
    color: var(--color-sage);
    font-size: 1.1rem;
    line-height: 1;
}

.mfg-quote-block {
    border-left: 4px solid var(--color-primary);
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.mfg-quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-style: italic;
    color: var(--color-dark);
    line-height: 1.4;
}

.mfg-quote-author {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-sage);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* BOTTOM BANNER STRIP */
.mfg-banner-strip {
    background-color: var(--color-primary-tint);
    color: var(--color-primary-dark);
    padding: 1.25rem 1rem;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    width: 100%;
    border-top: 1px solid var(--color-border);
}

@media (max-width: 991px) {
    .mfg-editorial-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding-bottom: 4rem;
    }

    .mfg-stats-center {
        border-left: none;
        border-right: none;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem 4rem;
    }

    .mfg-visual-left {
        max-width: 450px;
        margin: 0 auto;
    }

    .mfg-features-right {
        max-width: 550px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 575px) {
    .mfg-title {
        font-size: 38px;
    }

    .mfg-stats-center {
        gap: 2rem;
    }

    .mfg-stat-item {
        flex: 0 0 40%;
    }

    .mfg-banner-strip {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
}

/* 8. TESTIMONIALS */
.testimonials {
    background-color: var(--color-bg-light);
    padding: 80px 0;
    position: relative;
}

.testimonials-badge-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    margin-bottom: 3.5rem;
}

.testimonials-badge {
    background-color: var(--color-white);
    color: var(--color-primary-dark);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(141, 165, 134, 0.15);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.testimonial-card {
    background-color: var(--color-white);
    border-radius: 12px !important;
    padding: 3.5rem 2rem 2.5rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01) !important;
    border: 1px solid rgba(141, 165, 134, 0.12) !important;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.testimonial-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 16px 36px rgba(141, 165, 134, 0.08) !important;
    border-color: var(--color-sage) !important;
}

.testimonial-watermark {
    position: absolute;
    top: -20px;
    left: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    color: var(--color-primary-tint);
    opacity: 0.15;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    font-weight: 900;
}

.testimonial-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.review-product-pill {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: #1a4d22;
    background: #e8f5e9;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.2px;
}

.verified-customer-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: #2D7A3A;
}

.testimonial-text {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.95rem !important;
    font-style: normal !important;
    color: #374151 !important;
    line-height: 1.65 !important;
    text-align: left;
    margin-bottom: 1.5rem;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid var(--color-border);
}

.testimonial-avatar-initials {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.avatar-init-1 {
    background: linear-gradient(135deg, #2D7A3A, #1A4D22);
}

.avatar-init-2 {
    background: linear-gradient(135deg, #b59277, #8B5E3C);
}

.avatar-init-3 {
    background: linear-gradient(135deg, #2c3e50, #1a252f);
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.testimonial-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--color-dark);
}

.testimonial-city {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* TESTIMONIALS MOBILE SLIDER & BUTTON STYLING */
.testimonial-nav-btn,
.testimonial-dots {
    display: none;
}

@media (max-width: 991px) {
    .testimonials-mobile-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 650px;
        margin: 0 auto;
        padding: 0 45px;
    }

    .testimonials-grid {
        display: block !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .testimonial-card {
        display: none !important;
    }

    .testimonial-card.active {
        display: flex !important;
        animation: testimonialFadeIn 0.4s ease-out forwards;
    }

    .testimonial-nav-btn {
        display: flex !important;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background-color: #FFFFFF;
        border: 1px solid rgba(45, 122, 58, 0.25);
        color: #2D7A3A;
        font-size: 22px;
        font-weight: 700;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.25s ease;
        z-index: 10;
    }

    .testimonial-nav-btn:hover {
        background-color: #2D7A3A;
        color: #FFFFFF;
        border-color: #2D7A3A;
        transform: translateY(-50%) scale(1.08);
    }

    .prev-testimonial {
        left: 0;
    }

    .next-testimonial {
        right: 0;
    }

    .testimonial-dots {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 1.75rem;
    }

    .testimonial-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: rgba(45, 122, 58, 0.25);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .testimonial-dot.active {
        width: 24px;
        border-radius: 12px;
        background-color: #2D7A3A;
    }
}

@keyframes testimonialFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Showrooms Section */
.showrooms-section {
    background-color: var(--color-white);
    padding: 80px 0;
    position: relative;
}

.showrooms-grid {
    display: flex;
    gap: 1.5rem;
    margin: 3rem auto 0 auto;
    max-width: 1600px;
    padding: 0 1rem;
}

.showroom-card {
    flex: 1;
    background-color: var(--color-bg-light);
    border-radius: 8px;
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Card 1 is flagship, slightly larger and highlighted */
.showroom-card.flagship {
    border-color: var(--color-primary);
    transform: scale(1.03);
    background-color: var(--color-white);
    box-shadow: 0 15px 35px rgba(45, 122, 58, 0.08);
    z-index: 2;
}

.showroom-card.flagship:hover {
    transform: scale(1.05) translateY(-4px);
}

.showroom-card:not(.flagship):hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    background-color: var(--color-white);
}

.showroom-pin-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-primary-tint);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.showroom-badge {
    position: absolute;
    top: 1rem;
    background-color: var(--color-primary);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.showroom-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.showroom-address {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.showroom-delivery {
    font-size: 0.75rem;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.showroom-hours {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-bottom: 1rem;
}

.showroom-phone {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    margin-bottom: 1.25rem;
    transition: var(--transition-fast);
}

.showroom-phone:hover {
    color: var(--color-primary-dark);
}

.showroom-directions {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: var(--transition-fast);
}

.showroom-directions:hover {
    gap: 0.5rem;
}

.showroom-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background-color: var(--color-primary);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 0 0 2px 2px;
}

.showroom-card:hover::after {
    width: 100%;
    left: 0;
}

@media (max-width: 1200px) {
    .showrooms-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .showroom-card {
        flex: 0 0 calc(33.333% - 1rem);
    }

    .showroom-card.flagship {
        transform: none;
    }

    .showroom-card.flagship:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 991px) {
    .showroom-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .showrooms-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 2rem;
        gap: 1.5rem;
        justify-content: flex-start;
        scrollbar-width: none;
    }

    .showrooms-grid::-webkit-scrollbar {
        display: none;
    }

    .showroom-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }
}


/* 9. GALLERY / LOOKBOOK */
.gallery-section {
    background-color: var(--color-bg-light);
    padding: 100px 0;
}

.gallery-masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}

.gallery-masonry-item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 390px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--color-border, #e5e7eb);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.gallery-masonry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.gallery-card-img-wrap {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
    background-color: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.gallery-card-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.gallery-masonry-item:hover .gallery-card-img {
    transform: scale(1.04);
}

.gallery-wood-badge-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--color-primary, #1A4D22);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.gallery-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    background: #ffffff;
}

.gallery-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark, #1A4D22);
    margin-bottom: 0.35rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gallery-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid #f3f4f6;
}

.gallery-card-cat-name {
    font-size: 0.82rem;
    color: #6b7280;
    text-transform: capitalize;
    font-weight: 500;
}

.gallery-card-view-btn {
    font-size: 0.85rem;
    font-weight: 700;
    color: #C9973B;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.gallery-collection-tag {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary-tint);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-instagram-strip {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.instagram-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.instagram-link {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.instagram-link:hover {
    color: var(--color-primary-dark);
    transform: scale(1.03);
}

.instagram-followers {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #2D7A3A;
    font-weight: 600;
    background: #E8F5E9;
    padding: 6px 18px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(45, 122, 58, 0.18);
    box-shadow: 0 2px 8px rgba(45, 122, 58, 0.06);
}

@media (max-width: 991px) {
    .gallery-masonry-grid {
        column-count: 2;
        column-gap: 1.5rem;
    }

    .gallery-masonry-item.height-tall {
        height: 360px;
    }

    .gallery-masonry-item.height-medium {
        height: 280px;
    }

    .gallery-masonry-item.height-square {
        height: 220px;
    }
}

@media (max-width: 575px) {
    .gallery-masonry-grid {
        column-count: 1;
        column-gap: 0;
    }

    .gallery-masonry-item.height-tall,
    .gallery-masonry-item.height-medium,
    .gallery-masonry-item.height-square {
        height: 280px;
    }
}

/* 10. CONTACT & ENQUIRY FORM */
.contact {
    background-color: #EDE8DF;
    padding: 100px 0;
}

.contact-section-title-wrapper {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #5C3D2E;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: #5C3D2E;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.5;
    opacity: 0.9;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: stretch;
}

/* LEFT COLUMN: CONTACT INFO PANEL */
.contact-info-panel {
    background-color: #5C3D2E;
    color: #ffffff;
    padding: 3.5rem;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

.panel-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 1.5rem;
    margin-bottom: 0.5rem;
}

.panel-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.panel-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.panel-icon {
    font-size: 1.5rem;
    line-height: 1.2;
    flex-shrink: 0;
}

.panel-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #C9973B;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.panel-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.panel-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.panel-link:hover {
    color: #C9973B;
}

.panel-social-strip {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-social-icons {
    display: flex;
    gap: 0.75rem;
}

.panel-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.panel-social-icons a:hover {
    transform: scale(1.1);
}

.panel-social-info {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.panel-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-style: italic;
    color: #C9973B;
    text-align: center;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.75rem;
    line-height: 1.4;
}

/* RIGHT COLUMN: ENQUIRY CARD */
.contact-enquiry-card {
    background-color: #ffffff;
    padding: 3.5rem;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #EEDECA;
    display: flex;
    flex-direction: column;
    position: relative;
}

.enquiry-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #5C3D2E;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.enquiry-card-underline {
    width: 60px;
    height: 2.5px;
    background-color: #C9973B;
    margin-bottom: 2.5rem;
}

.contact-enquiry-card .form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.contact-enquiry-card .form-group label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #5C3D2E;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-enquiry-card .form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid #E0E0E0;
    border-radius: 6px;
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #333333;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-enquiry-card .form-control:focus {
    border: 1.5px solid #C9973B !important;
    box-shadow: 0 0 0 3px rgba(201, 151, 59, 0.15) !important;
}

.contact-enquiry-card .form-control-select {
    cursor: pointer;
    padding-right: 2rem;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9973B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
}

.contact-enquiry-card .form-control-textarea {
    min-height: 110px;
    resize: vertical;
}

.contact-enquiry-card .error-message {
    font-size: 0.75rem;
    color: #D32F2F;
    margin-top: 0.25rem;
    display: none;
    font-weight: 500;
}

.contact-enquiry-card .form-control.invalid {
    border-color: #D32F2F;
}

.contact-enquiry-card .form-control.invalid~.error-message {
    display: block;
}

.btn-submit-enquiry {
    width: 100%;
    background-color: #C0622A;
    color: #ffffff;
    padding: 1.1rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    margin-top: 1rem;
}

.btn-submit-enquiry:hover {
    background-color: #a8501e;
    box-shadow: 0 8px 25px rgba(192, 98, 42, 0.25);
}

.btn-submit-enquiry .arrow-icon {
    width: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-submit-enquiry:hover .arrow-icon {
    width: 18px;
    opacity: 1;
    transform: translateX(0);
}

.enquiry-disclaimer {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #666666;
    line-height: 1.4;
    text-align: center;
    margin-top: 1.75rem;
}

/* GENERAL FORM STYLE FALLBACKS FOR MODAL POPUP */
.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    position: relative;
}

.form-label {
    position: absolute;
    left: 0;
    top: 0.75rem;
    font-size: 0.9rem;
    color: var(--light-grey);
    pointer-events: none;
    transition: var(--transition-smooth);
    font-family: 'Inter', sans-serif;
}

.form-control {
    width: 100%;
    padding: 0.75rem 0;
    border: none;
    border-bottom: 1.5px solid #E0E0E0;
    background-color: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--color-dark);
    outline: none;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-bottom-color: var(--color-primary);
}

/* Label float styling */
.form-control:focus~.form-label,
.form-control:not(:placeholder-shown)~.form-label {
    top: -1.25rem;
    font-size: 0.75rem;
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-control-select {
    cursor: pointer;
    padding-right: 1.5rem;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238E8E8E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 16px;
}

.form-control-textarea {
    min-height: 100px;
    resize: vertical;
}

.error-message {
    font-size: 0.75rem;
    color: #D32F2F;
    margin-top: 0.25rem;
    display: none;
    font-weight: 500;
}

.form-control.invalid {
    border-bottom-color: #D32F2F;
}

.form-control.invalid~.error-message {
    display: block;
}

.form-submit-wrapper {
    margin-top: 1rem;
}

.form-submit-wrapper .btn {
    width: 100%;
}

@media (max-width: 991px) {
    .contact-section-title {
        font-size: 36px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .contact-info-panel,
    .contact-enquiry-card {
        padding: 2.5rem;
    }
}

@media (max-width: 575px) {
    .contact {
        padding: 60px 0;
    }

    .contact-section-title {
        font-size: 28px;
    }

    .contact-info-panel,
    .contact-enquiry-card {
        padding: 2rem 1.25rem;
    }

    .panel-logo {
        font-size: 1.8rem;
    }

    .panel-social-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* 11. FOOTER */
.main-footer {
    background-color: #111411 !important;
    color: #ffffff;
    padding: 50px 0 0 !important;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0 !important;
    overflow-x: hidden;
}

.footer-bottom {
    background-color: transparent !important;
    padding: 1.5rem 1rem !important;
    border-top: none !important;
    margin-top: 2rem !important;
    margin-bottom: 0 !important;
    width: 100% !important;
    text-align: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
}

.footer-bottom p {
    margin: 0 !important;
    padding: 0 !important;
}

.brand-desc,
.brand-eyebrow,
.brand-title,
.contact-detail-row,
.footer-links-list a {
    overflow-wrap: break-word;
    word-break: break-word;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.6fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 992px) {
    .explore-col {
        padding-left: 2.5rem !important;
    }
}

.footer-links-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.6rem 1.5rem !important;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.brand-title {
    font-family: 'AR ESSENCE', 'AR Essence', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #FAF7F2;
    letter-spacing: 1px;
}

.brand-subtitle {
    font-family: 'AR ESSENCE', 'AR Essence', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-sage);
    letter-spacing: 2px;
    margin-top: 3px;
}

.brand-divider {
    width: 40px;
    height: 1.5px;
    background-color: var(--color-sage);
    margin-bottom: 1rem;
}

.brand-eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--color-primary-tint);
    margin-bottom: 0.5rem;
}

.brand-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.25rem;
}

.footer-social-icons {
    display: flex;
    gap: 0.75rem;
}

.footer-social-icons a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FAF7F2;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background-color: var(--color-sage);
    border-color: var(--color-sage);
    color: #111411;
    transform: translateY(-2px);
}

.footer-col-heading {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-sage);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links-list a {
    font-size: 0.9rem;
    color: rgba(250, 247, 242, 0.8);
    transition: all 0.2s ease;
    text-decoration: none;
}

.footer-links-list a:hover {
    color: var(--color-sage);
    padding-left: 2px;
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0;
}

.contact-detail-row {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
}

.contact-svg-icon {
    stroke: var(--color-sage);
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-link {
    color: rgba(250, 247, 242, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: var(--color-sage);
}

.footer-middle-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.05);
    margin: 2rem 0 1.5rem;
}

.showroom-strip-compact {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
}

.showroom-strip-compact span {
    margin-right: 0.5rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--color-sage);
}

.showroom-strip-compact strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.footer-bottom-strip {
    background-color: #0b0d0b;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-bottom-left,
.footer-bottom-right {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.4;
}

@media (max-width: 991px) {
    .main-footer {
        padding: 2.5rem 0 1.5rem !important;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .main-footer .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .footer-top-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.75rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .collections-col {
        display: none !important;
    }

    .explore-col {
        padding-left: 1.25rem !important;
        width: 100% !important;
        margin-top: 0.5rem !important;
        box-sizing: border-box !important;
    }

    .explore-col .footer-links-list {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.75rem 1.5rem !important;
    }

    .footer-col {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 767px) {
    .footer-col-heading {
        font-size: 10px !important;
        letter-spacing: 1.5px !important;
        margin-bottom: 0.75rem !important;
    }

    .footer-links-list {
        gap: 0.35rem !important;
    }

    .footer-links-list a {
        font-size: 12.5px !important;
    }

    .footer-logo {
        flex-wrap: wrap !important;
        gap: 8px !important;
    }

    .brand-title {
        font-size: clamp(20px, 5.5vw, 26px) !important;
    }

    .brand-subtitle {
        font-size: clamp(12px, 3.2vw, 15px) !important;
    }

    .brand-desc {
        font-size: 13.5px !important;
        line-height: 1.6 !important;
        max-width: 100% !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .contact-detail-row {
        font-size: 13px !important;
        line-height: 1.5 !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .showroom-strip-compact {
        flex-direction: column !important;
        gap: 0.35rem !important;
        text-align: center !important;
    }

    .footer-bottom-container {
        flex-direction: column !important;
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0.5rem !important;
        padding: 0 15px !important;
        box-sizing: border-box !important;
    }

    .footer-bottom-left,
    .footer-bottom-right {
        text-align: center !important;
        font-size: 11px !important;
    }
}

/* 12. ENQUIRY MODAL */
#enquiryModal,
.modal {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 999999 !important;
}

#enquiryModal.open,
#enquiryModal.active,
.modal.open,
.modal.active {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    background-color: rgba(0, 0, 0, 0.75) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}

.modal-content {
    background-color: var(--color-white);
    width: 90%;
    max-width: 550px;
    padding: 4rem 3.5rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: scale(0.9);
    transition: cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
    border: 1px solid var(--color-border);
}

.modal.open .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-dark);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--color-primary);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    font-size: 0.85rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 2.5rem;
    display: block;
}

@media (max-width: 575px) {
    .modal-content {
        padding: 3rem 1.5rem;
    }
}

/* SUCCESS MESSAGE POPUP */
.success-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.success-overlay.show {
    opacity: 1;
    visibility: visible;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--color-primary-tint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 2rem;
    transform: scale(0.5);
    transition: cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s 0.2s;
}

.success-overlay.show .success-icon {
    transform: scale(1);
}

.success-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.success-text {
    font-size: 0.95rem;
    color: var(--color-dark);
    opacity: 0.85;
    margin-bottom: 2.5rem;
}

/* 13. IMAGE LIGHTBOX (LUXURY SPLIT CARD) */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    background-color: rgba(12, 16, 14, 0.94) !important;
    backdrop-filter: blur(12px) !important;
    z-index: 999999 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

.lightbox:not(.open) {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.lightbox:not(.open) * {
    display: none !important;
}

.lightbox.open {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.lightbox-split-card {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 1040px;
    min-height: 520px;
    max-height: 88vh;
    background: rgba(22, 28, 24, 0.95);
    border: 1px solid rgba(201, 151, 59, 0.35);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(141, 165, 134, 0.15);
    backdrop-filter: blur(20px);
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    cursor: pointer;
    color: #ffffff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    transition: all 0.25s ease;
    z-index: 200;
}

.lightbox-close:hover {
    color: #ffffff;
    background: #C9973B;
    border-color: #C9973B;
    transform: scale(1.1) rotate(90deg);
}

.lightbox-media-col {
    flex: 1.2;
    background: #0d110e;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-main-img-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(25, 25, 25, 0.7);
    border: 1px solid rgba(255,255,255,0.15);
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
}

.lightbox-nav-btn:hover {
    background: #C9973B;
    border-color: #C9973B;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 10px;
}

.lightbox-next {
    right: 10px;
}

.lightbox-img {
    max-width: 100%;
    max-height: 58vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
}

.lightbox-thumbnails-row {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.lightbox-info-col {
    flex: 1;
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
    background: linear-gradient(145deg, rgba(26, 34, 29, 0.95), rgba(18, 24, 20, 0.98));
}

.lightbox-info-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.lightbox-meta-strip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.lightbox-category-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lightbox-product-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.lightbox-gold-divider {
    width: 50px;
    height: 2px;
    background: var(--color-sage, #8da586);
    margin-bottom: 1rem;
}

.lightbox-product-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.lightbox-spec-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.lightbox-spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
}

.spec-icon {
    color: var(--color-sage, #8da586);
    font-size: 0.9rem;
}

.btn-lightbox-wa {
    background: #2D7A3A;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    transition: all 0.25s ease;
    box-shadow: 0 6px 20px rgba(45, 122, 58, 0.3);
}

.btn-lightbox-wa:hover {
    background: #25D366;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

@media (max-width: 850px) {
    .lightbox {
        padding: 4.5rem 0.85rem 1.5rem 0.85rem !important;
    }

    .lightbox-close {
        position: fixed !important;
        top: 1.25rem !important;
        right: 1.25rem !important;
        z-index: 9999999 !important;
        background: rgba(18, 22, 19, 0.95) !important;
        border: 1.5px solid rgba(201, 151, 59, 0.7) !important;
        color: #ffffff !important;
        width: 42px !important;
        height: 42px !important;
        font-size: 1.6rem !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.85) !important;
    }

    .lightbox-split-card {
        flex-direction: column;
        max-height: 82vh;
        overflow-y: auto;
        margin-top: 0.5rem;
    }

    .lightbox-media-col {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding: 1.25rem 1rem;
    }

    .lightbox-img {
        max-height: 38vh;
    }

    .lightbox-info-col {
        padding: 1.5rem 1.25rem;
    }
}

.lightbox-nav-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(201, 151, 59, 0.4);
    color: var(--white);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--transition-fast);
    z-index: 50;
}

.lightbox-nav-btn:hover {
    background-color: #C9973B;
    border-color: #C9973B;
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

@media (max-width: 768px) {
    .lightbox-content-wrapper {
        width: 96% !important;
        padding: 0.75rem 0.25rem !important;
        max-height: 88vh !important;
    }

    .lightbox-img {
        max-height: 42vh !important;
    }

    .lightbox-close {
        top: 0.75rem !important;
        right: 0.75rem !important;
        width: 38px !important;
        height: 38px !important;
        font-size: 1.5rem !important;
    }

    .lightbox-nav-btn {
        width: 38px !important;
        height: 38px !important;
        font-size: 1.2rem !important;
        top: 35% !important;
    }

    .lightbox-prev {
        left: 0.5rem !important;
    }

    .lightbox-next {
        right: 0.5rem !important;
    }
}

/* FLOATING WHATSAPP BUTTON WITH PULSE EFFECT */
.whatsapp-float-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.40);
    z-index: 1500;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.whatsapp-float-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite ease-out;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.whatsapp-float-btn:hover {
    transform: scale(1.08);
    color: #FFFFFF;
}

.whatsapp-tooltip {
    position: absolute;
    right: 64px;
    background-color: #111111;
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateX(10px);
}

.whatsapp-float-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@media (max-width: 575px) {
    .whatsapp-float-btn {
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
    }
}

/* FLOATING PHONE BUTTON */
.phone-float-btn {
    position: fixed;
    bottom: 84px;
    /* 24px + 52px (whatsapp btn) + 8px gap */
    right: 24px;
    width: 52px;
    height: 52px;
    background-color: #C5A059;
    /* Brand gold */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(197, 160, 89, 0.40);
    z-index: 1500;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.phone-float-btn:hover {
    transform: scale(1.08);
    color: #FFFFFF;
}

.phone-tooltip {
    position: absolute;
    right: 64px;
    background-color: #111111;
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateX(10px);
}

.phone-float-btn:hover .phone-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@media (max-width: 575px) {
    .phone-float-btn {
        bottom: 72px;
        /* 16px + 48px + 8px gap */
        right: 16px;
        width: 48px;
        height: 48px;
    }
}

.whatsapp-tooltip {
    display: none;
    /* Hide tooltip on tiny mobile screens */
}

/* SECTION BACKGROUND ALTERNATING */
.about {
    background-color: #FFFFFF !important;
}

.why-choose-us-section {
    background-color: #F5F5F5 !important;
}

.categories {
    background-color: #FFFFFF !important;
}

.featured-showcase {
    background-color: #F5F5F5 !important;
}

.manufacturing {
    background-color: #111111 !important;
    color: #FFFFFF !important;
}

.testimonials {
    background-color: var(--color-bg-light) !important;
}

.showrooms-section {
    background-color: var(--color-white) !important;
}

.gallery-section {
    background-color: var(--color-white) !important;
}

.contact {
    background-color: var(--color-bg-light) !important;
}

/* CARDS & PRODUCT TILES UPGRADES */
.category-card,
.featured-product-card,
.showroom-card,
.testimonial-card,
.promise-card {
    background-color: #FFFFFF !important;
    border: 1px solid rgba(141, 165, 134, 0.12) !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01) !important;
    overflow: hidden !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: flex;
    flex-direction: column;
}

.category-card:hover,
.featured-product-card:hover,
.showroom-card:hover,
.testimonial-card:hover,
.promise-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 16px 36px rgba(141, 165, 134, 0.08) !important;
    border-color: var(--color-sage) !important;
}

/* Card image wrapper top 60% */
.category-image-wrapper,
.product-image-area {
    height: 220px !important;
    overflow: hidden !important;
    position: relative !important;
}

/* Scale zoom effect on hover */
.category-gradient-placeholder,
.product-gradient-placeholder {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease !important;
}

.category-card:hover .category-gradient-placeholder,
.featured-product-card:hover .product-gradient-placeholder {
    transform: scale(1.05) !important;
}

/* Various dark/light green combinations for gradient placeholders */
.category-card:nth-child(1) .category-gradient-placeholder,
.featured-product-card:nth-child(1) .product-gradient-placeholder {
    background: linear-gradient(135deg, #1A4D22, #2D7A3A) !important;
}

.category-card:nth-child(2) .category-gradient-placeholder,
.featured-product-card:nth-child(2) .product-gradient-placeholder {
    background: linear-gradient(135deg, #2D7A3A, #4CAF50) !important;
}

.category-card:nth-child(3) .category-gradient-placeholder,
.featured-product-card:nth-child(3) .product-gradient-placeholder {
    background: linear-gradient(135deg, #0f3014, #2D7A3A) !important;
}

.category-card:nth-child(4) .category-gradient-placeholder,
.featured-product-card:nth-child(4) .product-gradient-placeholder {
    background: linear-gradient(135deg, #1b5e20, #4caf50) !important;
}

.category-card:nth-child(5) .category-gradient-placeholder,
.featured-product-card:nth-child(5) .product-gradient-placeholder {
    background: linear-gradient(135deg, #2e7d32, #81c784) !important;
}

.category-card:nth-child(6) .category-gradient-placeholder,
.featured-product-card:nth-child(6) .product-gradient-placeholder {
    background: linear-gradient(135deg, #1A4D22, #81c784) !important;
}

/* Card body bottom 40% */
.category-info-panel,
.product-card-body,
.showroom-info,
.testimonial-content,
.promise-info {
    padding: 16px 20px !important;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Pill shape category badge */
.product-category-tag {
    display: inline-block !important;
    background-color: var(--color-primary-tint) !important;
    color: var(--color-primary-dark) !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    padding: 4px 10px !important;
    border-radius: 20px !important;
    margin-bottom: 0.75rem !important;
    text-transform: uppercase !important;
    width: fit-content !important;
    line-height: 1.2 !important;
}

.category-card-title,
.product-card-name {
    font-family: 'Playfair Display', serif !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #111111 !important;
    margin-bottom: 0.5rem !important;
}

.category-card-desc,
.product-card-desc {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    color: #666666 !important;
    margin-bottom: 1rem !important;
    line-height: 1.4 !important;
}

/* CTA Link shifts on hover */
.category-card-explore,
.product-card-link {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--color-sage) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    transition: color 0.25s ease, transform 0.25s ease !important;
    text-decoration: none !important;
    margin-top: auto !important;
    cursor: pointer;
}

.category-card:hover .category-card-explore,
.featured-product-card:hover .product-card-link {
    color: var(--color-primary-dark) !important;
    transform: translateX(4px) !important;
}

/* BUTTONS (all CTA buttons) */
.btn-primary,
.btn-submit-enquiry {
    background-color: var(--color-sage) !important;
    color: #FFFFFF !important;
    padding: 12px 28px !important;
    border-radius: 6px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0.3px !important;
    border: none !important;
    transition: all 0.25s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
}

.btn-primary:hover,
.btn-submit-enquiry:hover {
    background-color: var(--color-primary-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(141, 165, 134, 0.30) !important;
}

.btn-secondary,
.btn-explore,
.btn-showroom {
    background-color: transparent !important;
    border: 1.5px solid var(--color-sage) !important;
    color: var(--color-sage) !important;
    padding: 12px 28px !important;
    border-radius: 6px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0.3px !important;
    transition: all 0.25s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
}

.btn-secondary:hover,
.btn-explore:hover,
.btn-showroom:hover {
    background-color: var(--color-sage) !important;
    color: #FFFFFF !important;
    transform: translateY(-2px) !important;
}

/* ENQUIRY FORM SECTION */
.contact-enquiry-card {
    background-color: #FFFFFF !important;
    border-radius: 12px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
    border: 0.5px solid #E0E0E0 !important;
    padding: 40px !important;
}

.contact-info-panel {
    background-color: var(--color-primary-dark) !important;
    color: #FFFFFF !important;
    border-radius: 12px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
    padding: 40px !important;
}

/* Form fields */
.contact-enquiry-card .form-control {
    border: 1px solid #E0E0E0 !important;
    border-radius: 6px !important;
    padding: 12px 16px !important;
    height: auto !important;
    background-color: #FFFFFF !important;
    color: #111111 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    transition: all 0.25s ease !important;
}

.contact-enquiry-card .form-control:focus {
    border-color: var(--color-sage) !important;
    box-shadow: 0 0 0 3px rgba(141, 165, 134, 0.12) !important;
    outline: none !important;
}

.contact-enquiry-card .form-control::placeholder {
    color: #999999 !important;
}

.contact-enquiry-card .btn-submit-enquiry {
    width: 100% !important;
    background-color: var(--color-sage) !important;
    color: #FFFFFF !important;
    padding: 12px 28px !important;
    border-radius: 6px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    text-transform: uppercase !important;
}

.contact-enquiry-card .btn-submit-enquiry:hover {
    background-color: var(--color-primary-dark) !important;
}

/* SCROLL REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ELIMINATE MOBILE BLANK SCREEN & SCROLL DELAYS */
@media (max-width: 768px) {

    [data-aos],
    .reveal,
    .reveal-left,
    .reveal-right {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
}

/* Sequential delays */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* COLLECTIONS vs GALLERY — roles & unified sizing */
.section-intro {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 640px;
    margin: 0 auto 1.5rem;
    line-height: 1.65;
    text-align: center;
}

.section-intro.light {
    color: rgba(255, 255, 255, 0.88);
}

.inline-link {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.inline-link.light {
    color: var(--color-primary-tint);
}

.dropdown-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    padding: 0.75rem 1rem 0.25rem;
    margin: 0;
}

.categories-grid {
    gap: 1.75rem;
}

.category-card {
    min-height: 420px;
    display: flex !important;
    flex-direction: column !important;
}

.category-image-wrapper {
    height: 260px !important;
    flex-shrink: 0;
}

.category-info-panel {
    flex: 1;
    min-height: 160px;
}

.featured-product-card {
    flex: 0 0 320px !important;
    min-height: 400px;
}

.product-image-area {
    height: 240px !important;
}

.featured-scroll-row {
    gap: 1.5rem;
    padding-bottom: 2.5rem;
}

.gallery-preview-section {
    background: var(--color-white);
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 200px 200px;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.gallery-preview-tile {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    box-shadow: 0 4px 24px rgba(141, 165, 134, 0.06);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-preview-tile:hover {
    transform: translateY(-6px);
    border-color: var(--color-sage);
    box-shadow: 0 12px 40px rgba(141, 165, 134, 0.16);
}

.gallery-preview-tile.tall {
    grid-row: span 2;
}

.gallery-preview-tile.wide {
    grid-column: span 2;
}

.gallery-preview-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-preview-tile:hover img {
    transform: scale(1.06);
}

.gallery-preview-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(to top, rgba(26, 30, 26, 0.95), transparent);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
}

.gallery-preview-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-explore-collections,
.btn-outline-collections {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-explore-collections {
    background: var(--color-primary);
    color: #fff;
}

.btn-explore-collections:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    color: #fff;
}

.btn-outline-collections {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline-collections:hover {
    background: var(--color-primary-tint);
}

.gallery-page-hero,
.projects-hero,
.contact-page-hero {
    height: 260px !important;
    min-height: 260px !important;
    max-height: 260px !important;
    padding: 72px 0 0 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
    background: linear-gradient(135deg, #FAF8F5 0%, #F2EEE9 50%, #EAE4DC 100%) !important;
    color: #2C2523 !important;
    border-bottom: 1px solid rgba(181, 146, 119, 0.18) !important;
    box-sizing: border-box !important;
}

.gallery-page-hero::before {
    content: none !important;
}

.gallery-page-hero .gallery-hero-container,
.projects-hero-container,
.contact-hero-container {
    position: relative !important;
    z-index: 2 !important;
    max-width: 800px !important;
    margin: 0 auto !important;
}

.gallery-page-badge,
.projects-badge,
.contact-page-badge {
    display: inline-block !important;
    padding: 6px 18px !important;
    border-radius: 999px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    margin-bottom: 0.85rem !important;
    background: rgba(141, 165, 134, 0.15) !important;
    color: #4A6342 !important;
    border: 1px solid rgba(141, 165, 134, 0.3) !important;
}

.gallery-page-hero h1,
.projects-hero h1,
.contact-page-hero h1 {
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(32px, 4vw, 42px) !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    margin-bottom: 0.85rem !important;
    color: #2C2523 !important;
}

.gallery-page-hero .section-intro,
.projects-hero p,
.contact-page-hero .section-intro {
    font-family: 'Inter', sans-serif !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    max-width: 680px !important;
    margin: 0 auto !important;
    color: #665A54 !important;
}

.gallery-page-main .gallery-masonry-grid,
.gallery-masonry-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 2rem !important;
    column-count: auto !important;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-masonry-item {
    background: #ffffff !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    cursor: pointer !important;
    position: relative !important;
}

.gallery-masonry-item:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 35px rgba(45, 122, 58, 0.14) !important;
    border-color: rgba(141, 165, 134, 0.5) !important;
}

.gallery-card-img-wrap {
    position: relative !important;
    width: 100% !important;
    height: 240px !important;
    flex-shrink: 0 !important;
    overflow: hidden !important;
    background: #f4f1ea !important;
}

.gallery-card-img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    transition: transform 0.5s ease !important;
}

.gallery-masonry-item:hover .gallery-card-img {
    transform: scale(1.06) !important;
}

.gallery-wood-badge-tag {
    position: absolute !important;
    top: 0.75rem !important;
    right: 0.75rem !important;
    background: rgba(45, 122, 58, 0.92) !important;
    color: #ffffff !important;
    padding: 3px 10px !important;
    border-radius: 20px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    z-index: 2 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

.gallery-card-body {
    padding: 1rem 1.15rem 1.15rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    flex: 1 !important;
    background: #ffffff !important;
}

.gallery-card-eyebrow {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    color: var(--color-sage, #8da586) !important;
    margin-bottom: 0.35rem !important;
}

.gallery-card-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #2C2523 !important;
    line-height: 1.3 !important;
    margin-bottom: 0.85rem !important;
}

.gallery-card-footer {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    margin-top: auto !important;
    padding-top: 0.65rem !important;
    border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.gallery-card-view-btn {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    color: #C9973B !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    white-space: nowrap !important;
    transition: transform 0.2s ease !important;
}

.gallery-masonry-item:hover .gallery-card-view-btn {
    color: #2D7A3A !important;
    transform: translateX(3px) !important;
}

@media (max-width: 1199px) {

    .gallery-page-main .gallery-masonry-grid,
    .gallery-masonry-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.25rem !important;
    }
}

.filter-controls {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.filter-btn {
    background: transparent;
    border: 1.5px solid var(--color-sage);
    color: var(--color-sage);
    padding: 10px 22px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--color-sage);
    color: #fff;
    box-shadow: 0 6px 18px rgba(141, 165, 134, 0.25);
    transform: translateY(-2px);
    border-color: var(--color-sage);
}

.gallery-page-cta {
    text-align: center;
    margin: 3rem 0 2rem;
    padding: 2rem;
    background: var(--color-primary-tint);
    border-radius: 12px;
    border: 1px solid rgba(141, 165, 134, 0.15);
}

.gallery-page-cta p {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
}

.bg-light {
    background-color: var(--color-bg-light);
    position: relative;
}

.bg-light>.container {
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .gallery-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-preview-tile.tall {
        grid-row: span 1;
    }

    .gallery-preview-tile.wide {
        grid-column: span 2;
    }

    .gallery-page-main .gallery-masonry-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
        gap: 1.5rem !important;
    }

    .category-card {
        min-height: 380px;
    }
}

@media (max-width: 768px) {

    .gallery-page-hero,
    .projects-hero,
    .contact-page-hero {
        min-height: 200px !important;
        height: auto !important;
        max-height: none !important;
        padding: 82px 15px 24px 15px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }

    .gallery-page-badge,
    .projects-badge,
    .contact-page-badge {
        padding: 5px 15px !important;
        font-size: 10px !important;
        letter-spacing: 1.5px !important;
        margin-bottom: 0.5rem !important;
    }

    .gallery-page-hero h1,
    .projects-hero h1,
    .contact-page-hero h1 {
        font-size: clamp(26px, 6.5vw, 32px) !important;
        margin-bottom: 0.6rem !important;
    }

    .gallery-page-hero .section-intro,
    .projects-hero p,
    .contact-page-hero .section-intro {
        font-size: 13.5px !important;
        line-height: 1.5 !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }

    .filter-controls {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        justify-content: flex-start !important;
        padding: 0.5rem 1.25rem 0.85rem 1.25rem !important;
        gap: 0.65rem !important;
        margin-bottom: 1.25rem !important;
        scrollbar-width: none !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .filter-controls::-webkit-scrollbar {
        display: none !important;
    }

    .filter-btn {
        flex: 0 0 auto !important;
        white-space: nowrap !important;
        padding: 8px 18px !important;
        font-size: 13px !important;
        border-radius: 20px !important;
        touch-action: manipulation !important;
        cursor: pointer !important;
    }

    .gallery-page-main .gallery-masonry-grid,
    .gallery-masonry-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.85rem !important;
        width: 100% !important;
    }

    .gallery-card-img-wrap {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 4 / 3 !important;
        background: #f4f6f4 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
    }

    .gallery-card-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        object-position: center center !important;
    }

    .gallery-card-body {
        padding: 0.75rem 0.85rem !important;
    }

    .gallery-card-eyebrow {
        font-size: 0.62rem !important;
        letter-spacing: 1px !important;
        margin-bottom: 0.25rem !important;
    }

    .gallery-card-title {
        font-size: 0.95rem !important;
        line-height: 1.25 !important;
        margin-bottom: 0.5rem !important;
    }

    .gallery-card-view-btn {
        font-size: 0.78rem !important;
        white-space: nowrap !important;
    }

    .gallery-wood-badge-tag {
        top: 0.5rem !important;
        right: 0.5rem !important;
        font-size: 0.62rem !important;
        padding: 2px 8px !important;
    }

    .gallery-instagram-strip {
        padding: 1.25rem 1rem !important;
        margin-top: 2rem !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 0.5rem !important;
    }
}

@media (max-width: 575px) {
    .gallery-preview-grid {
        grid-template-columns: 1fr;
    }

    .gallery-preview-tile.wide {
        grid-column: span 1;
    }

    .gallery-page-hero h1 {
        font-size: 36px;
    }

    .gallery-page-main .gallery-masonry-grid {
        column-count: 1;
    }

    .gallery-masonry-item.height-tall,
    .gallery-masonry-item.height-medium,
    .gallery-masonry-item.height-square {
        height: 280px;
    }

    .featured-product-card {
        flex: 0 0 280px !important;
    }

    .gallery-preview-cta {
        flex-direction: column;
    }

    .btn-explore-collections,
    .btn-outline-collections {
        width: 100%;
        justify-content: center;
    }
}

/* --- NEW MINIMALIST JAPANDI HERO & HEADER NAV STYLES --- */

/* Brand Logo (W with twig) */
.logo-brand-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-family: 'Playfair Display', 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 600;
    color: var(--color-sage);
    line-height: 1;
    text-decoration: none;
    transition: var(--transition-fast);
}

.logo-brand-wrapper:hover {
    opacity: 0.85;
}

.logo-branch-svg {
    position: absolute;
    width: 28px;
    height: 28px;
    top: -6px;
    right: -16px;
    pointer-events: none;
}

/* Force mobile menu button to display on all viewports */
.mobile-menu-btn {
    display: flex !important;
}

/* Style the hamburger lines inside the button to use sage green */
.mobile-menu-btn svg {
    stroke: var(--color-sage) !important;
    transition: stroke 0.3s ease;
}

.mobile-menu-btn:hover svg {
    stroke: var(--color-primary-dark) !important;
}

/* Header style — Solid clean navbar (separated from hero) */
#header {
    background-color: #ffffff !important;
    border-bottom: 1px solid rgba(181, 146, 119, 0.2) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.3s ease;
}

#header.scrolled {
    background-color: #ffffff !important;
    border-bottom: 1px solid rgba(181, 146, 119, 0.3) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

/* Drawer overlay actions */
.drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 320px;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-action-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
}

.drawer-action-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #FFFFFF;
}

.drawer-action-btn svg {
    stroke: currentColor;
    fill: none;
}

/* Japandi Hero Layout */
.hero-japandi {
    position: relative;
    background-color: #FAF9F6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0 60px;
    overflow: hidden;
}

/* On Desktop (min-width: 992px) */
@media (min-width: 992px) {
    .hero-japandi {
        background: #FAF9F6 !important;
    }

    .hero-japandi-container {
        display: grid !important;
        grid-template-columns: 1.15fr 0.85fr !important;
        gap: 4rem !important;
    }

    .hero-japandi-image-wrapper {
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center !important;
        width: 100% !important;
    }

    .hero-japandi-img {
        max-width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        mix-blend-mode: multiply !important;

        mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent),
            linear-gradient(to bottom, transparent, black 8%, black 92%, transparent) !important;
        mask-composite: intersect !important;

        -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent),
            linear-gradient(to bottom, transparent, black 8%, black 92%, transparent) !important;
        -webkit-mask-composite: source-in !important;
    }

    .hero-japandi-content {
        max-width: 580px !important;
        margin-left: 0 !important;
    }
}

/* On Mobile/Tablet (max-width: 991px) */
@media (max-width: 991px) {
    .hero-japandi {
        background: #FAF9F6 !important;
        padding-top: 120px;
    }

    .hero-japandi-container {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
        text-align: center;
    }

    .hero-japandi-content {
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .hero-brand-twig {
        display: flex !important;
        justify-content: center !important;
    }

    .hero-japandi-divider {
        margin: 0 auto 2.5rem !important;
    }

    .hero-japandi-image-wrapper {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
    }

    .hero-japandi-img {
        max-width: 480px !important;
        mix-blend-mode: multiply !important;
    }

    .hero-stats-bar-japandi {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
        margin-top: 3.5rem !important;
    }

    .hero-stats-bar-japandi .hero-stat-col:nth-child(2) {
        border-right: none !important;
    }

    .hero-scroll-indicator-japandi {
        display: none !important;
    }
}

.hero-japandi-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 10;
}

.hero-japandi-content {
    max-width: 580px;
}

/* Twig leaf decoration */
.hero-brand-twig {
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
}

.twig-accent-svg {
    width: 48px;
    height: 48px;
    opacity: 0.95;
}

.hero-japandi-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 6.5vw, 80px) !important;
    font-weight: 600;
    line-height: 1.1;
    color: var(--color-sage) !important;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.hero-japandi-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(15px, 1.5vw, 18px) !important;
    font-weight: 400;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.hero-japandi-divider {
    width: 80px;
    height: 1.5px;
    background-color: var(--color-sage);
    margin-bottom: 2.5rem;
}

.btn-explore-japandi {
    background-color: var(--color-sage);
    color: #FFFFFF;
    padding: 16px 36px;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(141, 165, 134, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.btn-explore-japandi:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(110, 132, 103, 0.45);
}

.hero-japandi-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-japandi-img {
    width: 100%;
    max-width: 580px;
    height: auto;
    object-fit: contain;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    transform-origin: center;
}

/* Minimal Stats Bar integrated inside Japandi Hero bottom */
.hero-stats-bar-japandi {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 4.5rem auto 0 !important;
    background: transparent !important;
    border: none !important;
    border-top: 1px solid rgba(141, 165, 134, 0.15) !important;
    padding: 2rem 2rem 0 !important;
    box-shadow: none !important;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
    z-index: 12;
}

.hero-stats-bar-japandi .hero-stat-col {
    border-right: 1px solid rgba(141, 165, 134, 0.15);
}

.hero-stats-bar-japandi .hero-stat-col:last-child {
    border-right: none;
}

.hero-stats-bar-japandi .hero-stat-num {
    color: var(--color-sage) !important;
    font-size: 2.2rem !important;
    font-weight: 700 !important;
}

.hero-stats-bar-japandi .hero-stat-lbl {
    color: var(--color-text-muted) !important;
    font-size: 0.8rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

/* Scroll indicator */
.hero-scroll-indicator-japandi {
    position: absolute;
    bottom: 3.5rem;
    left: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 15;
}

.scroll-text-japandi {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-sage);
}

.scroll-line-japandi {
    width: 1px;
    height: 40px;
    background: rgba(141, 165, 134, 0.3);
    position: relative;
    overflow: hidden;
}

.scroll-dot-japandi {
    width: 1px;
    height: 10px;
    background: var(--color-sage);
    position: absolute;
    top: 0;
    left: 0;
    animation: scrollScroll 2s infinite ease-in-out;
}

@keyframes scrollScroll {
    0% {
        top: -10px;
    }

    50% {
        top: 40px;
    }

    100% {
        top: 40px;
    }
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    .hero-japandi-title {
        font-size: 64px;
    }
}

@media (max-width: 991px) {
    .hero-japandi-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-japandi-content {
        margin: 0 auto;
    }

    .hero-brand-twig {
        display: flex;
        justify-content: center;
    }

    .hero-japandi-divider {
        margin: 0 auto 2.5rem;
    }

    .hero-japandi-img {
        max-width: 480px;
    }

    .hero-stats-bar-japandi {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
        margin-top: 3.5rem !important;
    }

    .hero-stats-bar-japandi .hero-stat-col:nth-child(2) {
        border-right: none;
    }

    .hero-scroll-indicator-japandi {
        display: none;
    }
}

@media (max-width: 575px) {
    .hero-japandi-title {
        font-size: 46px;
    }

    .hero-japandi-subtitle {
        font-size: 16px;
    }

    .hero-stats-bar-japandi {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
        text-align: center;
    }

    .hero-stats-bar-japandi .hero-stat-col {
        border-right: none !important;
        border-bottom: 1px solid rgba(141, 165, 134, 0.15);
        padding-bottom: 1rem;
    }

    .hero-stats-bar-japandi .hero-stat-col:last-child {
        border-bottom: none !important;
        padding-bottom: 0;
    }
}

/* Premium Side-Drawer Overlay on Desktop */
@media (min-width: 768px) {
    .mobile-nav-overlay {
        width: 420px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }
}

/* ==========================================================================
   SPACEWOOD-STYLE UPGRADED HEADER & FULL-WIDTH HERO SLIDER
   ========================================================================== */

/* Upgraded Header Navbar (Fixed top 0) */
header#header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 72px !important;
    z-index: 99999 !important;
    transition: all 0.3s ease;
    background: #ffffff !important;
    border-bottom: 1px solid rgba(181, 146, 119, 0.25) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
}

body.page-home {
    padding-top: 72px !important;
}

.nav-links .nav-link-item {
    font-size: 13.5px !important;
    font-weight: 600 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    color: #2c3e2e !important;
    position: relative;
    padding: 8px 14px !important;
    transition: color 0.3s ease;
}

.nav-links .nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background-color: var(--color-primary, #2d7a3a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-links .nav-link-item:hover::after,
.nav-links .nav-link-item.active-link::after {
    transform: scaleX(1);
}

/* Spacewood Hero Section & Slider */
.hero-spacewood {
    position: relative !important;
    width: 100% !important;
    margin-top: 0 !important;
    overflow: hidden !important;
    background: #111111;
}

.spacewood-slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
    min-height: 400px;
    max-height: calc(100vh - 72px) !important;
}

.spacewood-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    z-index: 1;
}

.spacewood-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.spacewood-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 6s ease;
}

.spacewood-slide.active .spacewood-slide-bg {
    transform: scale(1.0);
}

.spacewood-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.25) 45%, rgba(0, 0, 0, 0) 100%) !important;
    z-index: 2;
}

.spacewood-slide-container {
    position: absolute !important;
    bottom: 45px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 3 !important;
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 20px !important;
    margin: 0 auto !important;
}

.spacewood-slide-content {
    text-align: center !important;
    max-width: 850px !important;
    width: 100% !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    transform: translateY(15px);
    opacity: 0;
    transition: transform 0.6s ease 0.1s, opacity 0.6s ease 0.1s;
}

.spacewood-slide.active .spacewood-slide-content {
    transform: translateY(0);
    opacity: 1;
}

.spacewood-slide-text {
    background: none !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    color: #ffffff !important;
    padding: 0 !important;
    font-size: 16.5px !important;
    font-weight: 400 !important;
    letter-spacing: 0.02em !important;
    margin-bottom: 1.25rem !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95), 0 1px 4px rgba(0, 0, 0, 0.9) !important;
    display: inline-block !important;
    max-width: 800px !important;
}

.mobile-text {
    display: none !important;
}

.desktop-text {
    display: inline !important;
}

.btn-spacewood-hero {
    display: inline-block !important;
    padding: 12px 34px !important;
    background-color: #b59277 !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.btn-spacewood-hero:hover {
    background-color: #9c7a61 !important;
    transform: translateY(-2px) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
}

/* Minimal Subtle Low-Opacity Arrows (Matching Image 2) */
.spacewood-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background: rgba(0, 0, 0, 0.25) !important;
    color: rgba(255, 255, 255, 0.85) !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 22px !important;
    line-height: 1 !important;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    opacity: 0.65 !important;
}

.spacewood-slider-arrow:hover {
    opacity: 1 !important;
    background: rgba(0, 0, 0, 0.6) !important;
    color: #ffffff !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.spacewood-slider-arrow.prev-arrow {
    left: 14px !important;
}

.spacewood-slider-arrow.next-arrow {
    right: 14px !important;
}

/* Pagination Dots */
.spacewood-slider-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.spacewood-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.spacewood-dot.active {
    background: #b59277;
    width: 28px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .spacewood-slider-wrapper {
        width: 100% !important;
        height: clamp(230px, 60vw, 360px) !important;
        aspect-ratio: 16 / 9.5 !important;
        min-height: auto !important;
        max-height: none !important;
        background: transparent !important;
        overflow: hidden !important;
    }

    .spacewood-slide {
        background: transparent !important;
    }

    .spacewood-slide-bg {
        background-position: center center !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
    }

    .spacewood-slide-overlay {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0) 100%) !important;
    }

    .spacewood-slide-container {
        bottom: 26px !important;
        padding: 0 12px !important;
    }

    .spacewood-slide-text {
        background: none !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin-bottom: 0.4rem !important;
        color: #ffffff !important;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95), 0 1px 3px rgba(0, 0, 0, 0.9) !important;
        max-width: 90vw !important;
    }

    .desktop-text {
        display: none !important;
    }

    .mobile-text {
        display: inline-block !important;
        font-size: clamp(11.5px, 3.2vw, 14px) !important;
        font-weight: 600 !important;
        letter-spacing: 0.8px !important;
        text-transform: uppercase !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 90vw !important;
    }

    .btn-spacewood-hero {
        padding: 5px 14px !important;
        font-size: 11px !important;
        border-radius: 3px !important;
        letter-spacing: 0.5px !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
    }

    .spacewood-slider-arrow.prev-arrow {
        left: 4px !important;
    }

    .spacewood-slider-arrow.next-arrow {
        right: 4px !important;
    }

    .spacewood-slider-arrow {
        width: 30px !important;
        height: 30px !important;
        font-size: 18px !important;
        background: rgba(0, 0, 0, 0.45) !important;
    }

    .spacewood-slider-dots {
        bottom: 4px !important;
    }
}

/* SHOWROOMS V2 — ARCHITECTURAL ROYAL RAJASTHANI STORE SHOWCASE (SLEEK COMPACT) */
.showrooms-section {
    background: linear-gradient(180deg, #fdfbf7 0%, #f6efe2 50%, #fdfbf7 100%) !important;
    position: relative;
    border-top: 1px solid rgba(181, 146, 119, 0.15);
    border-bottom: 1px solid rgba(181, 146, 119, 0.15);
}


/* ==========================================================================
   10. SHOWROOMS (Redesigned Premium Cards)
   ========================================================================== */
.showrooms-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 15px;
}

.showroom-card-v2 {
    background: #ffffff;
    border: 1px solid rgba(181, 146, 119, 0.2);
    padding: 3rem 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

/* Elegant Inner Border Effect */
.showroom-card-v2::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid rgba(181, 146, 119, 0.1);
    pointer-events: none;
    transition: all 0.5s ease;
}

.showroom-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(181, 146, 119, 0.5);
}

.showroom-card-v2:hover::before {
    border-color: rgba(181, 146, 119, 0.3);
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
}

/* Icon (Top Left or Integrated) */
.card-icon-wrapper-v2 {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-icon-wrapper-v2 svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: #b59277;
    stroke-width: 1.2;
}

.card-content-v2 {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
}

.store-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 700;
    color: #b59277;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.city-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 500;
    color: #1a251e;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    position: relative;
}

/* Delicate divider */
.city-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: #b59277;
    margin-top: 1rem;
}

.city-address {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.store-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.meta-tag {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    padding: 4px 0;
    color: #777;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.meta-tag.highlight {
    color: #2d7a3a;
    border-bottom-color: rgba(45, 122, 58, 0.3);
}

.city-phone {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    color: #222222;
    text-decoration: none;
    margin-bottom: 0.35rem;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.city-phone svg {
    flex-shrink: 0;
    stroke: #b59277;
    transition: transform 0.25s ease, stroke 0.25s ease;
}

.city-phone:hover {
    color: #2d7a3a;
}

.city-phone:hover svg {
    stroke: #2d7a3a;
    transform: scale(1.12);
}

.city-email {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #4a544e;
    text-decoration: none;
    margin-bottom: 1.25rem;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    word-break: break-all;
}

.city-email svg {
    flex-shrink: 0;
    stroke: #b59277;
    transition: transform 0.25s ease, stroke 0.25s ease;
}

.city-email:hover {
    color: #2d7a3a;
}

.city-email:hover svg {
    stroke: #2d7a3a;
    transform: scale(1.12);
}

.city-phone::before,
.city-email::before {
    content: none !important;
    display: none !important;
}

/* Elegant Text Button */
.btn-get-directions {
    font-family: 'Inter', sans-serif;
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #1a251e !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding-bottom: 5px !important;
    border-bottom: 1px solid #1a251e !important;
    transition: all 0.4s ease !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    width: max-content;
}

.btn-get-directions::after,
.btn-get-directions:hover::after {
    content: none !important;
    display: none !important;
}

/* BOTTOM STORE ACTION BUTTONS BAR */
.store-actions-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.btn-store-action {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 38px;
    border-radius: 35px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.btn-store-action.primary {
    background: linear-gradient(135deg, #ffffff 0%, #fdfbf7 100%);
    border: 2.5px solid #b59277;
    color: #b59277 !important;
}

.btn-store-action.primary:hover {
    background: linear-gradient(135deg, #b59277 0%, #8c684d 100%);
    border-color: #8c684d;
    color: #ffffff !important;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(181, 146, 119, 0.35);
}

.btn-store-action.secondary {
    background: linear-gradient(135deg, #2d7a3a 0%, #1e5628 100%);
    border: 2.5px solid #2d7a3a;
    color: #ffffff !important;
}

.btn-store-action.secondary:hover {
    background: linear-gradient(135deg, #1e5628 0%, #143d1c 100%);
    border-color: #143d1c;
    color: #ffffff !important;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(45, 122, 58, 0.38);
}

@media (max-width: 992px) {
    .showrooms-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .showrooms-grid-v2 {
        grid-template-columns: 1fr;
    }

    .store-actions-bar {
        flex-direction: column;
        width: 100%;
    }

    .btn-store-action {
        width: 100%;
        justify-content: center;
    }
}

/* PERMANENTLY DISABLE COLLECTIONS HOVER DROPDOWN POPUP */
.collections-dropdown,
.showroom-card-v2:hover .city-landmark-circle {
    background: linear-gradient(135deg, #b59277 0%, #8c684d 100%);
    border-color: #8c684d;
    transform: scale(1.06) rotate(3deg);
    box-shadow: 0 8px 20px rgba(181, 146, 119, 0.28);
}

.showroom-card-v2:hover .city-landmark-circle svg path {
    stroke: #ffffff !important;
}

.badge-count-circle {
    background: linear-gradient(135deg, #2d7a3a 0%, #1e5628 100%) !important;
    border-color: #2d7a3a !important;
    color: #ffffff;
}

.showroom-card-v2:hover .badge-count-circle {
    background: linear-gradient(135deg, #1e5628 0%, #2d7a3a 100%) !important;
}

.badge-count-text {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.badge-count-sub {
    font-size: 9.5px;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

.city-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 2px;
    letter-spacing: 0.03em;
}

.store-subtitle {
    font-size: 11px;
    font-weight: 700;
    color: #b59277;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
}

.city-address {
    font-size: 12.5px;
    line-height: 1.45;
    color: #555555;
    margin-bottom: 0.75rem;
    flex-grow: 1;
}

.store-meta {
    display: flex;
    gap: 6px;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.meta-tag {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 12px;
    background: #f6efe6;
    color: #444444;
    font-weight: 600;
    border: 1px solid rgba(181, 146, 119, 0.2);
}

.meta-tag.highlight {
    background: rgba(45, 122, 58, 0.12);
    color: #2d7a3a;
    border-color: rgba(45, 122, 58, 0.25);
    font-weight: 700;
}

.city-phone {
    font-size: 14.5px;
    font-weight: 700;
    color: #222222;
    text-decoration: none;
    margin-bottom: 0.25rem;
    transition: color 0.25s ease;
}

.city-email {
    font-size: 13px;
    font-weight: 500;
    color: #4a544e;
    text-decoration: none;
    margin-bottom: 1.25rem;
    transition: color 0.25s ease;
}

.city-phone:hover {
    color: #2d7a3a;
}

.city-email:hover {
    color: #2d7a3a;
}

.btn-get-directions {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #b59277 0%, #8c684d 100%) !important;
    padding: 8px 20px !important;
    border-radius: 20px !important;
    text-decoration: none !important;
    letter-spacing: 0.03em !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    box-shadow: 0 3px 10px rgba(181, 146, 119, 0.2) !important;
}

.btn-get-directions:hover {
    background: linear-gradient(135deg, #2d7a3a 0%, #1e5628 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(45, 122, 58, 0.3) !important;
}

/* BOTTOM STORE ACTION BUTTONS BAR */
.store-actions-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.btn-store-action {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 38px;
    border-radius: 35px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.btn-store-action.primary {
    background: linear-gradient(135deg, #ffffff 0%, #fdfbf7 100%);
    border: 2.5px solid #b59277;
    color: #b59277 !important;
}

.btn-store-action.primary:hover {
    background: linear-gradient(135deg, #b59277 0%, #8c684d 100%);
    border-color: #8c684d;
    color: #ffffff !important;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(181, 146, 119, 0.35);
}

.btn-store-action.secondary {
    background: linear-gradient(135deg, #2d7a3a 0%, #1e5628 100%);
    border: 2.5px solid #2d7a3a;
    color: #ffffff !important;
}

.btn-store-action.secondary:hover {
    background: linear-gradient(135deg, #1e5628 0%, #143d1c 100%);
    border-color: #143d1c;
    color: #ffffff !important;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(45, 122, 58, 0.38);
}

@media (max-width: 992px) {
    .showrooms-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .showrooms-grid-v2 {
        grid-template-columns: 1fr;
    }

    .store-actions-bar {
        flex-direction: column;
        width: 100%;
    }

    .btn-store-action {
        width: 100%;
        justify-content: center;
    }
}

/* PERMANENTLY DISABLE COLLECTIONS HOVER DROPDOWN POPUP */
.collections-dropdown,
.nav-item-dropdown:hover .collections-dropdown,
.dropdown-menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* TOP SCROLL READING PROGRESS INDICATOR BAR */
.scroll-progress-bar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    height: 3.5px !important;
    background: linear-gradient(90deg, #b59277 0%, #d4af37 50%, #2d7a3a 100%) !important;
    z-index: 10001 !important;
    width: 0%;
    transition: width 0.08s cubic-bezier(0.1, 0.9, 0.2, 1);
    box-shadow: 0 0 10px rgba(181, 146, 119, 0.6);
}

/* FLOATING GLASS SCROLL-TO-TOP BUTTON WITH PROGRESS RING */
.scroll-to-top-btn {
    position: fixed !important;
    bottom: 28px !important;
    right: 28px !important;
    width: 54px !important;
    height: 54px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(12px) !important;
    border: 1.5px solid rgba(181, 146, 119, 0.35) !important;
    z-index: 9990 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s ease, border-color 0.3s ease, background 0.3s ease !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12) !important;
}

.scroll-to-top-btn.visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
}

.scroll-to-top-btn:hover {
    background: #ffffff !important;
    border-color: #b59277 !important;
    transform: translateY(-4px) scale(1.06) !important;
    box-shadow: 0 12px 30px rgba(181, 146, 119, 0.3) !important;
}

.progress-ring-svg {
    position: absolute !important;
    top: 0px !important;
    left: 0px !important;
    width: 52px !important;
    height: 52px !important;
    transform: rotate(-90deg) !important;
    pointer-events: none !important;
}

.progress-ring-circle {
    stroke-dasharray: 138.23 !important;
    /* 2 * PI * 22 */
    stroke-dashoffset: 138.23 !important;
    transition: stroke-dashoffset 0.1s linear !important;
}

.scroll-top-arrow {
    transition: transform 0.3s ease, stroke 0.3s ease !important;
}

.scroll-to-top-btn:hover .scroll-top-arrow {
    transform: translateY(-3px) !important;
    stroke: #2d7a3a !important;
}

/* Gallery Dynamic Filters (Matching Collections) */
.gallery-dual-filter-panel {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(181, 146, 119, 0.15);
}

.filter-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    width: 100%;
}

.filter-section-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
    background: rgba(45, 122, 58, 0.08);
    padding: 4px 16px;
    border-radius: 20px;
}

#wood-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.filter-controls.room-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.gallery-filter-btn {
    background: #ffffff;
    border: 1px solid rgba(181, 146, 119, 0.25);
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.gallery-filter-btn:hover {
    border-color: #b59277;
    box-shadow: 0 8px 20px rgba(181, 146, 119, 0.15);
    transform: translateY(-2px);
}

.gallery-filter-btn.active {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
    box-shadow: 0 8px 20px rgba(45, 122, 58, 0.2);
}

/* Gallery Empty State */
.gallery-empty-wrapper {
    text-align: center;
    padding: 80px 20px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px dashed rgba(141, 165, 134, 0.4);
    margin: 40px auto;
    max-width: 600px;
}

.gallery-empty-wrapper svg {
    width: 64px;
    height: 64px;
    stroke: #b59277;
    margin-bottom: 20px;
}

.gallery-empty-wrapper h3 {
    font-family: 'Playfair Display', serif;
    color: var(--color-dark);
    font-size: 28px;
    margin-bottom: 12px;
}

.gallery-empty-wrapper p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* ==========================================================================
   DYNAMIC INDIA MAP COMPONENT
   ========================================================================== */
.india-map-section {
    position: relative;
    padding: 4rem 2rem;
    background: #FFFCF7;
    /* Match site background */
    border-radius: 20px;
    margin: 2rem auto 4rem;
    max-width: 1200px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* Background Accents */
.map-bg-globe {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, transparent 30%, rgba(181, 146, 119, 0.05) 70%, rgba(181, 146, 119, 0.1) 100%);
    border: 1px dashed rgba(181, 146, 119, 0.3);
    z-index: 0;
}

.map-bg-globe.top-left {
    top: -50px;
    left: -50px;
}

.map-bg-globe.bottom-right {
    bottom: -50px;
    right: -50px;
}

.map-content-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

/* SVG Container */
.map-svg-container {
    flex: 1;
    min-width: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.india-dynamic-map {
    width: 100%;
    max-width: 600px;
    max-height: 600px;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    display: block;
    margin: 0 auto;
}

.map-region {
    stroke: #ffffff;
    stroke-width: 0.5px;
    stroke-linejoin: round;
    transition: all 0.3s ease;
    cursor: pointer;
}

.map-region:hover {
    filter: brightness(1.1);
    stroke-width: 1.5px;
    stroke: #333;
}

/* State Colors based on Legend */
.map-region-exploring {
    fill: #D32F2F !important;
}

.map-region-mild {
    fill: #1976D2 !important;
}

.map-region-good {
    fill: #FBC02D !important;
}

.map-region-international {
    fill: #388E3C !important;
}

/* Tooltips & Pins */
.map-pin {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.factory-pin svg {
    color: #333;
    background: #fff;
    border-radius: 50%;
    padding: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.showroom-pin .small-dot {
    width: 8px;
    height: 8px;
    background: #333;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.pulse-ring {
    content: '';
    width: 30px;
    height: 30px;
    border: 2px solid #D32F2F;
    border-radius: 50%;
    position: absolute;
    top: -5px;
    left: -5px;
    animation: pulsate 2s infinite ease-out;
    opacity: 0;
}

.pulse-ring.delay-1 {
    animation-delay: 1s;
}

@keyframes pulsate {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.tooltip-text {
    visibility: hidden;
    width: max-content;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 10px;
    position: absolute;
    z-index: 10;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
    font-weight: 500;
    pointer-events: none;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Legend Panel */
.map-legend-panel {
    flex: 0 1 350px;
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.legend-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2rem;
}

.legend-header h2 {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 2px;
    margin: 0;
    background: linear-gradient(90deg, #FF5722 0%, #1976D2 50%, #388E3C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Inter', sans-serif;
}

.legend-logo {
    width: 40px;
    height: 40px;
}

.legend-items {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    letter-spacing: 0.5px;
}

.legend-color-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.legend-color-dot.intl {
    background: #388E3C;
}

.legend-color-dot.good {
    background: #FBC02D;
}

.legend-color-dot.mild {
    background: #1976D2;
}

.legend-color-dot.exploring {
    background: #D32F2F;
}

.legend-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.legend-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
    color: #333;
}

@media (max-width: 900px) {
    .map-content-layout {
        flex-direction: column;
    }

    .map-legend-panel {
        width: 100%;
        flex: 1 1 auto;
    }
}

/* Complex Map Additions */
.radiating-line {
    fill: none;
    stroke: #8B0000;
    stroke-width: 1.2px;
    opacity: 0.85;
    stroke-dasharray: 8 4;
    animation: minimalFlow 12s linear infinite;
}

@keyframes dashLine {
    to {
        stroke-dashoffset: -100;
    }
}

.map-state-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    fill: #111;
    text-anchor: middle;
    pointer-events: none;
    /* Let clicks pass through */
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8), -1px -1px 2px rgba(255, 255, 255, 0.8);
}

.radiating-line-mild {
    fill: none;
    stroke: #1976D2;
    stroke-width: 1.5px;
    opacity: 0.7;
    stroke-dasharray: 4 4;
    animation: minimalFlow 15s linear infinite;
}


@keyframes minimalFlow {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -100;
    }
}

.main-footer {
    padding-bottom: 0 !important;
    background-color: #111411 !important;
}

.footer-bottom-strip,
.footer-bottom {
    background-color: transparent !important;
    margin-bottom: 0 !important;
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
}

.footer-middle-divider {
    display: none !important;
    height: 0 !important;
    opacity: 0 !important;
}

/* ==========================================================================
   MOBILE-FIRST RESPONSIVE DESIGN SYSTEM OVERRIDES (320px - 1024px+)
   ========================================================================== */

/* 1. Viewport & Universal Scaling */
html,
body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
}

img,
video,
iframe,
svg {
    max-width: 100%;
    height: auto;
}

input,
select,
textarea,
button {
    font-size: 16px;
    /* Prevents auto-zoom on iOS Safari */
}

/* Touch Target Minimum Dimensions for Mobile */
.btn,
.nav-icon-btn,
.mobile-link,
.filter-btn,
.gallery-filter-btn,
.open-gallery-btn,
.search-btn-trigger,
.phone-btn-trigger {
    min-height: 44px;
    touch-action: manipulation;
}

/* Form Row Grid System */
.form-group-row {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
}

/* Responsive Container Fluid Padding */
.container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding-left: clamp(1rem, 3.5vw, 2.5rem) !important;
    padding-right: clamp(1rem, 3.5vw, 2.5rem) !important;
}

/* Responsive Modal Sizing */
.modal-content {
    width: min(92%, 550px) !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
}

/* TABLET BREAKPOINT (768px to 1024px) */
@media (max-width: 1024px) {
    .section-title {
        font-size: clamp(28px, 4vw, 40px) !important;
    }

    .projects-grid,
    .showrooms-grid,
    .testimonials-grid,
    .categories-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }

    .footer-top-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.75rem !important;
        width: 100% !important;
    }

    .cta-box {
        padding: 2.5rem 1.5rem !important;
    }
}

/* MOBILE BREAKPOINT (320px to 767px) */
@media (max-width: 767px) {
    header {
        height: 64px !important;
    }

    .section-padding {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .section-header {
        margin-bottom: 1.5rem !important;
    }

    .section-title {
        font-size: clamp(24px, 6vw, 32px) !important;
    }

    .form-group-row {
        grid-template-columns: 1fr !important;
        gap: 0.85rem !important;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }

    .projects-grid,
    .testimonials-grid,
    .categories-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    .footer-top-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.75rem !important;
        width: 100% !important;
    }

    .collections-col {
        display: none !important;
    }

    .explore-col {
        padding-left: 1.25rem !important;
        width: 100% !important;
        margin-top: 0.5rem !important;
        box-sizing: border-box !important;
    }

    .explore-col .footer-links-list {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.75rem 1.5rem !important;
    }

    .hero-slide-card {
        padding: 0 0.5rem !important;
    }

    .hero-headline {
        font-size: clamp(28px, 7vw, 44px) !important;
        line-height: 1.2 !important;
    }

    .hero-subtext {
        font-size: clamp(14px, 3.5vw, 16px) !important;
    }

    .hero-buttons {
        flex-direction: column !important;
        width: 100% !important;
        gap: 0.85rem !important;
    }

    .hero-buttons .btn {
        width: 100% !important;
    }

    .cta-btn-group {
        flex-direction: column !important;
        width: 100% !important;
        gap: 0.85rem !important;
    }

    .cta-btn-group .btn {
        width: 100% !important;
    }
}

/* ULTRA-SMALL MOBILE DEVICES (320px to 375px) */
@media (max-width: 375px) {
    .nav-logo-title {
        font-size: 18px !important;
    }

    .logo-subtitle {
        font-size: 7px !important;
        letter-spacing: 2px !important;
    }

    .section-title {
        font-size: 22px !important;
    }

    .hero-eyebrow-pill {
        font-size: 9px !important;
        padding: 4px 10px !important;
    }

    .modal-content {
        padding: 2rem 1rem !important;
    }
}

/* ==========================================================================
   GALLERY PRODUCT CARDS - FINAL ZERO-WHITESPACE FULL-BLEED OVERRIDES
   ========================================================================== */
.gallery-page-main .gallery-masonry-grid,
.gallery-masonry-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 1.5rem !important;
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
}

.gallery-masonry-item {
    background: #ffffff !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    cursor: pointer !important;
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
}

.gallery-card-img-wrap {
    position: relative !important;
    width: 100% !important;
    height: 230px !important;
    flex-shrink: 0 !important;
    overflow: hidden !important;
    background: #000000 !important;
    border-radius: 14px 14px 0 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.gallery-card-img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 14px 14px 0 0 !important;
}

.gallery-wood-badge-tag {
    position: absolute !important;
    top: 0.75rem !important;
    right: 0.75rem !important;
    background: rgba(45, 122, 58, 0.92) !important;
    color: #ffffff !important;
    padding: 4px 12px !important;
    border-radius: 20px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    z-index: 2 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

.gallery-card-body {
    padding: 0.85rem 1rem 1rem !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 0 0 auto !important;
    background: #ffffff !important;
    box-sizing: border-box !important;
}

.gallery-card-eyebrow {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    color: var(--color-sage, #8da586) !important;
    margin-bottom: 0.25rem !important;
}

.gallery-card-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #2C2523 !important;
    line-height: 1.25 !important;
    margin-bottom: 0.5rem !important;
}

.gallery-card-footer {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    margin-top: 0.25rem !important;
    padding-top: 0.5rem !important;
    border-top: none !important;
}

.gallery-card-view-btn {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    color: #C9973B !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    white-space: nowrap !important;
    transition: transform 0.2s ease !important;
}

/* MOBILE SCREEN OVERRIDES (<768px) */
@media (max-width: 768px) {

    .gallery-page-main .gallery-masonry-grid,
    .gallery-masonry-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.85rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .gallery-masonry-item {
        width: 100% !important;
        height: auto !important;
        margin-bottom: 0 !important;
    }

    .gallery-card-img-wrap {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 4 / 3 !important;
        background: #f4f6f4 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
        border-radius: 12px 12px 0 0 !important;
    }

    .gallery-card-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        object-position: center center !important;
        border-radius: 12px 12px 0 0 !important;
    }

    .gallery-card-body {
        padding: 0.65rem 0.75rem 0.75rem !important;
        flex: 0 0 auto !important;
    }

    .gallery-card-eyebrow {
        font-size: 0.6rem !important;
        letter-spacing: 1px !important;
        margin-bottom: 0.15rem !important;
    }

    .gallery-card-title {
        font-size: 0.92rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.35rem !important;
    }

    .gallery-card-footer {
        margin-top: 0 !important;
        padding-top: 0.25rem !important;
        border-top: none !important;
    }

    .gallery-wood-badge-tag {
        top: 0.4rem !important;
        right: 0.4rem !important;
        font-size: 0.6rem !important;
        padding: 2px 7px !important;
    }

    #wood-filters {
        justify-content: center !important;
        overflow-x: visible !important;
        padding: 0.35rem 0.5rem 0.65rem !important;
    }
}

#wood-filters {
    justify-content: center !important;
}

/* ==========================================================================
   MINIMAL COMPACT FILTER PANEL SYSTEM
   ========================================================================== */
.gallery-dual-filter-panel {
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 0.85rem 1.25rem !important;
    margin-bottom: 1.25rem !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    text-align: center !important;
}

.filter-section {
    margin-top: 0 !important;
    padding: 0 !important;
    text-align: center !important;
}

.filter-section-title {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    color: var(--color-sage, #8da586) !important;
    background: rgba(141, 165, 134, 0.12) !important;
    padding: 3px 12px !important;
    border-radius: 20px !important;
    margin-bottom: 0.35rem !important;
    display: inline-block !important;
}

.filter-controls {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.5rem !important;
    margin-bottom: 0.35rem !important;
    padding: 0.2rem 0 !important;
}

.filter-btn {
    padding: 6px 16px !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    border-radius: 20px !important;
    transition: all 0.2s ease !important;
}

@media (max-width: 768px) {
    .gallery-dual-filter-panel {
        padding: 0.75rem 0.65rem !important;
        margin-bottom: 1rem !important;
        border-radius: 14px !important;
    }

    .filter-controls {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        justify-content: flex-start !important;
        padding: 0.5rem 1.25rem 0.75rem 1.25rem !important;
        gap: 0.65rem !important;
        margin-bottom: 0.25rem !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .filter-controls::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }

    .filter-btn {
        flex: 0 0 auto !important;
        white-space: nowrap !important;
        padding: 7px 18px !important;
        font-size: 0.78rem !important;
        font-weight: 600 !important;
        border-radius: 20px !important;
    }

    .filter-section-title {
        font-size: 0.6rem !important;
        padding: 2px 10px !important;
        margin-bottom: 0.25rem !important;
    }
}

/* ABSOLUTE OVERRIDE: REMOVE ALL ARROW BUTTONS & HIDDEN SCROLLBARS */
.filter-controls::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.filter-controls::before,
.filter-controls::after,
.filter-section::before,
.filter-section::after,
.gallery-dual-filter-panel::before,
.gallery-dual-filter-panel::after {
    display: none !important;
    content: none !important;
}

.scroll-to-top-btn,
#scrollToTopBtn,
.carousel-nav-btn,
.spacewood-slider-arrow,
button[aria-label*="Scroll"] {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* GALLERY PRODUCT CARD EYEBROW & FOOTER UNIFIED RULES */
.gallery-card-eyebrow {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: var(--color-sage, #8da586) !important;
    margin-bottom: 0.2rem !important;
    display: block !important;
}

.gallery-card-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: #2C2523 !important;
    line-height: 1.25 !important;
    margin-bottom: 0.4rem !important;
}

.gallery-card-footer {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    margin-top: 0.25rem !important;
    padding-top: 0.35rem !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.gallery-card-view-btn {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    color: #C9973B !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
}

/* ==========================================================================
   FOOTER SOCIAL MEDIA LINKS
   ========================================================================== */
.footer-social-wrapper {
    margin-top: 1rem;
}

.footer-social-heading {
    font-family: 'Inter', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #2D7A3A;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
}

.footer-social-list {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 0.45rem 1.5rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-social-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.25s ease;
    width: max-content;
}

.social-icon-box {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b59277;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.social-icon-box svg {
    width: 12px;
    height: 12px;
    transition: transform 0.25s ease;
}

.footer-social-item:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-social-item:hover .social-icon-box {
    background: #2D7A3A;
    border-color: #2D7A3A;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(45, 122, 58, 0.4);
}

.footer-social-item:hover .social-icon-box svg {
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .footer-social-wrapper {
        margin-top: 1.1rem;
    }

    .footer-social-heading {
        margin-bottom: 0.6rem;
    }

    .footer-social-list {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 1.15rem !important;
        flex-wrap: wrap !important;
    }

    .footer-social-item {
        gap: 0 !important;
        transform: none !important;
    }

    .social-icon-box {
        width: 38px !important;
        height: 38px !important;
    }

    .social-icon-box svg {
        width: 17px !important;
        height: 17px !important;
    }

    .footer-social-item .social-text {
        display: none !important;
    }
}

/* ==========================================================================
   INSIDE MODAL CARD POPUP NAVIGATION BUTTONS & CONTROLS
   ========================================================================== */
.lightbox-img-counter {
    display: none !important;
}

.lightbox.open .lightbox-nav-btn,
.lightbox.open #lightbox-prev,
.lightbox.open #lightbox-next {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.lightbox-nav-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: rgba(18, 26, 20, 0.92) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 2px solid #C9973B !important;
    color: #ffffff !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    z-index: 99999 !important;
    padding: 0 !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.8), 0 0 16px rgba(201, 151, 59, 0.45) !important;
    outline: none !important;
}

.lightbox-nav-btn svg {
    display: block !important;
    width: 22px !important;
    height: 22px !important;
    stroke: #ffffff !important;
    stroke-width: 2.5 !important;
    pointer-events: none !important;
    transition: transform 0.2s ease, stroke 0.2s ease !important;
}

.lightbox-nav-btn:hover {
    background: #C9973B !important;
    border-color: #f1c56b !important;
    color: #121814 !important;
    transform: translateY(-50%) scale(1.14) !important;
    box-shadow: 0 10px 30px rgba(201, 151, 59, 0.7) !important;
}

.lightbox-nav-btn:hover svg {
    stroke: #121814 !important;
}

.lightbox-prev {
    left: 14px !important;
}

.lightbox-prev:hover svg {
    transform: translateX(-2px) !important;
}

.lightbox-next {
    right: 14px !important;
}

.lightbox-next:hover svg {
    transform: translateX(2px) !important;
}

@media (max-width: 768px) {
    .lightbox-nav-btn {
        width: 40px !important;
        height: 40px !important;
    }
    .lightbox-prev {
        left: 8px !important;
    }
    .lightbox-next {
        right: 8px !important;
    }
}