/* VANDANA Luxury Menswear Design System & Stylesheet */

/* ==========================================
   1. CSS Reset & Variables
   ========================================== */
:root {
    /* Brand Colors */
    --vandana-red: #E31A0B;
    --warm-ivory: #F5F0E7;
    --champagne: #E8DCC9;
    --warm-stone: #CFC2AF;
    --ink-black: #0B0A09;
    --charcoal: #24211F;
    --antique-gold: #A88645;
    --midnight-navy: #171D3A;
    --deep-teal: #16434A;
    --burgundy: #5A1E21;
    --silver: #B9B8B4;
    --soft-taupe: #B7A995;

    /* Theme-specific tokens (Warm Atelier as default) */
    --bg-primary: var(--warm-ivory);
    --bg-secondary: var(--champagne);
    --text-primary: var(--ink-black);
    --text-secondary: var(--charcoal);
    --border-color: rgba(36, 33, 31, 0.15);
    --accent-color: var(--antique-gold);
    --header-bg: rgba(245, 240, 231, 0.85);

    /* Typography Fonts */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Manrope', sans-serif;

    /* Spacing Units */
    --space-8: 8px;
    --space-16: 16px;
    --space-24: 24px;
    --space-32: 32px;
    --space-48: 48px;
    --space-64: 64px;
    --space-96: 96px;
    --space-128: 128px;
    --space-160: 160px;

    /* Widths & Layout */
    --max-width: 1360px;
    --editorial-width: 720px;
    --transition-fast: 150ms cubic-bezier(0.22, 1, 0.36, 1);
    --transition-medium: 250ms cubic-bezier(0.22, 1, 0.36, 1);
    --transition-slow: 750ms cubic-bezier(0.22, 1, 0.36, 1);

    /* Default settings */
    --border-radius-sm: 2px;
    --border-radius-md: 4px;
}

/* Base resets */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-medium), color var(--transition-medium);
}

body.loading {
    opacity: 0.8;
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================
   2. Typography System
   ========================================== */
h1, h2, h3, h4, .editorial-quote, .serif-font {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.15;
}

h1 {
    font-size: clamp(48px, 7vw, 110px);
    letter-spacing: -0.01em;
}

h2 {
    font-size: clamp(36px, 5vw, 68px);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(24px, 3.5vw, 36px);
}

.editorial-quote {
    font-size: clamp(28px, 4vw, 48px);
    font-style: italic;
    line-height: 1.3;
}

.large-body {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 300;
    line-height: 1.5;
}

p, .body-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Eyebrow Label */
.eyebrow {
    font-size: clamp(11px, 1.2vw, 13px);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    display: inline-block;
    margin-bottom: var(--space-16);
    font-family: var(--font-sans);
}

.eyebrow.accent {
    color: var(--accent-color);
}

/* ==========================================
   3. Theme Variations (Atelier vs Editorial)
   ========================================== */
.theme-warm-atelier {
    --bg-primary: var(--warm-ivory);
    --bg-secondary: var(--champagne);
    --text-primary: var(--ink-black);
    --text-secondary: var(--charcoal);
    --border-color: rgba(36, 33, 31, 0.15);
    --accent-color: var(--antique-gold);
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

.theme-dark-editorial {
    --bg-primary: var(--ink-black);
    --bg-secondary: var(--charcoal);
    --text-primary: var(--warm-ivory);
    --text-secondary: var(--silver);
    --border-color: rgba(245, 240, 231, 0.15);
    --accent-color: var(--silver);
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

/* Quick utility to override colors */
.bg-warm-champagne { background-color: var(--champagne); color: var(--ink-black); }
.bg-dark-charcoal { background-color: var(--charcoal); color: var(--warm-ivory); }
.bg-ink-black { background-color: var(--ink-black); color: var(--warm-ivory); }

/* ==========================================
   4. Layout & Grid Utilities
   ========================================== */
.container {
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 5vw;
    padding-right: 5vw;
}

.editorial-container {
    max-width: var(--editorial-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 5vw;
    padding-right: 5vw;
}

.section {
    padding-top: var(--space-96);
    padding-bottom: var(--space-96);
    position: relative;
}

@media (min-width: 1024px) {
    .section {
        padding-top: var(--space-128);
        padding-bottom: var(--space-128);
    }
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-32);
}

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

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-32);
}

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

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-48);
    }
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-24);
}

