@import url('https://db.onlinewebfonts.com/c/5297184284d72023bf8d7955c4d2936a?family=NordiquePro-Bold');

/* Global Variables */
:root {
    --color-primary: #C9A96E;
    --color-primary-hover: #E2C992;
    --color-bg-dark: #1A1A1A;
    --color-bg-darker: #111111;
    --color-bg-black: #000000;
    --color-bg-card: #2A2A2A;
    --color-text-white: #FFFFFF;
    --color-text-muted: rgba(255, 255, 255, 0.8);
    --color-text-dim: rgba(255, 255, 255, 0.6);
    --font-serif: "Gilda Display", serif;
    --font-sans: system-ui, -apple-system, sans-serif;
    --spacing-container: 2rem;
    --max-width: 1200px;
    --transition-speed: 0.3s;
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg-dark);
    color: var(--color-text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-container);
}

.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.gap-4 {
    gap: 1rem;
}

.gap-8 {
    gap: 2rem;
}

/* New Utilities from MinimalFurnish */
.absolute-inset-0 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.z-0 {
    z-index: 0;
}

.bg-gradient-to-r {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4), transparent);
}

.bg-gradient-to-b {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 1));
}

.backdrop-blur {
    backdrop-filter: blur(2px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.375rem;
    transition: all var(--transition-speed);
    letter-spacing: 0.05em;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-bg-black);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-1px);
}

.btn-outline {
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-bg-black);
}

/* Navbar */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-family: 'NordiquePro-Bold', var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-text-white);
    font-weight: bold;
}

/* Unified Menu Button */
.menu-btn {
    display: block;
    font-size: 1.5rem;
    color: var(--color-text-white);
    cursor: pointer;
    transition: color var(--transition-speed);
}

.menu-btn:hover {
    color: var(--color-primary);
}

/* Nav Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-bg-darker);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform var(--transition-speed) ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.nav-overlay.active {
    transform: translateX(0);
}

.nav-overlay-link {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--color-text-white);
    text-decoration: none;
    margin: 1rem 0;
    transition: opacity 0.5s ease, transform 0.5s ease, color 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.nav-overlay.active .nav-overlay-link {
    opacity: 1;
    transform: translateY(0);
}

.nav-overlay.active .nav-overlay-link:nth-of-type(1) {
    transition-delay: 0.1s;
}

.nav-overlay.active .nav-overlay-link:nth-of-type(2) {
    transition-delay: 0.2s;
}

.nav-overlay.active .nav-overlay-link:nth-of-type(3) {
    transition-delay: 0.3s;
}

.nav-overlay-link:hover,
.nav-overlay-link:active,
.nav-overlay-link.active {
    color: var(--color-primary);
}

.nav-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--color-text-white);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-close-btn:hover {
    transform: rotate(90deg);
    color: var(--color-primary);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: var(--color-bg-darker);
    padding-top: 5rem;
    /* pt-20 equivalent */
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
}

/* Hero Slideshow Backgrounds with Lazy Behavior */
.hero-slide-1 {
    /* Critical LCP: loaded immediately but WebP */
    background-image: url('../images/luxury-1.webp');
}

/* Other slides are handled by JS via data-bg */


.slide.active {
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4), transparent);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    /* Updated to match MinimalFurnish */
    max-width: 42rem;
    /* max-w-2xl */
    padding: 2rem;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    /* rounded-lg */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    /* shadow-xl */
    animation: slideUpFade 1s ease-out forwards;
}

.hero-subtitle {
    display: block;
    color: rgba(201, 169, 110, 0.9);
    /* text-[#C9A96E]/90 */
    font-family: var(--font-serif);
    letter-spacing: 0.1em;
    /* tracking-widest */
    margin-bottom: 1rem;
    font-size: 1.125rem;
    /* text-lg */
    text-transform: uppercase;
}

.hero-title {
    font-size: 4.5rem;
    /* text-7xl is huge, approx 4.5rem */
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    line-height: 1.1;
    color: rgba(255, 255, 255, 0.95);
}

.hero-description {
    font-size: 1.25rem;
    /* text-xl */
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    letter-spacing: 0.025em;
    /* tracking-wide */
    line-height: 1.625;
    /* leading-relaxed */
}

/* Featured Section */
.featured-section {
    padding: 6rem 0;
    /* py-24 */
    background-color: var(--color-bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    /* mb-12 */
}

.section-subtitle {
    color: var(--color-primary);
    font-family: var(--font-serif);
    font-size: 1rem;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.25rem;
    /* text-3xl */
    margin-bottom: 0.75rem;
    color: var(--color-text-white);
}

.section-divider {
    width: 5rem;
    /* w-20 */
    height: 1px;
    background-color: var(--color-primary);
    margin: 0 auto;
}

.featured-swiper {
    padding-bottom: 3.5rem !important;
}

.featured-swiper .swiper-slide {
    height: auto;
}

.featured-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: all var(--transition-speed);
}

