/* House of Errors Styling for Maison Nyne */

:root {
    --bg-color: #ffffff;
    --text-color: #111111;
    --text-muted: #777777;
    --border-color: #111111;
    --border-muted: #e5e5e5;
    --accent-color: #111111;
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
    background: #cccccc;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #aaaaaa;
}

/* Loading Screen */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    width: 300px;
}

.loader-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUpIn 0.8s ease forwards;
}

.loader-bar-container {
    width: 100%;
    height: 1px;
    background-color: #e5e5e5;
    overflow: hidden;
    margin-bottom: 20px;
}

.loader-bar {
    width: 0%;
    height: 100%;
    background-color: #111111;
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.loader-subtitle {
    font-size: 0.75rem;
    letter-spacing: 6px;
    opacity: 0;
    animation: fadeUpIn 0.8s ease 0.3s forwards;
}

@keyframes fadeUpIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

/* Announcement Bar */
.announcement-bar {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 10px 12px;
    font-size: clamp(0.55rem, 2.6vw, 0.7rem);
    font-weight: 500;
    letter-spacing: clamp(0.3px, 0.5vw, 2px);
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-muted);
    position: relative;
    z-index: 100;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Header - Hidden on Scroll */
.site-header {
    position: absolute;
    top: 38px;
    /* sits below announcement bar */
    left: 0;
    width: 100%;
    z-index: 95;
    background-color: transparent;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-bottom: 1px solid transparent;
}

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

.header-container {
    width: 100%;
    padding: 14px 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.menu-toggle-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    justify-self: start;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    transition: opacity 0.3s ease;
}

.menu-toggle-btn:hover {
    opacity: 0.7;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    letter-spacing: 3px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

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

.header-logo-img {
    height: 42px;
    width: auto;
    display: block;
    filter: invert(1);
    mix-blend-mode: screen;
    transition: height 0.3s ease;
}

.header-utilities {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-self: end;
    color: #ffffff;
}

/* Header variant for Light Pages (About Us, etc.) */
.site-header.site-header-dark-text .menu-toggle-btn,
.site-header.site-header-dark-text .utility-btn,
.site-header.site-header-dark-text .country-selector-toggle,
.site-header.site-header-dark-text .header-utilities {
    color: #111111;
}

.site-header.site-header-dark-text .header-logo-img {
    filter: none;
    mix-blend-mode: multiply;
}

/* Header sits over the dark hero video: white by default, dark once scrolled */
.site-header.scrolled .menu-toggle-btn,
.site-header.scrolled .utility-btn,
.site-header.scrolled .header-utilities,
.site-header.scrolled .logo-text {
    color: #111111;
}

.site-header.scrolled .cart-badge {
    background-color: #111111;
    color: #ffffff;
}

.country-selector {
    position: relative;
}

.country-selector-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    color: inherit;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    user-select: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.country-selector-toggle:hover {
    opacity: 1;
}

.country-selector-toggle svg {
    transition: transform 0.3s ease;
}

.country-selector.open .country-selector-toggle svg {
    transform: rotate(180deg);
}

.country-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 200px;
    max-height: 320px;
    overflow-y: auto;
    background-color: #ffffff;
    border: 1px solid var(--border-muted);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.country-selector.open .country-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.country-option {
    padding: 10px 20px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #111111;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.country-option:hover {
    background-color: #f5f5f5;
}

.country-option.selected {
    font-weight: 700;
    background-color: #f5f5f5;
}

.utility-btn {
    background: transparent;
    border: none;
    color: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    position: relative;
    transition: opacity 0.3s ease;
}

.utility-btn:hover {
    opacity: 0.7;
}

.cart-badge {
    position: absolute;
    top: -3px;
    right: -5px;
    background-color: #ffffff;
    color: #000000;
    font-size: 0.65rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* Drawers General styling */
.nav-drawer-backdrop,
.cart-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-drawer-backdrop.active,
.cart-drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Left Slide Navigation Drawer */
.nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 420px;
    max-width: 100%;
    height: 100vh;
    background-color: #ffffff;
    z-index: 1005;
    border-right: 1px solid var(--border-muted);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.drawer-panels-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.drawer-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.drawer-panel.active {
    transform: translateX(0);
    z-index: 2;
}

.drawer-panel.prev {
    transform: translateX(-100%);
    z-index: 1;
}

.panel-header {
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-muted);
}

.panel-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    opacity: 0.8;
}

.drawer-close-btn {
    background: transparent;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    transition: opacity 0.3s ease;
}

.drawer-close-btn:hover {
    opacity: 0.7;
}

.panel-back-btn {
    background: transparent;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    transition: opacity 0.3s ease;
}

.panel-back-btn:hover {
    opacity: 0.7;
}

.panel-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 40px;
}