@media (min-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-32);
    }
}

/* Staggered asymmetric layout for collections */
.asym-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-48);
    align-items: center;
}

@media (min-width: 768px) {
    .asym-grid-2 {
        grid-template-columns: 1.2fr 0.8fr;
    }
    .asym-grid-2.reverse {
        grid-template-columns: 0.8fr 1.2fr;
    }
}

/* ==========================================
   5. Button & Interactables System
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: var(--space-16) var(--space-32);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all var(--transition-medium);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--text-primary);
    color: var(--bg-primary);
}

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

/* Reverse button on dark context */
.btn-primary-inverse {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

.btn-primary-inverse:hover {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--bg-primary);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
}

.btn-secondary:hover {
    background-color: var(--text-primary);
    color: var(--bg-primary);
}

.btn-accent {
    background-color: var(--vandana-red);
    color: white;
}

.btn-accent:hover {
    background-color: var(--ink-black);
    color: white;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 11px;
}

.w-full {
    width: 100%;
}

/* ==========================================
   6. Header Section (Header & Navigation)
   ========================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--warm-ivory);
    border-bottom: 1px solid rgba(11, 10, 9, 0.08);
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
    transition: all var(--transition-medium);
    box-shadow: 0 2px 20px rgba(0,0,0,0.02);
}

.site-header.header-hidden {
    transform: translateY(-100%);
    pointer-events: none;
}

.site-header.transparent {
    background-color: var(--warm-ivory);
    border-bottom: 1px solid rgba(11, 10, 9, 0.08);
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
}

.site-header.scrolled {
    background-color: var(--warm-ivory);
    border-bottom: 1px solid rgba(11, 10, 9, 0.12);
    padding-top: 12px;
    padding-bottom: 12px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.04);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 4vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Nav Menu Desktop */
.main-navigation {
    display: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-32);
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: var(--space-8) 0;
    color: var(--ink-black);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: var(--vandana-red);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Brand Logo (Geometric Signature) */
.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: var(--space-12);
}

.brand-logo {
    height: 52px;
    width: 52px;
    object-fit: contain;
    mix-blend-mode: multiply; /* Removes white background block dynamically */
    filter: contrast(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 38px; /* Increased font size to fill the header row height */
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 0.8; /* Adjusted line-height to fit text vertically */
    text-transform: uppercase;
    color: var(--ink-black);
}

.brand-tagline {
    font-family: var(--font-serif);
    font-size: 14px; /* Increased font size */
    letter-spacing: 0.18em;
    font-style: italic;
    color: var(--antique-gold);
    margin-top: 4px; /* Adjusted margin spacing */
}

/* Utilities */
.utility-actions {
    display: flex;
    align-items: center;
    gap: var(--space-16);
}

.utility-btn {
    font-size: 16px;
    cursor: pointer;
    padding: var(--space-8);
    transition: color var(--transition-fast);
}

.utility-btn:hover {
    color: var(--accent-color);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: block;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.mobile-nav-toggle span {
    position: absolute;
    display: block;
    height: 1.5px;
    width: 100%;
    background-color: var(--text-primary);
    transition: all var(--transition-medium);
}

.mobile-nav-toggle span:first-child { top: 0; }
.mobile-nav-toggle span:last-child { bottom: 0; }

.mobile-nav-toggle.open span:first-child {
    transform: translateY(9px) rotate(45deg);
}

.mobile-nav-toggle.open span:last-child {
    transform: translateY(-9px) rotate(-45deg);
}

/* Desktop navigation display */
@media (min-width: 1024px) {
    .mobile-nav-toggle { display: none; }
    .main-navigation { display: block; }
    .logo-wrapper { position: static; transform: none; }
    .header-container { display: flex; align-items: center; }
}

/* ==========================================
   7. Page View Hero Section
   ========================================== */
.hero-section {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: var(--ink-black);
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform-origin: center top; /* Scales from the top, pushing crops to the bottom */
    z-index: 1;
    opacity: 0.85; /* Increased opacity to highlight the background video */
    transform: scale(1.12); /* Zoomed in slightly more to trim the bottom */
    animation: slowZoomOutTop 20s infinite alternate linear;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 10, 9, 0.15) 0%, rgba(11, 10, 9, 0.45) 100%); /* Reduced overlay opaqueness/darkness */
    z-index: 2;
}