.featured-swiper .swiper-pagination-bullet:hover {
    background: var(--color-primary-hover);
}

.featured-swiper .swiper-pagination-bullet-active {
    background: var(--color-primary) !important;
    width: 20px;
    border-radius: 4px;
}

.featured-grid {
    /* Using Swiper now, so this styles the inner content of slide */
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 900px) {
    .featured-grid {
        grid-template-columns: 1fr 1fr;
        /* lg:grid-cols-2 */
        gap: 3rem;
        align-items: flex-start;
    }
}

.featured-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: var(--color-bg-card);
    border-radius: 1rem;
}

@media (min-width: 900px) {
    .featured-image-wrapper {
        aspect-ratio: 4/3;
    }
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-details {
    padding: 2rem;
    /* p-8 */
    background-color: rgba(0, 0, 0, 0.9);
    /* bg-black/90 */
}

@media (min-width: 900px) {
    .featured-details {
        background-color: rgba(0, 0, 0, 0.8);
        /* lg:bg-black/80 */
        padding: 3rem;
        /* lg:p-12 */
    }
}

.featured-product-name {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    /* text-4xl */
    color: var(--color-text-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.featured-product-desc {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.125rem;
    /* text-lg */
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-specs {
    margin-bottom: 2rem;
}

.spec-label {
    display: block;
    color: rgba(201, 169, 110, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.spec-value {
    color: rgba(255, 255, 255, 0.8);
}

.spec-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.spec-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.8rem;
    border: 1px solid rgba(201, 169, 110, 0.4);
    /* var(--color-primary) with opacity */
    background: transparent;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 4px;
    font-family: var(--font-sans);
}

.spec-btn:hover,
.spec-btn.active {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: var(--color-bg-black);
}

/* Brand Story - Complex Layouts */
.brand-section {
    background-color: var(--color-bg-black);
}

/* 1. Opening Section */
.brand-opening {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

.brand-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    z-index: 0;
}

.overlay-gradient-b {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #000, rgba(0, 0, 0, 0.4), #000);
    border-radius: inherit;
}

.max-w-4xl {
    max-width: 56rem;
}

/* 2. Contemporary Vision */
.contemporary-section {
    min-height: 100vh;
    background-color: #000;
    padding: 8rem 0;
    /* py-32 */
    position: relative;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lg\:gap-16 {
        gap: 4rem;
    }
}

.text-gold {
    color: var(--color-primary);
}

.tracking-widest {
    letter-spacing: 0.2em;
}

.opacity-80 {
    opacity: 0.8;
}

.section-heading-large {
    font-size: 2.25rem;
    /* text-4xl */
    font-family: var(--font-serif);
    color: var(--color-text-white);
    margin-bottom: 1rem;
}

.text-lg-relaxed {
    font-size: 1.125rem;
    line-height: 1.625;
    color: rgba(255, 255, 255, 0.8);
}

.brand-video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--color-bg-card);
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
    isolation: isolate;
    transform: translateZ(0);
    -webkit-clip-path: inset(0 round 1.5rem);
    clip-path: inset(0 round 1.5rem);
}

.brand-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
}

/* 3. Bespoke Design */
.bespoke-section {
    position: relative;
    width: 100%;
    padding: 8rem 0;
    overflow: hidden;
}

.pattern-bg {
    position: absolute;
    inset: 0;
    background-color: #0A0A0A;
    opacity: 0.9;
    z-index: 0;
}

.pattern-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    /* Inline SVG data URI handled in HTML or here if static */
}

.golden-line {
    height: 1px;
    background: linear-gradient(to right, transparent, repeating-linear-gradient(90deg, #C9A96E 0, #C9A96E 1px, transparent 1px, transparent 100%));
    background: linear-gradient(to right, transparent, #C9A96E, transparent);
    position: absolute;
    left: 0;
    right: 0;
}

.gl-top {
    top: 0;
}

.gl-bottom {
    bottom: 0;
}

.bespoke-card {
    position: relative;
    padding: 0.5rem;
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.corner-accent {
    position: absolute;
    width: 2.5rem;
    height: 2.5rem;
    border-color: #C9A96E;
    border-style: solid;
}

.ca-tl {
    top: 0;
    left: 0;
    border-width: 2px 0 0 2px;
    border-top-left-radius: 0.5rem;
}

.ca-tr {
    top: 0;
    right: 0;
    border-width: 2px 2px 0 0;
    border-top-right-radius: 0.5rem;
}

.ca-bl {
    bottom: 0;
    left: 0;
    border-width: 0 0 2px 2px;
    border-bottom-left-radius: 0.5rem;
}

.ca-br {
    bottom: 0;
    right: 0;
    border-width: 0 2px 2px 0;
    border-bottom-right-radius: 0.5rem;
}

.designer-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 1rem;
}

.bespoke-content {
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(201, 169, 110, 0.1);
}

.service-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 169, 110, 0.3);
    background-color: rgba(201, 169, 110, 0.05);
    flex-shrink: 0;
}

.service-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #C9A96E;
    border-radius: 50%;
}

/* 4. Closing Quote */
.closing-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-text {
    font-size: 2.25rem;
    font-family: var(--font-serif);
    color: #C9A96E;
    font-style: italic;
    margin-bottom: 2rem;
    max-width: 56rem;
    margin-inline: auto;
    line-height: 1.6;
}

.quote-cite {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.25rem;
    font-style: normal;
}

/* Footer */
.site-footer {
    background-color: #0a0a0a;
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

/* Product Page Specifics */
.product-page-container {
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .product-layout {
        grid-template-columns: 1.5fr 1fr;
        gap: 4rem;
    }
}

.product-gallery-main {
    width: 100%;
    aspect-ratio: 1;
    background-color: var(--color-bg-card);
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.thumbnail {
    aspect-ratio: 1;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
    background-color: var(--color-bg-card);
}

.thumbnail.active {
    border-color: var(--color-primary);
}

.product-info-sticky {
    position: sticky;
    top: 6rem;
}

.product-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-text-white);
}

.product-description {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.upholstery-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.upholstery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.upholstery-option {
    background-color: var(--color-bg-card);
    border-radius: 1rem;
    padding: 0.75rem;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s;
}

.upholstery-option:hover {
    background-color: #333;
}

.upholstery-option.selected {
    border-color: var(--color-primary);
    background-color: #333;
}

.swatch-color {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem;
    background-size: cover;
    background-position: center;
}

.swatch-name {
    font-size: 0.8rem;
    text-align: center;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--color-text-dim);
}

.upholstery-option.selected .swatch-name {
    color: var(--color-primary);
}

.related-products {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform var(--transition-speed);
}

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

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

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

.product-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    transition: background 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.product-card:hover .product-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.product-details {
    padding: 1.25rem 0.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-text-white);
    margin: 0;
    transition: color 0.3s ease;
}