.submenu-heading {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 25px;
    text-transform: uppercase;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.nav-link-item {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    padding: 4px 0;
    position: relative;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-link-item:hover {
    transform: translateX(8px);
    opacity: 0.8;
}

.nav-link-item.highlight {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.45rem;
}

.nav-link-item svg {
    opacity: 0.5;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-link-item:hover svg {
    opacity: 1;
    transform: translateX(4px);
}

.submenu-links .nav-link-item {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 1.5px;
}

.panel-footer {
    padding: 40px;
    border-top: 1px solid var(--border-muted);
}

.drawer-socials {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.drawer-socials a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.drawer-socials a:hover {
    opacity: 1;
}

.drawer-copyright {
    font-size: 0.65rem;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* Right Slide Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 440px;
    max-width: 100%;
    height: 100vh;
    background-color: #ffffff;
    z-index: 1005;
    border-left: 1px solid var(--border-muted);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-drawer-header {
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-muted);
}

.cart-drawer-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.cart-close-btn {
    background: transparent;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    transition: opacity 0.3s ease;
}

.cart-close-btn:hover {
    opacity: 0.7;
}

.cart-drawer-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.empty-cart-msg {
    margin: auto;
    text-align: center;
}

.empty-cart-msg p {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.continue-shopping-btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 0.75rem;
    text-decoration: none;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cart-item {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 25px;
}

.cart-item-img-container {
    width: 80px;
    height: 100px;
    background-color: #f5f5f5;
    overflow: hidden;
}

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

.cart-item-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item-title {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.4;
    text-transform: uppercase;
}

.cart-item-size {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.cart-item-price {
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 5px;
}

.cart-item-qty-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid #dddddd;
}

.qty-btn {
    background: transparent;
    border: none;
    color: var(--text-color);
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background-color: #f5f5f5;
}

.qty-val {
    width: 30px;
    text-align: center;
    font-size: 0.75rem;
}

.cart-item-remove {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cart-item-remove:hover {
    color: #111111;
}

.cart-drawer-footer {
    padding: 30px 40px;
    border-top: 1px solid var(--border-muted);
    background-color: #ffffff;
}

.cart-subtotal-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.cart-shipping-note {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.checkout-btn {
    width: 100%;
    background-color: #111111;
    color: #ffffff;
    border: 1px solid #111111;
    padding: 16px 20px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.checkout-btn:hover {
    background-color: #ffffff;
    color: #111111;
}

/* Hero Section (Video Background) */
.hero-section {
    position: relative;
    width: 100%;
    aspect-ratio: 1672 / 941;
    height: auto;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-color: #000;
}

@media (max-width: 768px) {
    .hero-section {
        aspect-ratio: auto;
        height: 100vh;
    }

    .hero-bg-image {
        object-fit: cover;
    }
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Full-bleed cover image, matching video background behavior */
.hero-bg-image {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    z-index: 2;
}

/* Hero Slider Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.3s ease;
}

.hero-arrow:hover {
    color: #ffffff;
}

.hero-arrow-prev {
    left: 20px;
}

.hero-arrow-next {
    right: 20px;
}

.hero-arrow-prev:hover {
    transform: translateY(-50%) translateX(-3px);
}

.hero-arrow-next:hover {
    transform: translateY(-50%) translateX(3px);
}

@media (max-width: 768px) {
    .hero-arrow-prev {
        left: 5px;
    }

    .hero-arrow-next {
        right: 5px;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.45));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    padding: 0 20px 60px 20px;
    max-width: 800px;
}

.hero-title {
    font-family: 'Courier New', Courier, monospace;
    font-size: clamp(0.85rem, 1.6vw, 1.05rem);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-family: 'Courier New', Courier, monospace;
    font-size: clamp(0.6rem, 1.2vw, 0.75rem);
    font-weight: 500;
    letter-spacing: 4px;
    margin-bottom: 28px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* Countdown Timer */
.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 0 auto 30px auto;
    max-width: 500px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 55px;
}

.countdown-number {
    font-family: var(--font-sans);
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    font-weight: 300;
    letter-spacing: 2px;
    color: #ffffff;
    line-height: 1;
}

.countdown-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    text-transform: uppercase;
}

.countdown-divider {
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    align-self: flex-start;
    margin-top: -4px;
}

.btn-outline-white {
    display: inline-block;
    background: transparent;
    color: #111111;
    border: 1.5px solid #111111;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-outline-white:hover {
    background-color: #111111;
    color: #ffffff;
}

/* Hero CTA sits over the dark video, so it stays white */
.hero-cta-btn {
    font-family: 'Courier New', Courier, monospace;
    color: #ffffff;
    border-color: #ffffff;
}

.hero-cta-btn:hover {
    background-color: #ffffff;
    color: #111111;
}

/* Banner Strip (Below Hero) */
.banner-strip {
    position: relative;
    width: 100%;
    line-height: 0;
}

.banner-strip picture,
.banner-strip-image {
    display: block;
    width: 100%;
    height: auto;
}

.banner-strip-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0));
    pointer-events: none;
}

.banner-strip-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    line-height: normal;
    color: #ffffff;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.banner-strip-text-block {
    flex: 1;
    min-width: 0;
}

.banner-strip-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 400;
    margin-bottom: 14px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.banner-strip-text {
    max-width: 520px;
    font-size: 0.85rem;
    line-height: 1.6;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.banner-strip-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.banner-strip-btn {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    border: 1.5px solid #ffffff;
    padding: 14px 28px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.banner-strip-btn:hover {
    background-color: #ffffff;
    color: #111111;
}

@media (max-width: 768px) {
    .banner-strip-content {
        flex-direction: column;
        align-items: stretch;
        padding: 24px 20px;
        gap: 18px;
    }

    .banner-strip-text {
        max-width: 100%;
        font-size: 0.78rem;
    }

    .banner-strip-actions {
        gap: 10px;
    }

    .banner-strip-btn {
        padding: 12px 20px;
        font-size: 0.68rem;
        flex: 1;
        text-align: center;
    }
}

/* Main Content area */
.main-content {
    background-color: #ffffff;
    position: relative;
    z-index: 10;
}

/* About Page: Page Banner */
.page-banner {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 380px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

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

.page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.45));
    z-index: 2;
}

.page-banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}

.page-banner-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 14px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.page-banner-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 12px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.page-banner-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   ABOUT US PAGE — LIGHT LUXURY DESIGN SYSTEM (EST. 2026)
   Inspired by Sézane, Ani Clothing, Kith & Animale
   ========================================================================== */

/* Hero Common Base Styles */
.about-hero-dark-luxury,
.about-hero-light {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 40px 100px 40px;
    overflow: hidden;
}

.about-hero-dark-luxury .about-hero-bg,
.about-hero-light .about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero-dark-luxury .about-hero-bg img,
.about-hero-light .about-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-dark-luxury .about-hero-overlay,
.about-hero-light .about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.about-hero-dark-luxury .about-hero-content,
.about-hero-light .about-hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    text-align: center;
}

/* Hero Dark Luxury (Version 2 - Dark Hero for White Logo) */
.about-hero-dark-luxury {
    background-color: #050505 !important;
}

.about-hero-dark-luxury .about-hero-bg img {
    opacity: 1;
    filter: brightness(0.85) contrast(1.05);
}

.about-hero-dark-luxury .about-hero-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 40%, rgba(0, 0, 0, 0.4) 75%, #faf8f5 100%) !important;
}