.hero-corner-caption {
    position: absolute;
    bottom: var(--space-48);
    right: 5vw; /* Positioned back on the lower right side */
    z-index: 3;
    text-align: right; /* Aligned text right */
    max-width: 440px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp var(--transition-slow) forwards 400ms;
}

@media (max-width: 768px) {
    .hero-corner-caption {
        bottom: var(--space-32);
        left: 5vw;
        right: 5vw;
        text-align: center;
        max-width: none;
    }
}

.hero-center-brand {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    color: var(--warm-ivory);
}

.hero-brand-symbol {
    font-size: 16px;
    color: var(--antique-gold);
    margin-bottom: var(--space-16);
    letter-spacing: 0.15em;
}

.brand-essence-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(24px, 4vw, 36px);
    letter-spacing: 0.18em;
    opacity: 0.85;
    font-weight: 300;
    white-space: nowrap;
}

.scroll-down {
    position: absolute;
    bottom: var(--space-48);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
    cursor: pointer;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--warm-ivory);
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}

.scroll-down:hover {
    opacity: 1;
}

.scroll-down::after {
    content: '';
    width: 1px;
    height: 32px;
    background-color: var(--warm-ivory);
    transform-origin: top;
    animation: scrollLine 2s infinite cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==========================================
   8. Brand Statement (Uniquely You)
   ========================================== */
.brand-statement {
    background-color: var(--warm-ivory);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.brand-statement-content {
    max-width: var(--editorial-width);
    margin: 0 auto;
}

.brand-statement-content h2 {
    margin-bottom: var(--space-32);
}

.brand-statement-content p {
    line-height: 1.8;
}

.brand-statement-deco {
    width: 32px;
    height: 1px;
    background-color: var(--antique-gold);
    margin: var(--space-48) auto 0;
    position: relative;
}

.brand-statement-deco::after {
    content: '✦';
    font-size: 10px;
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--antique-gold);
    background-color: var(--warm-ivory);
    padding: 0 8px;
}

/* ==========================================
   9. Collection Grid & Product Display
   ========================================== */
.collection-section {
    background-color: var(--bg-primary);
}

.section-header {
    margin-bottom: var(--space-64);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-header.center {
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: var(--space-8);
}

/* Asymmetric cards */
.editorial-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.editorial-card-image {
    aspect-ratio: 4/5;
    overflow: hidden;
    background-color: var(--bg-secondary);
}

.editorial-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.editorial-card:hover .editorial-card-image img {
    transform: scale(1.04);
}

.editorial-card-content {
    margin-top: var(--space-16);
}

.editorial-card-content h3 {
    font-size: 24px;
    margin-bottom: var(--space-8);
}

.editorial-card-content .link-btn {
    font-family: var(--font-sans);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    border-bottom: 1px solid var(--text-primary);
    padding-bottom: 2px;
}

/* Product Cards */
.product-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
}

.product-image-container {
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
    background-color: var(--bg-secondary);
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow), opacity var(--transition-medium);
}

.product-image-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-card:hover .product-image-hover {
    opacity: 1;
}