.product-card:hover .product-name {
    color: var(--color-primary);
}

.btn-light {
    background-color: var(--color-text-white);
    color: var(--color-bg-black);
    font-weight: 500;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-light:hover {
    background-color: var(--color-primary);
    color: var(--color-bg-black);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.shimmer {
    background: linear-gradient(90deg, #2a2a2a 25%, #333 50%, #2a2a2a 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

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

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .featured-grid,
    .legacy-grid {
        grid-template-columns: 1fr;
    }

    .product-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Utilities for cleanup */
.shimmer-placeholder {
    height: 400px;
    width: 100%;
}

.featured-nav-container {
    margin-top: 2rem;
}

.btn-whatsapp {
    width: 100%;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

/* Footer */
.site-footer {
    background-color: #1A1A1A;
    padding: 5rem 0 2rem;
    border-top: 1px solid #2A2A2A;
    text-align: left;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    color: var(--color-primary);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-heading {
    color: var(--color-text-white);
    font-family: var(--font-serif);
    font-size: 1.125rem;
    letter-spacing: 0.025em;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-link {
    transition: color var(--transition-speed);
}

.footer-link:hover {
    color: var(--color-primary);
}

.footer-link-highlight {
    color: var(--color-primary);
    text-decoration: none;
}

.footer-link-highlight:hover {
    text-decoration: underline;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #2A2A2A;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
    letter-spacing: 0.025em;
}

/* Hide Next Product Button on Mobile */
@media (max-width: 768px) {
    #next-product-btn {
        display: none !important;
    }

    .featured-nav-container {
        display: none !important;
    }
}

/* Scroll Animation Classes */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

/* Authentication Pages */
.auth-page-container {
    padding-top: 12rem;
    /* Ensure no overlap with navbar */
    padding-bottom: 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.auth-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 2.5rem;
    text-align: center;
    letter-spacing: 0.05em;
}

.auth-form {
    background-color: var(--color-bg-card);
    padding: 3rem;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 32rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-label {
    display: block;
    color: var(--color-text-white);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    /* Adequate padding */
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.25rem;
    color: var(--color-text-white);
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all var(--transition-speed);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px var(--color-primary), 0 0 15px rgba(201, 169, 110, 0.2);
    background-color: rgba(0, 0, 0, 0.5);
}

.auth-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2.5rem;
}

.auth-link {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    transition: color var(--transition-speed);
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 4px;
}

.auth-link:hover {
    color: var(--color-primary);
    text-decoration-color: var(--color-primary);
}

/* Collections Page Styling */
.collections-page {
    padding-top: 2rem;
    background-color: var(--color-bg-darker);
}

.collections-header {
    padding: 4rem 0 2rem;
    background: linear-gradient(to bottom, #000, var(--color-bg-darker));
    position: relative;
    overflow: hidden;
}

.collections-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: var(--color-primary);
    opacity: 0.5;
}

.collections-title {
    font-size: 4.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    text-align: center;
}

.collections-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-dim);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    text-align: center;
}

.sticky-nav-wrapper {
    z-index: 90;
}

.collection-nav {
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(20px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.collection-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.category-filters {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.filters-label {
    font-size: 0.75rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-right: 1rem;
    font-weight: 500;
}

.category-filter-link {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 0.05em;
    transition: all 0.4s ease;
}

.category-filter-link:hover {
    color: var(--color-text-white);
}

.category-filter-link.active {
    color: var(--color-primary);
}

.category-filter-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--color-primary);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateX(-50%);
}

.category-filter-link.active::after,
.category-filter-link:hover::after {
    width: 60%;
}

.collection-search-container {
    flex: 1;
    max-width: 350px;
}

.collection-search-container .form-group {
    margin-bottom: 0;
}

.collection-search-container .form-label {
    display: none;
}

.collection-search-container .form-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    padding: 0.5rem 0;
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: border-color 0.3s ease;
}

.collection-search-container .form-input:focus {
    background: transparent;
    border-color: var(--color-primary);
    box-shadow: none;
}

/* Products Layout */
.collections-grid-section {
    padding: 6rem 0;
}

.products-stack {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.collections-load-more {
    margin-top: 3rem;
}

.is-hidden {
    display: none !important;
}

.no-results {
    padding: 8rem 0;
}

.no-results h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-text-white);
}

.no-results p {
    color: var(--color-text-dim);
    margin-bottom: 2rem;
}

@media (max-width: 900px) {
    .collection-nav-content {
        flex-direction: column;
        gap: 2rem;
        align-items: stretch;
    }

    .category-filters {
        justify-content: center;
        gap: 1.5rem;
    }

    .collection-search-container {
        max-width: none;
    }

    .collections-title {
        font-size: 3rem;
    }
}

/* Skeleton Loading States */
.skeleton-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.product-gallery-main {
    position: relative;
    /* Ensure skeleton positions correctly */
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    background-color: var(--color-bg-card);
    aspect-ratio: 1;
    border-radius: 1rem;
}

.reveal-on-load {
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

.reveal-on-load.loaded {
    opacity: 1;
}

/* Footer Social Icons */
.footer-socials {
    margin-top: 1.5rem;
    display: flex;
    gap: 1.25rem;
}

.social-icon {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* Brand Story Text Alignment */
.brand-story-wrapper {
    text-align: center;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .brand-story-wrapper {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }
}

/* Exclusive Rossini Section */
.exclusive-section {
    background-color: #000;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.exclusive-grid {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    min-height: 80vh;
    padding: 1.5rem;
    gap: 1.5rem;
}

@media (min-width: 900px) {
    .exclusive-grid {
        grid-template-columns: 1fr 1fr;
        padding: 4rem;
        gap: 3rem;
        align-items: center;
    }
}

.exclusive-video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 1;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
    isolation: isolate;
    transform: translateZ(0);
    -webkit-clip-path: inset(0 round 1.5rem);
    clip-path: inset(0 round 1.5rem);
}

@media (min-width: 900px) {
    .exclusive-video-container {
        height: auto;
        border-radius: 1.5rem;
        overflow: hidden;
    }
}

.exclusive-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 1.5rem;
    overflow: hidden;
}

.exclusive-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);
    z-index: 2;
    border-radius: 1.5rem;
    border: 1px solid rgba(201, 169, 110, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

@media (min-width: 900px) {
    .exclusive-content-wrapper {
        padding: 6rem;
    }
}

.exclusive-badge {
    display: inline-block;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    align-self: flex-start;
}

.exclusive-title {
    font-size: 2.75rem;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.1;
    font-family: var(--font-serif);
}

.exclusive-title span {
    color: var(--color-primary);
    font-style: italic;
    display: block;
}

.exclusive-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 32rem;
}

/* Staggered text animations — only hide children when JS has added fade-in-section to the section */
.exclusive-section.fade-in-section .exclusive-content-wrapper>* {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.exclusive-section.is-visible .exclusive-content-wrapper>* {
    opacity: 1;
    transform: translateY(0);
}

.exclusive-section.is-visible .exclusive-content-wrapper>*:nth-child(1) {
    transition-delay: 0.3s;
}

.exclusive-section.is-visible .exclusive-content-wrapper>*:nth-child(2) {
    transition-delay: 0.5s;
}

.exclusive-section.is-visible .exclusive-content-wrapper>*:nth-child(3) {
    transition-delay: 0.7s;
}

/* Shop Filters Section */
.shop-filter-section {
    padding: 3rem 0;
    background-color: var(--color-bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.filter-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .filter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.filter-heading {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.filter-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.75rem;
    max-height: 200px;
    /* limits height for "many" items, encouraging scrolling if very dense */
    overflow-y: auto;
    padding-right: 0.5rem;
}

/* Custom Scrollbar for filter list */
.filter-list::-webkit-scrollbar {
    width: 4px;
}

.filter-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.filter-list::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 2px;
}

.filter-item {
    display: flex;
    /* Centering */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.75rem 0.5rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: all 0.2s ease;
    text-decoration: none;
    line-height: 1.2;
}

.filter-item:hover,
.filter-item.active {
    background-color: var(--color-primary);
    color: var(--color-bg-black);
    border-color: var(--color-primary);
}
/* Rossini Customizer Section */
.customizer-section {
    background-color: var(--color-bg-darker);
    color: var(--color-text-white);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.customizer-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.customizer-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .customizer-container {
        grid-template-columns: 0.8fr 1.2fr;
        align-items: center;
    }
}

/* Customizer Left Side */
.customizer-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 0;
}

.customizer-brand {
    font-family: inherit;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    color: var(--color-text-muted);
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.customizer-brand::after {
    content: '';
    display: block;
    height: 1px;
    width: 3rem;
    background-color: var(--color-primary);
    opacity: 0.5;
}

.customizer-title-small {
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--color-text-muted);
}

.customizer-title-large {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1.1;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.customizer-title-sub {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    color: var(--color-text-white);
}

.customizer-description {
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 5rem;
    line-height: 1.6;
    max-width: 300px;
}

.customizer-instructions-text {
    max-width: 380px;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-style: italic;
    color: var(--color-text-white);
    padding: 1.25rem 1.5rem;
    
}

.customizer-cta-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-whatsapp-custom {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--color-text-white);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    width: fit-content;
    padding-left: 2rem;
    padding-right: 2rem;
}

.btn-whatsapp-custom:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-bg-black);
}

.btn-whatsapp-custom:hover i {
    color: var(--color-bg-black);
}

.customizer-guide-text {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.03em;
}

/* Customizer Right Side */
.customizer-modules {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    background: rgba(15, 15, 16, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.module-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.module-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.module-title {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    white-space: nowrap;
}

.module-title-key {
    color: var(--color-text-white);
    font-weight: 600;
}

.module-line {
    height: 1px;
    background-color: rgba(255,255,255,0.1);
    flex-grow: 1;
}

/* Option Cards (Leather Type & Stitching) */
.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.option-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.35);
}

.option-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.option-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.option-card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-text-white);
}

/* Color Circles */
.colors-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1.25rem 0.75rem;
    justify-items: center;
    margin-bottom: 0.5rem;
}

.color-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    cursor: pointer;
}

.color-circle {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.color-option:hover .color-circle {
    border-color: var(--color-primary);
    transform: scale(1.1);
}

.color-option.is-selected .color-circle {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(201, 169, 110, 0.35), 0 6px 10px rgba(0,0,0,0.35);
    transform: scale(1.05);
}

.color-option.is-selected .color-label {
    color: var(--color-primary);
}

.color-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.color-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    text-align: center;
}

/* Bottom Actions Panel */
.customizer-actions-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.actions-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.help-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-size: 0.85rem;
    white-space: nowrap;
}

.help-sub {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.btn-whatsapp-full {
    width: 100%;
    justify-content: flex-start;
}

@media (max-width: 1024px) {
    .colors-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .customizer-modules {
        padding: 2rem;
    }

    .customizer-title-large {
        font-size: 3rem;
    }
    
    .customizer-instructions-text {
        padding: 1.5rem 0;
    }
    
    .options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