.about-hero-dark-luxury .about-hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: #cccccc !important;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.about-hero-dark-luxury .about-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.15;
    color: #ffffff !important;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.about-hero-dark-luxury .about-hero-subtitle {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    font-weight: 300;
    letter-spacing: 2px;
    color: #e5e5e5 !important;
    text-transform: uppercase;
    max-width: 650px;
    margin: 0 auto;
}

/* Hero Light Luxury (Version 1 - Full Light Theme) */
.about-hero-light {
    background-color: #faf8f5 !important;
}

.about-hero-light .about-hero-bg img {
    opacity: 0.82;
    filter: brightness(0.96) contrast(1.04);
}

.about-hero-light .about-hero-overlay {
    background: linear-gradient(180deg, rgba(250, 248, 245, 0.88) 0%, rgba(255, 255, 255, 0.45) 50%, #faf8f5 100%) !important;
}

.about-hero-light .about-hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: #444444 !important;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.about-hero-light .about-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.15;
    color: #111111 !important;
    margin-bottom: 24px;
    text-shadow: 0 2px 15px rgba(255, 255, 255, 0.9);
}

.about-hero-light .about-hero-subtitle {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    font-weight: 400;
    letter-spacing: 2px;
    color: #333333 !important;
    text-transform: uppercase;
    max-width: 650px;
    margin: 0 auto;
}

/* Manifesto Section Light */
.manifesto-section-light {
    width: 100%;
    padding: 60px 40px 100px 40px;
    background-color: #faf8f5;
}

.manifesto-card-light {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 1px solid #eae6df;
    padding: 70px 60px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    position: relative;
}

.manifesto-quote-icon {
    font-family: var(--font-serif);
    font-size: 5rem;
    line-height: 1;
    color: #d4cebe;
    margin-bottom: -20px;
    display: block;
}

.manifesto-quote-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.3rem, 2.8vw, 2.1rem);
    font-weight: 400;
    line-height: 1.45;
    color: #111111;
    margin-bottom: 35px;
}

.manifesto-signature-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.manifesto-script {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: #222222;
}

.manifesto-role {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #888888;
    text-transform: uppercase;
}

/* Multi-Chapter Storytelling */
.story-chapters-section {
    width: 100%;
    padding: 100px 40px;
    background-color: #ffffff;
}

.story-chapters-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.chapter-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.chapter-row-reverse .chapter-content {
    order: 2;
}

.chapter-row-reverse .chapter-image-wrap {
    order: 1;
}

.chapter-image-wrap {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background-color: #f5f3ee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.chapter-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.chapter-image-wrap:hover .chapter-image {
    transform: scale(1.04);
}

.chapter-num {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: #b0a898;
    margin-bottom: 12px;
    display: block;
}

.chapter-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.25;
    color: #111111;
    margin-bottom: 24px;
}

.chapter-text {
    font-size: 0.95rem;
    line-height: 1.85;
    color: #555555;
    margin-bottom: 20px;
}

.chapter-text:last-child {
    margin-bottom: 0;
}

.chapter-highlight {
    font-weight: 600;
    color: #111111;
}

/* Atelier Stats Ticker Light */
.atelier-stats-section {
    width: 100%;
    background-color: #f7f5f0;
    border-top: 1px solid #eae5db;
    border-bottom: 1px solid #eae5db;
    padding: 80px 40px;
}

.atelier-stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-card {
    padding: 20px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    color: #111111;
    line-height: 1;
    margin-bottom: 14px;
}

.stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #777777;
    text-transform: uppercase;
}

/* Asymmetric Editorial Gallery */
.editorial-collage-section {
    width: 100%;
    padding: 120px 40px;
    background-color: #ffffff;
}

.editorial-collage-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px auto;
}

.editorial-collage-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    color: #888888;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
}

.editorial-collage-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: #111111;
}

.editorial-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 35px;
    align-items: center;
}

.editorial-card {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #f7f5f0;
}

.editorial-card-tall {
    aspect-ratio: 3 / 4;
}

.editorial-card-center {
    aspect-ratio: 3 / 4.2;
    transform: translateY(-20px);
}

.editorial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.editorial-caption {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.editorial-product-name {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #111111;
    text-transform: uppercase;
}

.editorial-product-tag {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #777777;
    text-transform: uppercase;
}

/* Call to Action Light */
.about-cta-section {
    width: 100%;
    padding: 100px 40px;
    background-color: #faf8f5;
    text-align: center;
    border-top: 1px solid #eae5db;
}

.about-cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.about-cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 400;
    color: #111111;
    margin-bottom: 20px;
}

.about-cta-text {
    font-size: 0.95rem;
    color: #666666;
    margin-bottom: 35px;
    line-height: 1.7;
}