.product-card:hover .product-image-container img:not(.product-image-hover) {
    transform: scale(1.02);
}

.wishlist-pill {
    position: absolute;
    top: var(--space-16);
    right: var(--space-16);
    width: 36px;
    height: 36px;
    background-color: rgba(245, 240, 231, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: background-color var(--transition-fast), color var(--transition-fast);
    z-index: 10;
}

.wishlist-pill:hover {
    background-color: var(--ink-black);
    color: white;
}

.product-info {
    margin-top: var(--space-16);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.product-info-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-cat {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

.product-title {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--text-primary);
}

.product-price {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.product-pills {
    margin-top: 8px;
    display: flex;
    gap: 8px;
}

.pill {
    font-size: 9px;
    padding: 2px 6px;
    border: 1px solid var(--border-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-sans);
    border-radius: 2px;
}

.pill.red {
    border-color: var(--vandana-red);
    color: var(--vandana-red);
}

/* ==========================================
   10. Craftsmanship (Luxury Details)
   ========================================== */
.craftsmanship-section {
    background-color: var(--ink-black);
    color: var(--warm-ivory);
}

.craftsmanship-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-48);
}

@media (min-width: 1024px) {
    .craftsmanship-grid {
        grid-template-columns: 1fr 1.2fr;
        align-items: center;
        gap: var(--space-64);
    }
}

.craftsmanship-tabs {
    display: flex;
    flex-direction: column;
    gap: var(--space-24);
}

.craftsmanship-tab-item {
    border-bottom: 1px solid rgba(245, 240, 231, 0.15);
    padding-bottom: var(--space-24);
    cursor: pointer;
    transition: opacity var(--transition-fast);
}

.craftsmanship-tab-item.active {
    border-color: var(--antique-gold);
}

.craftsmanship-tab-item h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--warm-ivory);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.craftsmanship-tab-item h3 span {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--antique-gold);
}

.craftsmanship-tab-item p {
    color: var(--silver);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium), opacity var(--transition-medium);
    opacity: 0;
}

.craftsmanship-tab-item.active p {
    max-height: 100px;
    opacity: 1;
    margin-top: 8px;
}

.craftsmanship-visual {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background-color: var(--charcoal);
}

.craftsmanship-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

/* ==========================================
   11. Bespoke Service Section
   ========================================== */
.bespoke-section {
    background-color: var(--champagne);
    color: var(--ink-black);
}

.bespoke-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.bespoke-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-24);
    margin: var(--space-64) 0;
    text-align: left;
}

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

.step-card {
    padding: var(--space-24);
    border-left: 1px solid rgba(11, 10, 9, 0.15);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step-num {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    color: var(--antique-gold);
}

.step-card h4 {
    font-family: var(--font-serif);
    font-size: 20px;
}

.step-card p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--charcoal);
}

.disclaimer-text {
    font-size: 12px;
    font-style: italic;
    color: rgba(36, 33, 31, 0.7);
    margin-top: var(--space-16);
}

/* ==========================================
   12. Journal & Blog Management System
   ========================================== */
.journal-section {
    background-color: var(--bg-primary);
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-48);
}

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

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-48);
    }
}

.blog-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    background: transparent;
}

.blog-card-img {
    aspect-ratio: 16/10;
    overflow: hidden;
    background-color: var(--bg-secondary);
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.02);
}

.blog-card-body {
    padding-top: var(--space-24);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-meta {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
}

.blog-card h3 {
    font-size: 24px;
    color: var(--text-primary);
    line-height: 1.3;
}

.blog-card p {
    font-size: 15px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Admin Dashboard CSS */
.admin-dashboard {
    background-color: var(--bg-secondary);
    padding: var(--space-32);
    border: 1px solid var(--border-color);
    margin-top: var(--space-48);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: var(--space-16);
    margin-bottom: var(--space-32);
}

.admin-form-group {
    margin-bottom: var(--space-24);
}

.admin-form-group label {
    display: block;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-8);
}

.admin-form-group input,
.admin-form-group select,
.admin-form-group textarea {
    width: 100%;
    padding: var(--space-16);
    border: 1px solid var(--border-color);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    border-radius: var(--border-radius-sm);
    box-sizing: border-box;
}

.admin-form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.admin-blog-list {
    margin-top: var(--space-48);
}

.admin-blog-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-16);
    border-bottom: 1px solid var(--border-color);
}