.about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-dark-luxury {
    display: inline-block;
    background-color: #111111;
    color: #ffffff;
    padding: 16px 36px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #111111;
}

.btn-dark-luxury:hover {
    background-color: #333333;
    border-color: #333333;
    color: #ffffff;
}

.btn-outline-dark {
    display: inline-block;
    background-color: transparent;
    color: #111111;
    padding: 16px 36px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #111111;
}

.btn-outline-dark:hover {
    background-color: #111111;
    color: #ffffff;
}

/* Media Queries */
@media (max-width: 992px) {
    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .editorial-card-center {
        transform: translateY(0);
    }

    .atelier-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
    }

    .chapter-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .chapter-row-reverse .chapter-content,
    .chapter-row-reverse .chapter-image-wrap {
        order: initial;
    }
}

@media (max-width: 768px) {
    .about-hero-light {
        min-height: 55vh;
        padding: 120px 20px 60px 20px;
    }

    .manifesto-card-light {
        padding: 40px 25px;
    }

    .story-chapters-section {
        padding: 60px 20px;
    }

    .story-chapters-container {
        gap: 70px;
    }

    .atelier-stats-section {
        padding: 60px 20px;
    }

    .atelier-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .editorial-collage-section {
        padding: 70px 20px;
    }

    .about-cta-section {
        padding: 70px 20px;
    }

    .about-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-dark-luxury,
    .btn-outline-dark {
        width: 100%;
    }
}
    }

    .story-quote-section {
        padding: 0 20px 70px 20px;
    }

    .story-values {
        padding: 60px 20px;
    }

    .story-values-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Section general headings */
.section-header-block {
    text-align: center;
    padding: 80px 20px 50px 20px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--text-muted);
}

/* Featured Collection Product Grid */
.featured-collection {
    padding: 0 0 100px 0;
    width: 100%;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 0;
}

.product-card {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.product-card-media {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background-color: #f5f5f5;
}

.product-image-primary,
.product-image-secondary {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-image-secondary {
    opacity: 0;
}

.product-card:hover .product-image-secondary {
    opacity: 1;
    transform: scale(1.03);
}

.product-card:hover .product-image-primary {
    opacity: 0;
    transform: scale(1.03);
}

/* Quick Add Panel */
.quick-add-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid #e5e5e5;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transform: translateY(101%);
    transition: var(--transition-smooth);
    z-index: 10;
}

.product-card:hover .quick-add-panel {
    transform: translateY(0);
}

.quick-add-title {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.quick-add-sizes {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.size-btn {
    background: transparent;
    border: 1px solid #dddddd;
    color: var(--text-color);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.size-btn:hover {
    background-color: #111111;
    color: #ffffff;
    border-color: #111111;
}

.product-card-info {
    padding: 10px 8px 0 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-card-title {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card-price {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-color);
}

/* Newsletter Signup Container */
.newsletter-signup {
    background-color: #ffffff;
    padding: 100px 40px;
    border-top: 1px solid var(--border-muted);
    border-bottom: 1px solid var(--border-muted);
}

.newsletter-container {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid #e5e5e5;
    padding: 60px 40px;
}

.newsletter-title {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.newsletter-subtitle {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.6;
}

.newsletter-form-custom {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    width: 100%;
}

.newsletter-form-custom input[type="email"] {
    width: 100%;
    max-width: 450px;
    background-color: transparent;
    border: 1px solid #dddddd;
    padding: 16px 20px;
    color: #111111;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-align: center;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form-custom input[type="email"]:focus {
    border-color: #111111;
}

.newsletter-submit-btn {
    width: 100%;
    max-width: 450px;
    padding: 16px 20px;
}

/* Category Showcases */
.category-showcase-2col {
    padding: 40px 40px 20px 40px;
    width: 100%;
}

.cat-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.category-showcase-3col {
    padding: 20px 40px 60px 40px;
    width: 100%;
}

.cat-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.category-banner-card {
    position: relative;
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
    text-decoration: none;
}

.cat-grid-3 .category-banner-card {
    aspect-ratio: 4/5;
}

.card-bg-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.card-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
    transition: var(--transition-slow);
}

.card-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.card-category-title {
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
    transition: var(--transition-smooth);
}

/* Hover effects for Category Cards */
.category-banner-card:hover .card-bg-image {
    transform: scale(1.05);
    filter: brightness(0.75);
}

.category-banner-card:hover .card-category-title {
    letter-spacing: 6px;
}

/* Site Footer */
.site-footer {
    border-top: 1px solid var(--border-muted);
    padding: 80px 40px 40px 40px;
    width: 100%;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-heading {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    opacity: 0.8;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-links-list a:hover {
    color: #111111;
}

.footer-col-newsletter {
    grid-column: span 1;
}

.footer-newsletter-text {
    font-size: 0.75rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.footer-newsletter-form {
    width: 100%;
}

.footer-input-group {
    display: flex;
    border-bottom: 1px solid #dddddd;
    padding-bottom: 8px;
    align-items: center;
}

.footer-input-group input {
    background: transparent;
    border: none;
    color: #111111;
    width: 100%;
    outline: none;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.footer-input-group button {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.footer-input-group button:hover {
    color: #111111;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid #eeeeee;
    padding-top: 40px;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-legal p {
    font-size: 0.65rem;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #111111;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-socials a:hover {
    opacity: 1;
}

/* Join Waitlist Floating Card */
.waitlist-card {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 380px;
    max-width: calc(100vw - 32px);
    background-color: #faf8f5;
    border: 1px solid var(--border-muted);
    padding: 34px 30px;
    text-align: center;
    z-index: 500;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.waitlist-card.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.waitlist-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 4px;
    display: flex;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.waitlist-close-btn:hover {
    opacity: 1;
}

.waitlist-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.waitlist-subtitle {
    font-size: 0.8rem;
    color: #555555;
    margin-bottom: 20px;
}

.waitlist-form {
    display: flex;
    border: 1px solid var(--border-color);
    margin-bottom: 18px;
}

.waitlist-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 13px 16px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--text-color);
    outline: none;
}

.waitlist-input::placeholder {
    color: #999999;
}

.waitlist-submit-btn {
    background-color: #111111;
    color: #ffffff;
    border: none;
    padding: 0 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.waitlist-submit-btn:hover {
    opacity: 0.8;
}

.waitlist-note {
    font-size: 0.72rem;
    line-height: 1.6;
    color: #777777;
    margin-bottom: 22px;
}

.waitlist-countdown-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border-muted);
}

.waitlist-countdown-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #555555;
}

.waitlist-countdown-items {
    display: flex;
    gap: 6px;
}

.waitlist-countdown-box {
    border: 1px solid var(--border-muted);
    padding: 5px 9px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-color);
}

@media (max-width: 600px) {
    .waitlist-card {
        left: 16px;
        bottom: 16px;
        width: calc(100vw - 32px);
        padding: 28px 22px;
    }

    .waitlist-countdown-row {
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* Gallery Page */
.gallery-section {
    width: 100%;
    padding: 100px 40px;
}

.gallery-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px auto;
}

.gallery-eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.gallery-heading {
    font-family: var(--font-serif);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.3;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.gallery-item picture {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-item.tall {
    aspect-ratio: 3 / 5;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

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

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 20px;
    }

    .gallery-intro {
        margin-bottom: 36px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
}

/* Lookbook Page */
.lookbook-section {
    width: 100%;
    padding: 100px 40px;
}

.lookbook-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 70px auto;
}

.lookbook-eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.lookbook-heading {
    font-family: var(--font-serif);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.3;
}

.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px 30px;
}

.lookbook-look {
    display: flex;
    flex-direction: column;
}

.lookbook-image-wrap {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    margin-bottom: 18px;
}

.lookbook-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.lookbook-look:hover .lookbook-image {
    transform: scale(1.04);
}

.lookbook-caption {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}

.lookbook-index {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.lookbook-name {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: right;
}

@media (max-width: 768px) {
    .lookbook-section {
        padding: 60px 20px;
    }

    .lookbook-intro {
        margin-bottom: 40px;
    }

    .lookbook-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Toast styling */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #111111;
    color: #ffffff;
    padding: 14px 28px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: translateY(150px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 9999;
}

.toast.show {
    transform: translateY(0);
}

/* Responsive Grid adjustments */
@media (max-width: 992px) {
    .site-header {
        top: 36px;
    }

    .header-container {
        padding: 15px 25px;
    }

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

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

    .footer-col-newsletter {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .about-hero-dark-luxury,
    .about-hero-light {
        min-height: 65vh;
        padding: 130px 20px 60px 20px;
    }

    .about-hero-dark-luxury .about-hero-title,
    .about-hero-light .about-hero-title {
        font-size: clamp(1.8rem, 7vw, 2.6rem);
        margin-bottom: 16px;
    }

    .about-hero-dark-luxury .about-hero-subtitle,
    .about-hero-light .about-hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }

    .about-hero-dark-luxury .about-hero-eyebrow,
    .about-hero-light .about-hero-eyebrow {
        font-size: 0.65rem;
        letter-spacing: 2.5px;
        margin-bottom: 14px;
    }

    .country-selector {
        display: none;
        /* Hide on small screens to avoid clutter */
    }

    .site-header {
        top: 35px;
    }

    .header-container {
        padding: 12px 15px;
    }

    .header-logo-img {
        height: 30px;
    }

    .nav-drawer {
        width: 100%;
    }

    .cart-drawer {
        width: 100%;
    }

    .panel-header,
    .panel-body,
    .panel-footer,
    .cart-drawer-header,
    .cart-drawer-body,
    .cart-drawer-footer {
        padding: 20px;
    }

    .nav-link-item {
        font-size: 1.3rem;
    }

    .featured-collection {
        padding: 0 0 60px 0;
    }

    .section-header-block {
        padding: 25px 15px 15px 15px;
    }

    .newsletter-signup {
        padding: 60px 15px;
    }

    .newsletter-container {
        padding: 40px 15px;
    }

    .category-showcase-2col,
    .category-showcase-3col {
        padding: 10px 15px;
    }

    .cat-grid-2 {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .cat-grid-3 {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .category-banner-card {
        aspect-ratio: 16/9;
    }

    .site-footer {
        padding: 60px 15px 30px 15px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-col-newsletter {
        grid-column: span 1;
    }

    .footer-bottom-row {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 30px;
        padding-top: 30px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px 0;
    }

    .product-card-title {
        font-size: 0.65rem;
    }

    .product-card-price {
        font-size: 0.65rem;
    }

    .quick-add-sizes {
        gap: 4px;
    }

    .size-btn {
        width: 30px;
        height: 30px;
        font-size: 0.65rem;
    }
}

/* ==========================================================================
   NEW PAGES DESIGN SYSTEM (SHOP, POLICIES, SIZE GUIDE, FAQS, CONTACT, HISTORY)
   ========================================================================== */

/* Page Header / Hero Banner Base */
.page-header-hero {
    position: relative;
    width: 100%;
    min-height: 45vh;
    background-color: #0b0b0b;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 40px 60px 40px;
    overflow: hidden;
    color: #ffffff;
}
.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: brightness(0.7) contrast(1.1);
}
.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(10,10,10,0.85) 100%);
    z-index: 2;
}
.page-header-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
}
.page-header-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: #aaaaaa;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.page-header-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.15;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.page-header-subtitle {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    font-weight: 300;
    letter-spacing: 2px;
    color: #cccccc;
    text-transform: uppercase;
}

/* Shop Catalog Bar & Filters */
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    border-bottom: 1px solid var(--border-muted);
    background-color: #ffffff;
    gap: 20px;
    flex-wrap: wrap;
}
.shop-categories-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    overflow-x: auto;
    padding-bottom: 4px;
}
.shop-cat-btn {
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #333333;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition-smooth);
    cursor: pointer;
}
.shop-cat-btn:hover,
.shop-cat-btn.active {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}
.shop-sort-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}
.shop-sort-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
}
.shop-sort-select {
    padding: 8px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    background: #ffffff;
    color: #111111;
    cursor: pointer;
    outline: none;
}

/* Policy & Content Pages Layout */
.policy-section {
    padding: 80px 40px;
    background-color: #faf8f5;
    min-height: 60vh;
}
.policy-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 1px solid #eae6df;
    padding: 60px 80px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}
.policy-block {
    margin-bottom: 50px;
}
.policy-block:last-child {
    margin-bottom: 0;
}
.policy-heading {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: #111111;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}
.policy-subheading {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #222222;
    margin: 24px 0 12px 0;
}
.policy-text {
    font-size: 0.92rem;
    line-height: 1.85;
    color: #555555;
    margin-bottom: 16px;
}
.policy-list {
    margin: 16px 0 20px 24px;
    color: #555555;
    font-size: 0.92rem;
    line-height: 1.8;
}
.policy-list li {
    margin-bottom: 8px;
}

/* Sizing Guide Table */
.size-table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
}
.size-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    font-size: 0.82rem;
}
.size-table th {
    background-color: #111111;
    color: #ffffff;
    padding: 14px 16px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid #111111;
}
.size-table td {
    padding: 14px 16px;
    border: 1px solid #eae6df;
    color: #333333;
}
.size-table tr:nth-child(even) td {
    background-color: #faf8f5;
}

/* Accordion FAQ */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
}
.faq-item {
    border: 1px solid #eae6df;
    background-color: #ffffff;
    transition: var(--transition-smooth);
}
.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: #111111;
    cursor: pointer;
}
.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
    padding: 0 28px;
    font-size: 0.92rem;
    line-height: 1.8;
    color: #555555;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 28px 24px 28px;
}