/* ==========================================
   13. Guided Bespoke Form Steps
   ========================================== */
.bespoke-guided-container {
    max-width: 720px;
    margin: 0 auto;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: var(--space-48) 5vw;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-48);
    position: relative;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--border-color);
    z-index: 1;
}

.step-dot {
    width: 24px;
    height: 24px;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    z-index: 2;
    transition: all var(--transition-fast);
}

.step-dot.active {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
}

.step-dot.completed {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.guided-step {
    display: none;
}

.guided-step.active {
    display: block;
    animation: fadeIn var(--transition-medium) forwards;
}

.step-title {
    margin-bottom: var(--space-32);
    text-align: center;
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-16);
    margin-bottom: var(--space-32);
}

.option-box {
    border: 1px solid var(--border-color);
    padding: var(--space-24);
    text-align: center;
    cursor: pointer;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-medium);
    background-color: var(--bg-primary);
}

.option-box:hover {
    border-color: var(--text-primary);
}

.option-box.selected {
    border-color: var(--antique-gold);
    background-color: rgba(168, 134, 69, 0.08);
}

.option-icon {
    font-size: 24px;
    margin-bottom: var(--space-16);
    color: var(--text-secondary);
}

.option-box.selected .option-icon {
    color: var(--antique-gold);
}

.guided-nav {
    display: flex;
    justify-content: space-between;
    margin-top: var(--space-48);
}

/* ==========================================
   14. Modals & Drawer Drawers
   ========================================== */
.modal, .drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility var(--transition-medium), opacity var(--transition-medium);
}

.modal[aria-hidden="false"],
.drawer[aria-hidden="false"] {
    visibility: visible;
    opacity: 1;
}

.modal-overlay, .drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 10, 9, 0.65);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--warm-ivory);
    color: var(--ink-black);
    width: 90%;
    max-width: 680px;
    padding: var(--space-48);
    position: relative;
    z-index: 2001;
    border-radius: var(--border-radius-sm);
    max-height: 90vh;
    overflow-y: auto;
}

.auth-modal-content {
    max-width: 420px;
}

.modal-close, .drawer-close {
    position: absolute;
    top: var(--space-24);
    right: var(--space-24);
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
}

/* Drawer specific (Slide-out panel) */
.drawer {
    justify-content: flex-end;
}

.drawer-content {
    background-color: var(--warm-ivory);
    color: var(--ink-black);
    width: 100%;
    max-width: 460px;
    height: 100%;
    padding: var(--space-64) var(--space-48);
    position: relative;
    z-index: 2001;
    transform: translateX(100%);
    transition: transform var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.drawer[aria-hidden="false"] .drawer-content {
    transform: translateX(0);
}

/* Drawer search box */
.search-box {
    display: flex;
    border-bottom: 1px solid var(--ink-black);
    padding-bottom: var(--space-8);
    margin: var(--space-32) 0;
}

.search-box input {
    flex-grow: 1;
    font-size: 20px;
    font-family: var(--font-serif);
}

.quick-links {
    margin-top: var(--space-24);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-12);
}

.quick-links span {
    font-size: 12px;
    color: var(--charcoal);
}

.quick-links a {
    font-size: 12px;
    border-bottom: 1px solid var(--charcoal);
}

/* Form Styles inside Modals */
.form-group {
    margin-bottom: var(--space-24);
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form-group label {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--space-16);
    border: 1px solid rgba(11, 10, 9, 0.15);
    background-color: var(--warm-ivory);
    border-radius: var(--border-radius-sm);
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-24);
}

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    text-transform: none;
    letter-spacing: normal;
    font-size: 13px;
    color: var(--charcoal);
}

.appointment-success-msg {
    text-align: center;
    padding: var(--space-32) 0;
}

.success-icon {
    font-size: 48px;
    color: var(--antique-gold);
    margin-bottom: var(--space-24);
}

.success-icon + h3 {
    margin-bottom: 12px;
}

.success-icon + h3 + p {
    margin-bottom: var(--space-32);
}

/* ==========================================
   15. Product Details View Page
   ========================================== */
.product-details-container {
    padding-top: var(--space-128);
}

.product-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-16);
}

@media (min-width: 1024px) {
    .product-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-gallery-large {
        grid-column: span 2;
    }
}

.product-gallery-item {
    aspect-ratio: 3/4;
    overflow: hidden;
    background-color: var(--bg-secondary);
}

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

.product-info-panel {
    display: flex;
    flex-direction: column;
    gap: var(--space-24);
}

.product-info-panel h1 {
    font-size: 48px;
}

.product-price-large {
    font-size: 24px;
    font-weight: 500;
}

.collapsible-block {
    border-top: 1px solid var(--border-color);
    padding: var(--space-16) 0;
}

.collapsible-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.collapsible-body {
    padding-top: var(--space-16);
    font-size: 14px;
    display: none;
}

.collapsible-block.open .collapsible-body {
    display: block;
}

.collapsible-header i {
    transition: transform var(--transition-fast);
}

.collapsible-block.open .collapsible-header i {
    transform: rotate(180deg);
}

/* ==========================================
   16. House & Craftsmanship Story Layouts
   ========================================== */
.story-hero {
    height: 60vh;
    background-color: var(--ink-black);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.story-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.story-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.split-editorial-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-64);
    align-items: center;
}

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

.split-editorial-image {
    aspect-ratio: 4/5;
    overflow: hidden;
}

.split-editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-editorial-text {
    padding: var(--space-32);
}

/* ==========================================
   17. Footer Styling
   ========================================== */
.site-footer {
    background-color: var(--ink-black);
    color: var(--warm-ivory);
    padding: var(--space-96) 5vw var(--space-48);
    border-top: 1px solid var(--charcoal);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-48);
    margin-bottom: var(--space-64);
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
}

.footer-logo {
    height: 52px;
    width: 52px;
    object-fit: contain;
    background-color: white;
    padding: 6px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.footer-brand-title {
    font-size: 24px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-brand-desc {
    color: var(--silver);
    font-size: 14px;
    max-width: 320px;
}

.brand-tagline-footer {
    font-family: var(--font-serif);
    font-size: 14px;
    font-style: italic;
    color: var(--antique-gold);
}

.footer-column h4 {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-24);
    color: var(--warm-stone);
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
}

.footer-column ul a {
    font-size: 14px;
    color: var(--silver);
}

.footer-column ul a:hover {
    color: var(--warm-ivory);
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--silver);
}

.contact-details i {
    color: var(--accent-color);
}

.whatsapp-link {
    border-bottom: 1px solid var(--silver);
}

.atelier-hours li {
    font-size: 14px;
    color: var(--silver);
}

.footer-bottom {
    border-top: 1px solid var(--charcoal);
    padding-top: var(--space-32);
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--soft-taupe);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-meta-links {
    display: flex;
    gap: var(--space-24);
}

.brand-toggle-pill {
    padding: 2px 8px;
    border: 1px solid var(--soft-taupe);
    border-radius: 12px;
    font-size: 10px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.brand-toggle-pill:hover {
    background-color: var(--warm-ivory);
    color: var(--ink-black);
}

/* ==========================================
   18. Animations
   ========================================== */
@keyframes slowZoomOut {
    0% { transform: scale(1.08); }
    100% { transform: scale(1.0); }
}

@keyframes slowZoomOutTop {
    0% { transform: scale(1.18); }
    100% { transform: scale(1.10); }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-medium), transform var(--transition-medium);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Luxury Filter Buttons Styling */
.filter-btn {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 8px 20px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    border-radius: 0;
    transition: all var(--transition-medium);
}

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

/* Active Nav Link Spy Indicator */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width var(--transition-medium);
}