/* Contact Page Form & Details */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-form-card {
    background: #ffffff;
    border: 1px solid #eae6df;
    padding: 50px 40px;
}
.form-group {
    margin-bottom: 24px;
}
.form-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #333333;
    margin-bottom: 8px;
}
.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    font-size: 0.88rem;
    font-family: var(--font-sans);
    outline: none;
    transition: border-color 0.3s;
}
.form-input:focus,
.form-textarea:focus {
    border-color: #111111;
}
.contact-info-card {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contact-detail-box {
    background: #ffffff;
    border: 1px solid #eae6df;
    padding: 30px;
}
.contact-detail-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #888888;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.contact-detail-value {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: #111111;
    line-height: 1.4;
}

/* History Timeline */
.history-timeline {
    position: relative;
    max-width: 900px;
    margin: 50px auto 0 auto;
}
.history-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background-color: #eae6df;
    transform: translateX(-50%);
}
.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50px;
    position: relative;
    margin-bottom: 60px;
    width: 50%;
}
.timeline-item:nth-child(even) {
    align-self: flex-end;
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50px;
    margin-left: 50%;
}
.timeline-dot {
    position: absolute;
    top: 20px;
    right: -7px;
    width: 14px;
    height: 14px;
    background-color: #111111;
    border-radius: 50%;
    z-index: 2;
}
.timeline-item:nth-child(even) .timeline-dot {
    right: auto;
    left: -7px;
}
.timeline-card {
    background: #ffffff;
    border: 1px solid #eae6df;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}
.timeline-year {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: #111111;
    margin-bottom: 8px;
}
.timeline-title {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666666;
    margin-bottom: 12px;
}
.timeline-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #555555;
}

@media (max-width: 768px) {
    .policy-container {
        padding: 40px 20px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .history-timeline::before {
        left: 20px;
    }
    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        margin-left: 0;
        padding-left: 50px;
        padding-right: 0;
    }
    .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 13px;
        right: auto;
    }
}

/* ==========================================================================
   PRODUCT DETAIL PAGE (PDP) DESIGN SYSTEM
   ========================================================================== */

.pdp-section {
    padding: 140px 40px 100px 40px;
    background-color: #ffffff;
    min-height: 100vh;
}
.pdp-container {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 70px;
    align-items: start;
}
.pdp-breadcrumb {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 30px;
    grid-column: span 2;
}
.pdp-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.pdp-breadcrumb a:hover {
    color: #111111;
}

/* PDP Gallery */
.pdp-gallery-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
}
.pdp-main-image-wrap {
    width: 100%;
    aspect-ratio: 4 / 5;
    background-color: #f5f3ee;
    overflow: hidden;
    position: relative;
}
.pdp-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.pdp-main-image-wrap:hover .pdp-main-image {
    transform: scale(1.05);
}
.pdp-thumbs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.pdp-thumb-item {
    aspect-ratio: 4 / 5;
    background-color: #f5f3ee;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}
.pdp-thumb-item.active,
.pdp-thumb-item:hover {
    border-color: #111111;
}
.pdp-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* PDP Info Panel */
.pdp-info-panel {
    display: flex;
    flex-direction: column;
}
.pdp-badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: #f4efea;
    color: #444444;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 20px;
    align-self: flex-start;
    margin-bottom: 16px;
}
.pdp-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.2;
    color: #111111;
    margin-bottom: 12px;
}
.pdp-price-row {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 20px;
}
.pdp-price {
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #111111;
}
.pdp-tax-note {
    font-size: 0.75rem;
    color: #888888;
    letter-spacing: 0.5px;
}
.pdp-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: #111111;
    margin-bottom: 24px;
}
.pdp-stars {
    color: #111111;
    letter-spacing: 2px;
}
.pdp-desc {
    font-size: 0.92rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eae6df;
}

/* Swatches & Sizes */
.pdp-option-group {
    margin-bottom: 26px;
}
.pdp-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.pdp-option-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #111111;
}
.pdp-size-guide-link {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #777777;
    text-decoration: underline;
}
.pdp-size-guide-link:hover {
    color: #111111;
}
.pdp-sizes-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.pdp-size-btn {
    min-width: 52px;
    height: 44px;
    padding: 0 16px;
    border: 1px solid #d0d0d0;
    background: #ffffff;
    font-size: 0.78rem;
    font-weight: 600;
    color: #111111;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.pdp-size-btn.active,
.pdp-size-btn:hover {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}
.pdp-swatches-list {
    display: flex;
    gap: 12px;
}
.pdp-swatch-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    outline: 1px solid #ccc;
    cursor: pointer;
    transition: outline-color 0.2s;
}
.pdp-swatch-dot.active,
.pdp-swatch-dot:hover {
    outline-color: #111111;
    outline-width: 2px;
}

/* Actions */
.pdp-actions-row {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}
.pdp-qty-stepper {
    display: flex;
    align-items: center;
    border: 1px solid #111111;
    height: 52px;
}
.pdp-qty-btn {
    width: 44px;
    height: 100%;
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
}
.pdp-qty-val {
    width: 40px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
}
.pdp-add-btn {
    flex: 1;
    height: 52px;
    background: #111111;
    color: #ffffff;
    border: none;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.pdp-add-btn:hover {
    background: #2a2a2a;
}

/* Guarantees List */
.pdp-guarantee-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px;
    background-color: #faf8f5;
    border: 1px solid #eae6df;
    margin-bottom: 30px;
}
.pdp-guarantee-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.8rem;
    color: #333333;
    font-weight: 500;
}
.pdp-guarantee-icon {
    width: 20px;
    height: 20px;
    color: #111111;
    flex-shrink: 0;
}

/* PDP Accordion */
.pdp-details-accordion {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #eae6df;
}
.pdp-acc-item {
    border-bottom: 1px solid #eae6df;
}
.pdp-acc-btn {
    width: 100%;
    padding: 18px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #111111;
    cursor: pointer;
}
.pdp-acc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
    font-size: 0.88rem;
    line-height: 1.7;
    color: #555555;
}
.pdp-acc-item.active .pdp-acc-content {
    max-height: 250px;
    padding-bottom: 18px;
}
.pdp-acc-item.active .pdp-acc-icon {
    transform: rotate(45deg);
}

@media (max-width: 992px) {
    .pdp-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .pdp-breadcrumb {
        grid-column: span 1;
    }
    .pdp-gallery-wrap {
        position: relative;
        top: 0;
    }
}

/* ==========================================================================
   LOOKBOOK & INTERACTIVE LIGHTBOX ZOOM MODAL DESIGN SYSTEM
   ========================================================================== */

.lookbook-section {
    padding: 80px 40px 120px 40px;
    max-width: 1440px;
    margin: 0 auto;
}
.lookbook-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px auto;
}
.lookbook-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}
.lookbook-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.25;
    color: #111111;
    margin-bottom: 20px;
}
.lookbook-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555555;
}

/* Filter Pills */
.lb-filter-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
.lb-filter-btn {
    padding: 10px 22px;
    border: 1px solid #e0dad3;
    background: #ffffff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555555;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.lb-filter-btn.active,
.lb-filter-btn:hover {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

/* Editorial Grid */
.lb-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.lb-card {
    position: relative;
    background-color: #f5f3ee;
    overflow: hidden;
    cursor: pointer;
    group: lb-card;
}
.lb-card:nth-child(even) {
    margin-top: 50px;
}
.lb-card-media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}
.lb-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.lb-card:hover .lb-card-img {
    transform: scale(1.06);
}
.lb-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lb-card:hover .lb-card-overlay {
    opacity: 1;
}
.lb-zoom-badge {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    color: #111111;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(15px);
    transition: transform 0.4s ease;
}
.lb-card:hover .lb-zoom-badge {
    transform: translateY(0);
}
.lb-badge-top {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 14px;
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(6px);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
}
.lb-card-info {
    padding: 20px 0 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.lb-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: #111111;
}
.lb-shop-link {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #777777;
    text-transform: uppercase;
    text-decoration: underline;
}
.lb-shop-link:hover {
    color: #111111;
}

/* Fullscreen Lightbox Zoom Modal */
.lb-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(8, 8, 8, 0.96);
    backdrop-filter: blur(20px);
    display: none;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.lb-modal.active {
    display: flex;
    opacity: 1;
}

/* Modal Top Controls */
.lb-modal-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    color: #ffffff;
    z-index: 10005;
}
.lb-modal-counter {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}
.lb-modal-tools {
    display: flex;
    align-items: center;
    gap: 16px;
}
.lb-tool-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.lb-tool-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}
.lb-close-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #111111;
}
.lb-close-btn:hover {
    background: #ffffff;
    color: #000000;
}