.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--accent-color) !important;
}

/* Symbol symbol styling */
.hero-brand-symbol {
    font-size: 32px;
    color: var(--antique-gold);
    margin-bottom: 16px;
    animation: rotateSymbol 6s infinite linear;
}

@keyframes rotateSymbol {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive grid for admin panel fields */
.admin-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.admin-form-group label {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.admin-form-group input, .admin-form-group select, .admin-form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
}

.admin-tab-btn {
    border: none;
    background: transparent;
    color: var(--text-secondary);
    padding: 12px;
    transition: all var(--transition-fast);
}

.admin-tab-btn.active {
    color: var(--accent-color);
    border-left: 2px solid var(--accent-color);
    background: rgba(168, 134, 69, 0.05);
}

/* Full page product details panel overrides */
#product-detail-drawer .drawer-content {
    max-width: 100vw !important;
    width: 100vw !important;
    height: 100vh !important;
    padding: 0 !important;
    overflow: hidden !important;
}

#product-detail-drawer .drawer-header {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 10;
    background: transparent;
    border: none;
    padding: 0;
}

#product-detail-drawer .drawer-close {
    background: var(--ink-black);
    color: var(--warm-ivory);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
}

#product-detail-drawer .drawer-close:hover {
    transform: scale(1.1);
    background: var(--accent-color);
}

#product-detail-drawer #detail-product-category {
    display: none; /* Hide header text in full-screen */
}

/* Responsive layout for smaller devices */
@media (max-width: 991px) {
    .fullpage-detail-wrapper {
        flex-direction: column !important;
        overflow-y: auto;
    }
    .fullpage-gallery, .fullpage-info {
        flex: none !important;
        max-height: none !important;
        width: 100% !important;
        overflow-y: visible !important;
    }
    .fullpage-gallery {
        padding: 32px 16px !important;
    }
    .fullpage-info {
        padding: 32px 24px !important;
    }
    #detail-main-img {
        height: 420px !important;
    }
}

/* Horizontal Sideways Scroll for Collections & New Arrivals Grids */
#collections-grid, #new-arrivals-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    gap: 32px !important;
    padding-bottom: 24px !important;
    scrollbar-width: none !important;
}
#collections-grid::-webkit-scrollbar, #new-arrivals-grid::-webkit-scrollbar {
    display: none !important;
}
#collections-grid .product-card, #new-arrivals-grid .product-card {
    flex: 0 0 340px !important;
    max-width: 340px !important;
    scroll-snap-align: start !important;
}
@media (max-width: 768px) {
    #collections-grid .product-card, #new-arrivals-grid .product-card {
        flex: 0 0 280px !important;
        max-width: 280px !important;
    }
}