/* Modal Center Stage */
.lb-modal-stage {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
    user-select: none;
}
.lb-modal-img-wrap {
    max-width: 90vw;
    max-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.lb-modal-img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: zoom-in;
}
.lb-modal-img.zoomed {
    cursor: grab;
}
.lb-modal-img.zoomed:active {
    cursor: grabbing;
}

/* Modal Navigation Arrows */
.lb-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10005;
    transition: background 0.3s;
}
.lb-nav-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}
.lb-nav-prev { left: 40px; }
.lb-nav-next { right: 40px; }

/* Modal Bottom Caption Bar */
.lb-modal-caption {
    padding: 24px 40px;
    background: rgba(17, 17, 17, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10005;
}
.lb-caption-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.lb-caption-index {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent-gold);
    text-transform: uppercase;
}
.lb-caption-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 400;
}
.lb-shop-btn {
    padding: 12px 28px;
    background: #ffffff;
    color: #111111;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.2s;
}
.lb-shop-btn:hover {
    background: #eae6df;
}

@media (max-width: 768px) {
    .lb-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .lb-card:nth-child(even) {
        margin-top: 0;
    }
    .lb-modal-controls {
        padding: 16px 20px;
    }
    .lb-nav-prev { left: 15px; }
    .lb-nav-next { right: 15px; }
    .lb-modal-caption {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
        padding: 20px;
    }
}
/* ==========================================================================
   ABOUT PAGE — EDITORIAL MINIMAL (Sézane-inspired)
   ========================================================================== */

/* Light page: header must be dark since there is no dark hero behind it */
body.light-page .site-header {
    background-color: #faf8f5;
    border-bottom: 1px solid var(--border-muted);
}

body.light-page .site-header .menu-toggle-btn,
body.light-page .site-header .utility-btn,
body.light-page .site-header .header-utilities {
    color: #111111;
}

body.light-page .header-logo-img {
    filter: none;
    mix-blend-mode: normal;
}

body.light-page .site-header .cart-badge {
    background-color: #111111;
    color: #ffffff;
}

.ab-page {
    position: relative;
    z-index: 10;
    background-color: #faf8f5;
}

/* 01 — Opening statement */
.ab-intro {
    max-width: 780px;
    margin: 0 auto;
    padding: 190px 40px 130px 40px;
    text-align: center;
}

.ab-intro-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1;
    color: #111111;
    margin-bottom: 70px;
}

.ab-intro-copy p {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    font-weight: 400;
    line-height: 1.75;
    color: #333333;
}

.ab-intro-copy p + p {
    margin-top: 26px;
}

/* 02 / 04 — Asymmetric editorial rows */
.ab-editorial {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px 130px 40px;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 70px;
    align-items: center;
}

.ab-editorial-text {
    max-width: 440px;
    justify-self: center;
}

.ab-editorial-reverse .ab-editorial-text {
    order: 2;
}

.ab-editorial-reverse .ab-editorial-media {
    order: 1;
}

.ab-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #8a8378;
    margin-bottom: 28px;
}

.ab-statement {
    font-family: var(--font-serif);
    font-size: clamp(1.35rem, 2.4vw, 1.95rem);
    font-weight: 400;
    line-height: 1.45;
    color: #111111;
    margin-bottom: 24px;
}

.ab-attribution {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-style: italic;
    color: #6f6a62;
}

.ab-body {
    font-family: var(--font-serif);
    font-size: clamp(0.98rem, 1.5vw, 1.1rem);
    line-height: 1.8;
    color: #333333;
}

.ab-body + .ab-body {
    margin-top: 22px;
}

.ab-editorial-media {
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.ab-editorial-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.ab-editorial-media:hover img {
    transform: scale(1.03);
}

/* 03 — Triptych */
.ab-triptych {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px 130px 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}

.ab-tri-media {
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

.ab-tri-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.ab-tri-media:hover img {
    transform: scale(1.03);
}

.ab-tri-card {
    background-color: #f0ece4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 34px;
    aspect-ratio: 3 / 4;
}

.ab-tri-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.15rem, 1.9vw, 1.65rem);
    font-weight: 400;
    line-height: 1.5;
    color: #111111;
    text-align: center;
}

/* 05 — Closing */
.ab-closing {
    padding: 0 40px 150px 40px;
    text-align: center;
}

.ab-closing-title {
    font-family: var(--font-serif);
    font-size: clamp(1.7rem, 3.2vw, 2.6rem);
    font-weight: 400;
    color: #111111;
    margin-bottom: 40px;
}

.ab-closing-links {
    display: flex;
    justify-content: center;
    gap: 46px;
    flex-wrap: wrap;
}

.ab-link {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #111111;
    text-decoration: none;
    padding-bottom: 6px;
    border-bottom: 1px solid #111111;
    transition: opacity 0.3s ease;
}

.ab-link:hover {
    opacity: 0.55;
}

@media (max-width: 900px) {
    .ab-intro {
        padding: 150px 24px 80px 24px;
    }

    .ab-intro-title {
        margin-bottom: 44px;
    }

    .ab-editorial {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 0 24px 80px 24px;
    }

    .ab-editorial-text {
        max-width: 100%;
        justify-self: stretch;
    }

    .ab-editorial-reverse .ab-editorial-text,
    .ab-editorial-reverse .ab-editorial-media {
        order: initial;
    }

    .ab-triptych {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 0 24px 80px 24px;
    }

    .ab-tri-card {
        aspect-ratio: auto;
        padding: 56px 30px;
    }

    .ab-closing {
        padding: 0 24px 90px 24px;
    }

    .ab-closing-links {
        gap: 26px;
    }
}