/* Luxury Product Detail Layout & Typography - Unified Spread */
.fullpage-detail-wrapper {
    display: flex;
    flex-direction: row;
    height: 100vh !important;
    background: var(--warm-ivory) !important;
    width: 100%;
    overflow: hidden !important;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding: 0 80px;
    box-sizing: border-box;
}
.fullpage-gallery {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    background: transparent !important;
    height: 100vh !important;
    box-sizing: border-box;
    gap: 20px;
    overflow: hidden !important;
    border-right: none !important;
    padding: 0 !important;
}
.main-image-container {
    width: 100%;
    max-width: 440px;
    height: 60vh !important;
    position: relative;
}
#detail-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: opacity 0.3s ease;
    cursor: zoom-in;
}
.thumbnail-list {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    width: 100%;
    max-width: 440px;
    margin-bottom: 0;
}
.detail-thumb {
    width: 60px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.fullpage-info {
    flex: 0.9;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh !important;
    background: transparent !important;
    box-sizing: border-box;
    overflow: hidden !important;
}
.detail-info-content {
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.detail-category-eyebrow {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent-color);
}
.detail-title {
    font-family: var(--font-serif);
    font-size: 46px; /* High luxury large title */
    font-weight: 400;
    line-height: 1.1;
    color: var(--ink-black);
    margin: 4px 0 8px 0;
}
.detail-price {
    font-family: var(--font-serif);
    font-size: 26px;
    color: var(--ink-black);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}
.detail-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}
.detail-section-label {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: block;
}
.size-pill {
    padding: 10px 20px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    text-align: center;
    font-family: var(--font-sans);
    min-width: 56px;
    font-weight: 500;
    font-size: 12px;
    transition: all 0.2s ease;
}
.size-pill:hover {
    border-color: var(--ink-black);
}

/* Responsiveness for mobile/tablet screens */
@media (max-width: 1024px) {
    .fullpage-detail-wrapper {
        flex-direction: column !important;
        height: auto !important;
        overflow-y: auto !important;
    }
    .fullpage-gallery, .fullpage-info {
        flex: none !important;
        height: auto !important;
        width: 100% !important;
        overflow-y: visible !important;
        overflow: visible !important;
    }
    .fullpage-gallery {
        padding: 32px 24px !important;
        border-right: none !important;
        border-bottom: 1px solid var(--border-color) !important;
        gap: 16px !important;
    }
    .main-image-container {
        height: 50vh !important;
    }
    .fullpage-info {
        padding: 32px 24px 80px 24px !important;
    }
    .detail-title {
        font-size: 32px !important;
    }
}

/* Collections Horizontal Scroll Arrows */
.collections-carousel-wrapper {
    position: relative;
    width: 100%;
}
.scroll-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--ink-black);
    font-size: 15px;
}
.scroll-arrow:hover {
    background: var(--ink-black);
    color: var(--warm-ivory);
    border-color: var(--ink-black);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.scroll-arrow:active {
    transform: translateY(-50%) scale(0.95);
}
.scroll-arrow-left {
    left: -25px;
}
.scroll-arrow-right {
    right: -25px;
}

@media (max-width: 1100px) {
    .scroll-arrow-left {
        left: -10px;
    }
    .scroll-arrow-right {
        right: -10px;
    }
}

@media (max-width: 768px) {
    .scroll-arrow {
        display: none !important;
    }
    
    /* 🎬 Responsive Hero Video Reset */
    .hero-video-bg {
        transform: scale(1.0) !important;
        animation: none !important;
        object-position: center center !important;
    }

    /* 📱 Navigation & Spacing Adjustments */
    .header-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* 🖼️ Grid Card Sizing on Mobile */
    .product-grid, .editorial-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
        gap: 24px !important;
        padding: 0 16px !important;
    }

    /* 🛍️ Drawer & Modal Scale */
    .drawer {
        width: 100vw !important;
        max-width: 100vw !important;
    }
    .modal-content {
        width: 95vw !important;
        padding: 24px 16px !important;
    }

    /* 👕 Product Detail Slide-Over Mobile Scroll */
    .fullpage-detail-wrapper {
        flex-direction: column !important;
        height: 100vh !important;
        overflow-y: auto !important;
    }
    .fullpage-gallery, .fullpage-info {
        width: 100% !important;
        flex: none !important;
        max-height: none !important;
        overflow-y: visible !important;
    }
    .fullpage-gallery {
        padding: 16px !important;
    }
    .fullpage-info {
        padding: 24px 16px 80px 16px !important; /* Bottom spacing for actions */
    }
    #detail-main-img {
        height: 380px !important;
    }
    .thumbnail-list {
        margin-top: 12px !important;
        gap: 8px !important;
    }
    .detail-thumb {
        width: 50px !important;
        height: 65px !important;
    }
}
