/* ==========================================================================
   STREETWEAR ATELIER PRODUCTION SYSTEM RULES (MOBILE FIRST RE-ENGINERING)
   ========================================================================== */
:root {
    --bg-cream-canvas: #F6F6F6;      /* Off-White clean street canvas background */
    --brand-pure-black: #0A0A0A;     /* Deep industrial rich black */
    --accent-hype-crimson: #E01A22;  /* Bold vivid crimson streetwear color */
    --accent-silver-grey: #95A5A6;   /* Metallic tech silver */
    --border-gray-hairline: #E2E2E2; /* Clean grey partition line */
    --text-muted-editorial: #666666; /* Subdued neutral content body color */
    
    --font-serif-display: 'Montserrat', sans-serif;
    --font-sans-body: 'Montserrat', sans-serif;
    --transition-bezier-fluid: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Strict Viewport Reset Rules */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background-color: var(--bg-cream-canvas);
    color: var(--brand-pure-black);
    font-family: var(--font-sans-body);
    font-size: 0.9rem;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

body {
    padding-top: 105px;
    transition: padding-top 0.4s ease;
}

/* Scrollbar Minimal Customization */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--bg-cream-canvas); }
::-webkit-scrollbar-thumb { background: var(--brand-pure-black); }

/* Flexible Grid Systems Core Layouts */
.container {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 0;
}

.text-center { text-align: center; }
.align-items-center { align-items: center; }
.width-100-percent { width: 100% !important; }

.grid-2, .grid-3, .grid-4 {
    display: grid;
    gap: 30px;
    width: 100%;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Dynamic Custom Typographic Heading Layouts */
.luxury-section-heading {
    margin-bottom: 50px;
}
.luxury-section-heading .sub-label {
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: var(--brand-pure-black);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.luxury-section-heading h2 {
    font-family: var(--font-serif-display);
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}
.luxury-accent-line {
    width: 40px;
    height: 3px;
    background-color: var(--accent-hype-crimson);
    margin: 15px auto 0;
}

/* Master Action Triggers Design */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 36px;
    text-transform: uppercase;
    font-family: var(--font-sans-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    transition: var(--transition-bezier-fluid);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-hype-crimson {
    background-color: var(--accent-hype-crimson);
    color: white;
}
.btn-hype-crimson:hover {
    background-color: var(--brand-pure-black);
    transform: translateY(-2px);
}

.btn-trans-white {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.5);
}
.btn-trans-white:hover {
    background-color: white;
    color: var(--brand-pure-black);
}

.btn-luxury-dark {
    background-color: var(--brand-pure-black);
    color: white;
}
.btn-luxury-dark:hover {
    background-color: var(--accent-hype-crimson);
    transform: translateY(-2px);
}

.global-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-color: rgba(0,0,0,0.5);
    z-index: 1800;
    display: none;
    backdrop-filter: blur(4px);
}
.global-overlay.active { display: block; }

/* ==========================================================================
   FIX 2: PROFESSIONAL HARDWARE-ACCELERATED MOVING MARQUEE BAR
   ========================================================================== */
.luxury-announcement-bar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    height: 40px;
    background-color: var(--brand-pure-black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1600;
    padding: 0 45px 0 20px;
    transition: var(--transition-bezier-fluid);
    border-bottom: 1px solid #1A1A1A;
}

.announcement-ticker-container {
    overflow: hidden;
    width: 100%;
    display: flex;
}

.marquee-scrolling-wrapper {
    display: inline-block;
    white-space: nowrap;
    animation: infiniteMarqueeScroll 25s linear infinite;
    will-change: transform;
}

.announcement-text {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: #FFFFFF;
    padding-right: 50px;
}

@keyframes infiniteMarqueeScroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

.close-announcement-btn {
    position: absolute;
    right: 15px;
    background: transparent; border: none;
    color: var(--accent-silver-grey);
    font-size: 1rem; cursor: pointer;
    transition: var(--transition-bezier-fluid);
    z-index: 10;
}
.close-announcement-btn:hover { color: var(--accent-hype-crimson); }

body.announcement-closed { padding-top: 65px; }
body.announcement-closed .navbar { top: 0; }

/* STREETWEAR RE-ENGINEERED HEADER ARCHITECTURE */
.navbar {
    position: fixed;
    top: 40px; left: 0; width: 100%;
    height: 65px;
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 2px solid var(--brand-pure-black);
    z-index: 1500;
    display: flex;
    align-items: center;
    transition: var(--transition-bezier-fluid);
}

.nav-container {
    width: 92%;
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 25px;
    grid-column: 1;
    grid-row: 1;
}
.nav-link {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--brand-pure-black);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
}
.nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background-color: var(--accent-hype-crimson);
    transition: var(--transition-bezier-fluid);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* PREMIUM LOGO DESIGN */
.nav-logo {
    grid-column: 2;
    grid-row: 1;
    text-align: center;
    justify-self: center;
}
.nav-logo a {
    font-family: var(--font-sans-body);
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--brand-pure-black);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.logo-accent {
    color: var(--accent-hype-crimson);
    font-weight: 900;
    margin-left: 2px;
}

/* Right Actions Set */
.nav-actions {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 22px;
}

.menu-toggle {
    display: none;
    background: transparent; border: none;
    color: var(--brand-pure-black);
    font-size: 1.2rem; cursor: pointer;
}

.search-wrapper { display: flex; align-items: center; }
.search-wrapper input {
    background: transparent; border: none; outline: none;
    font-family: var(--font-sans-body); font-size: 0.8rem;
    width: 0; opacity: 0; pointer-events: none;
    transition: var(--transition-bezier-fluid);
}
.search-wrapper.expanded input {
    width: 140px; opacity: 1; pointer-events: auto;
    border-bottom: 2px solid var(--brand-pure-black);
    margin-right: 8px; padding: 2px;
}

.cart-trigger-icon { position: relative; font-size: 1.1rem; cursor: pointer; }
.cart-badge-count {
    position: absolute; top: -6px; right: -8px;
    background-color: var(--accent-hype-crimson); color: white;
    font-size: 0.55rem; font-weight: 700;
    width: 16px; height: 16px; border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    background-image: url('https://images.unsplash.com/photo-1556906781-9a412961c28c?auto=format&fit=crop&w=1920&q=90');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-blend-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
}
.hero-wrapper-content {
    position: relative;
    z-index: 10;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    width: 100%;
}
.hero-meta-tag {
    font-size: 0.8rem;
    letter-spacing: 4px;
    color: var(--accent-hype-crimson);
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}
.hero-display-title {
    font-family: var(--font-serif-display);
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 20px;
}
.hero-editorial-summary {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}
.hero-button-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* VALUE PROPS LAYOUT */
.value-prop-section { background-color: white; border-bottom: 1px solid var(--border-gray-hairline); }
.prop-block { text-align: center; padding: 20px; }
.prop-block i { font-size: 1.5rem; color: var(--brand-pure-black); margin-bottom: 15px; }
.prop-block h3 { font-size: 1.05rem; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
.prop-block p { font-size: 0.85rem; color: var(--text-muted-editorial); line-height: 1.5; }

/* EDITORIAL DROPS MODULE */
.editorial-card-frame { background-color: white; border: 1px solid var(--border-gray-hairline); }
.editorial-media-box img { width: 100%; height: 450px; object-fit: cover; display: block; }
.editorial-details-box { display: flex; flex-direction: column; justify-content: center; padding: 50px; }
.tag-meta { font-size: 0.7rem; font-weight: 700; color: var(--accent-hype-crimson); margin-bottom: 10px; }
.editorial-details-box h3 { font-size: 1.8rem; font-weight: 900; text-transform: uppercase; margin-bottom: 15px; }
.editorial-details-box p { color: var(--text-muted-editorial); font-size: 0.9rem; line-height: 1.6; margin-bottom: 25px; }

/* CATALOGUE ENGINE STYLING */
.catalogue-controls-pipeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-gray-hairline);
    padding-bottom: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
}
.category-tabs-group { display: flex; gap: 5px; flex-wrap: wrap; }
.tab-filter-link {
    background: transparent; border: none;
    font-family: var(--font-sans-body); font-size: 0.75rem;
    text-transform: uppercase; font-weight: 700; letter-spacing: 1px;
    padding: 8px 14px; cursor: pointer; color: #888;
}
.tab-filter-link.active, .tab-filter-link:hover { color: var(--brand-pure-black); border-bottom: 2px solid var(--brand-pure-black); }

.sorting-pipeline-dropdown select {
    border: 2px solid var(--brand-pure-black); background: white;
    padding: 8px 12px; font-family: var(--font-sans-body);
    font-size: 0.75rem; font-weight: 700; outline: none; cursor: pointer;
}

/* Grid Layout Products */
.luxury-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 20px;
}

.product-card {
    background: white; border: 1px solid var(--border-gray-hairline);
    position: relative; display: flex; flex-direction: column; cursor: pointer;
    transition: var(--transition-bezier-fluid);
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

.product-media-container { position: relative; width: 100%; height: 360px; overflow: hidden; background: white; }
.product-media-container img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.product-card:hover .product-media-container img { transform: scale(1.04); }

.wishlist-heart-btn {
    position: absolute; top: 15px; right: 15px; z-index: 50;
    background: white; border: 1px solid var(--border-gray-hairline);
    width: 34px; height: 34px; border-radius: 50%;
    display: flex; justify-content: center; align-items: center; cursor: pointer;
    color: #CCC; transition: var(--transition-bezier-fluid);
}
.wishlist-heart-btn:hover, .wishlist-heart-btn.active { color: var(--accent-hype-crimson); border-color: var(--accent-hype-crimson); }

.product-actions-drawer-slide {
    position: absolute; bottom: 0; left: 0; width: 100%;
    background: rgba(255,255,255,0.95); padding: 12px;
    transform: translateY(102%); transition: var(--transition-bezier-fluid); z-index: 20;
}
.product-card:hover .product-actions-drawer-slide { transform: translateY(0); }
.add-to-drawer-action-trigger {
    width: 100%; background: var(--brand-pure-black); color: white;
    padding: 10px 0; text-transform: uppercase; font-size: 0.7rem;
    letter-spacing: 1.5px; border: none; cursor: pointer; font-weight: 700;
}
.add-to-drawer-action-trigger:hover { background: var(--accent-hype-crimson); }

.product-meta-specs-box { padding: 20px 15px; text-align: center; }
.p-spec-category { font-size: 0.6rem; color: #888; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 5px; font-weight: 700; }
.p-spec-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; text-transform: uppercase; }
.p-spec-stars { color: #FFD700; font-size: 0.65rem; margin-bottom: 8px; }
.p-spec-price { font-size: 0.95rem; font-weight: 700; color: var(--brand-pure-black); }

/* IMMERSIVE OLFACTORY BANNER */
.immersive-brand-banner {
    position: relative; height: 50vh; min-height: 350px;
    background-image: url('https://images.unsplash.com/photo-1542291026-7eec264c27ff?auto=format&fit=crop&w=1500&q=90');
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center; text-align: center;
}
.banner-dimmer { position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(10,10,10,0.75); }
.banner-inner-content { position: relative; z-index: 10; color: white; max-width: 650px; padding: 0 20px; }
.banner-inner-content h2 { font-size: 2.2rem; font-weight: 900; text-transform: uppercase; margin-bottom: 15px; }
.banner-inner-content p { font-size: 0.95rem; font-weight: 300; margin-bottom: 25px; color: #DDD; }

/* HERITAGE ARCHITECTURE BLOCK */
.heritage-atelier-section { background: white; }
.heritage-copywriting { padding-right: 30px; }
.heritage-copywriting h2 { font-size: 2.2rem; font-weight: 900; text-transform: uppercase; }
.heritage-copywriting p { color: var(--text-muted-editorial); font-size: 0.9rem; margin-top: 15px; line-height: 1.6; }
.heritage-media-wrapper { position: relative; padding: 10px; }
.media-accent-border { position: absolute; top: 0; left: 0; width: calc(100% - 20px); height: calc(100% - 20px); border: 2px solid var(--brand-pure-black); pointer-events: none; }
.heritage-hero-img { width: 100%; height: 420px; object-fit: cover; display: block; position: relative; z-index: 5; }

/* SOCIETY REVIEWS CARDS */
.luxury-review-card { background: white; padding: 40px 25px; border: 1px solid var(--border-gray-hairline); text-align: center; }
.review-stars-row { color: #FFD700; font-size: 0.7rem; margin-bottom: 15px; }
.review-body { font-size: 0.9rem; font-style: italic; color: #333; margin-bottom: 15px; line-height: 1.6; }
.review-author { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; }

/* PRIVATE CIRCLE VAULT FORM */
.private-circle-newsletter { background: var(--brand-pure-black); color: white; padding: 80px 0; }
.private-circle-newsletter h2 { font-size: 2.2rem; font-weight: 900; text-transform: uppercase; margin-bottom: 15px; }
.private-circle-newsletter p { font-size: 0.9rem; color: #AAA; max-width: 600px; margin: 0 auto 35px; line-height: 1.6; }
.luxury-inline-form-box { display: flex; max-width: 500px; margin: 0 auto; border-bottom: 2px solid white; padding-bottom: 5px; }
.luxury-inline-form-box input { flex-grow: 1; background: transparent; border: none; outline: none; color: white; padding: 10px; font-family: var(--font-sans-body); }
.newsletter-submit-trigger { background: transparent; border: none; color: var(--accent-hype-crimson); text-transform: uppercase; font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; cursor: pointer; }

/* SECURE CART SLIDE DRAWER SYSTEM & BILLS LAYOUTS */
.luxury-cart-drawer {
    position: fixed; top: 0; right: -460px;
    width: 460px; height: 100vh; background: white; z-index: 2500;
    display: flex; flex-direction: column; transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}
.luxury-cart-drawer.active { right: 0; }
.drawer-header-pane { padding: 25px; border-bottom: 1px solid var(--border-gray-hairline); display: flex; justify-content: space-between; align-items: center; }
.drawer-header-pane h3 { font-size: 1.1rem; font-weight: 900; text-transform: uppercase; }
.drawer-close-btn { background: transparent; border: none; font-size: 1.3rem; cursor: pointer; }
.drawer-items-scroll-area { flex-grow: 1; padding: 25px; overflow-y: auto; }
.empty-drawer-notice { text-align: center; color: #888; font-style: italic; margin-top: 30px; }

.drawer-row-item { display: flex; gap: 15px; align-items: center; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border-gray-hairline); }
.drawer-row-img { width: 70px; height: 85px; object-fit: cover; }
.drawer-row-specs { flex-grow: 1; }
.drawer-row-title { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; margin-bottom: 3px; }
.drawer-row-price { font-size: 0.85rem; font-weight: 700; color: var(--accent-hype-crimson); }
.drawer-row-qty-tracker { font-size: 0.75rem; color: #777; margin-top: 4px; }
.drawer-row-trash-trigger { background: transparent; border: none; color: #C0392B; cursor: pointer; }

.bill-calculation-matrix {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.bill-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted-editorial);
    font-weight: 500;
}
.final-grand-row {
    font-size: 1.1rem;
    color: var(--brand-pure-black);
    font-weight: 700;
}
.luxury-divider {
    width: 100%;
    height: 1px;
    background-color: var(--border-gray-hairline);
    margin: 4px 0;
}

.drawer-summary-footer-pane { padding: 25px; border-top: 1px solid var(--border-gray-hairline); background: #FAFAFA; }
.summary-subtotal-row { display: flex; justify-content: space-between; font-weight: 700; text-transform: uppercase; margin-bottom: 5px; }
.luxury-disclaimer-text { font-size: 0.75rem; color: #777; margin-bottom: 20px; }
.btn-checkout-prime { width: 100%; background: var(--brand-pure-black); color: white; padding: 16px 0; text-transform: uppercase; font-weight: 700; letter-spacing: 2px; border: none; cursor: pointer; }
.btn-checkout-prime:hover { background: var(--accent-hype-crimson); }

/* ATELIER SECURE IDENTITY WINDOW MODAL */
.identity-modal-window {
    position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.95);
    width: 90%; max-width: 750px; background: white; z-index: 2600;
    opacity: 0; pointer-events: none; transition: var(--transition-bezier-fluid);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.identity-modal-window.active { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.modal-close-trigger { position: absolute; top: 15px; right: 15px; background: transparent; border: none; font-size: 1.2rem; cursor: pointer; z-index: 10; }
.modal-split-layout { display: grid; grid-template-columns: 1fr 1.2fr; }
.modal-branding-side { background: var(--brand-pure-black); color: white; padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.modal-branding-side h3 { font-size: 1.8rem; font-weight: 900; text-transform: uppercase; margin-bottom: 10px; }
.modal-branding-side p { font-size: 0.8rem; color: #AAA; line-height: 1.5; }
.modal-form-side { padding: 40px; }
.form-toggle-headers { margin-bottom: 20px; border-bottom: 1px solid var(--border-gray-hairline); padding-bottom: 5px; }
.form-toggle-link { font-size: 1rem; font-weight: 700; text-transform: uppercase; }
.identity-actual-form { display: flex; flex-direction: column; gap: 15px; }
.input-luxury-group { display: flex; flex-direction: column; gap: 5px; }
.input-luxury-group label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; }
.input-luxury-group input { padding: 10px; border: 2px solid var(--brand-pure-black); font-family: var(--font-sans-body); outline: none; }
.forgot-credentials-link { font-size: 0.75rem; color: #666; text-decoration: none; }

/* SHIPPING ADDRESS FORM AND MODAL SPECIFICS */
.checkout-address-modal {
    max-width: 600px;
    z-index: 2700;
}
.checkout-modal-inner-wrapper {
    padding: 40px 30px;
    max-height: 85vh;
    overflow-y: auto;
}
.checkout-modal-header {
    margin-bottom: 30px;
}
.checkout-modal-header h3 {
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.checkout-grid-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.span-full-width {
    grid-column: span 2;
}
.checkout-final-invoice-card {
    background-color: var(--brand-pure-black);
    color: white;
    padding: 20px;
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.checkout-final-invoice-card .bill-row {
    color: rgba(255,255,255,0.7);
}
.checkout-final-invoice-card .final-grand-row {
    color: white;
}
.checkout-submit-btn {
    padding: 18px 0;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* EXCLUSIVE QUICK VIEW POPUP STYLING */
.luxury-product-modal {
    position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.95);
    width: 90%; max-width: 900px; background: white; z-index: 2600;
    opacity: 0; pointer-events: none; transition: var(--transition-bezier-fluid);
    border: 2px solid var(--brand-pure-black); box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}
.luxury-product-modal.active { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.product-modal-close-btn { position: absolute; top: 20px; right: 20px; background: transparent; border: none; font-size: 1.3rem; cursor: pointer; z-index: 50; }
.product-modal-container { display: grid; grid-template-columns: 1fr 1.2fr; max-height: 80vh; overflow-y: auto; }
.product-modal-gallery { background: white; display: flex; justify-content: center; align-items: center; }
.product-modal-gallery img { width: 100%; height: 100%; object-fit: cover; }
.product-modal-details-pane { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.popup-product-category { font-size: 0.65rem; color: var(--accent-hype-crimson); font-weight: 700; text-transform: uppercase; margin-bottom: 5px; }
.popup-product-title { font-size: 1.8rem; font-weight: 900; text-transform: uppercase; margin-bottom: 10px; line-height: 1.1; }
.popup-rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.verified-text { font-size: 0.7rem; font-weight: 700; color: #888; text-transform: uppercase; }
.popup-product-price { font-size: 1.3rem; font-weight: 900; margin-bottom: 15px; }
.popup-product-description { font-size: 0.85rem; line-height: 1.5; color: var(--text-muted-editorial); margin-bottom: 20px; }
.popup-variants-wrapper { margin-bottom: 20px; }
.variant-heading-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; }
.size-options-flex-row { display: flex; gap: 8px; }
.size-variant-bubble { background: transparent; border: 2px solid var(--border-gray-hairline); width: 38px; height: 38px; display: flex; justify-content: center; align-items: center; cursor: pointer; font-weight: 700; font-size: 0.75rem; }
.size-variant-bubble.active, .size-variant-bubble:hover { border-color: var(--brand-pure-black); background: var(--brand-pure-black); color: white; }
.color-options-flex-row { display: flex; gap: 10px; }
.color-variant-palette { width: 20px; height: 20px; border-radius: 50%; cursor: pointer; border: 1px solid rgba(0,0,0,0.1); position: relative; }
.color-variant-palette.active::after { content: ''; position: absolute; top: -4px; left: -4px; right: -4px; bottom: -4px; border: 2px solid var(--brand-pure-black); border-radius: 50%; }

/* FIX 3: RE-ENGINEERED COMPREHENSIVE FOOTER BLOCKS */
.luxury-editorial-footer {
    background: var(--brand-pure-black);
    color: white;
    padding: 80px 0 30px;
    border-top: 3px solid var(--accent-hype-crimson);
}
.footer-brand-profile-block h2 {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}
.footer-tagline {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 25px;
}
.luxury-social-row { display: flex; gap: 15px; }
.luxury-social-row a {
    color: white; border: 1px solid #222; width: 40px; height: 40px; border-radius: 50%;
    display: flex; justify-content: center; align-items: center; text-decoration: none;
    transition: var(--transition-bezier-fluid);
}
.luxury-social-row a:hover { border-color: var(--accent-hype-crimson); color: var(--accent-hype-crimson); transform: translateY(-2px); }

.footer-navigation-column h3 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-hype-crimson);
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.footer-navigation-column ul { list-style: none; }
.footer-navigation-column ul li { margin-bottom: 12px; }
.footer-navigation-column ul li a {
    color: #999; text-decoration: none; font-size: 0.85rem;
    transition: var(--transition-bezier-fluid);
}
.footer-navigation-column ul li a:hover { color: white; padding-left: 4px; }

.footer-contact-specs li {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-contact-specs li i {
    color: var(--accent-hype-crimson);
    font-size: 0.9rem;
}
.footer-copyright-subline {
    margin-top: 60px; padding: 25px 0 0; border-top: 1px solid #1c1c1c;
    font-size: 0.75rem; color: #444; letter-spacing: 0.5px;
}

/* ==========================================================================
   SYSTEM FIXED MOBILE VIEW RESPONSIVE OVERRIDES
   ========================================================================== */
@media (max-width: 1024px) {
    body { padding-top: 105px !important; }
    body.announcement-closed { padding-top: 65px !important; }

    .navbar {
        top: 40px;
        height: 65px !important;
        background-color: white;
    }
    .nav-container {
        grid-template-columns: 60px 1fr 110px !important;
        width: 92% !important;
        max-width: 100% !important;
    }
    
    .nav-menu { display: none; }
    .menu-toggle { display: block !important; grid-column: 1 !important; justify-self: start !important; padding-left: 5px; }

    .nav-logo { grid-column: 2 !important; justify-self: center !important; text-align: center !important; }
    .nav-logo a { font-size: 1.15rem !important; letter-spacing: -0.5px !important; max-width: 120px !important; }

    .nav-actions { grid-column: 3 !important; justify-self: end !important; gap: 14px !important; }

    .hero-section { width: 100% !important; max-width: 100% !important; height: 75vh !important; min-height: 480px !important; margin: 0 !important; padding: 0 15px !important; }
    .hero-wrapper-content { max-width: 100% !important; padding: 0 !important; }
    .hero-display-title { font-size: 2.2rem !important; letter-spacing: -0.5px !important; line-height: 1.1 !important; }
    .hero-editorial-summary { font-size: 0.85rem !important; margin-bottom: 25px !important; padding: 0 5px !important; }
    .hero-button-group { width: 100% !important; flex-direction: column !important; gap: 10px !important; }
    .hero-button-group .btn { width: 100% !important; padding: 14px 20px !important; }

    .nav-menu.mobile-active {
        display: flex !important; flex-direction: column !important; position: fixed !important; top: 105px !important; left: 0 !important; width: 100% !important; height: calc(100vh - 105px) !important; background-color: white !important; z-index: 1400 !important; padding: 40px 25px !important; gap: 25px !important; border-top: 2px solid var(--brand-pure-black) !important; animation: fadeInSlide 0.3s ease forwards !important;
    }
    body.announcement-closed .nav-menu.mobile-active { top: 65px !important; height: calc(100vh - 65px) !important; }

    /* FIX 3: Responsive Layout Constraints Enforcements */
    .luxury-products-grid { grid-template-columns: repeat(1, 1fr) !important; gap: 25px 0 !important; }
    .product-media-container { height: 340px !important; }
    
    .luxury-cart-drawer { width: 95% !important; right: -95%; }
    .luxury-cart-drawer.active { right: 0; }
    
    .checkout-address-modal { width: 95% !important; max-width: 95% !important; }
    .checkout-grid-form { grid-template-columns: 1fr; gap: 10px; }
    .checkout-modal-inner-wrapper { padding: 25px 15px; }
    .span-full-width { grid-column: span 1; }
    
    .luxury-product-modal { width: 95% !important; max-width: 95% !important; }
    .product-modal-container { grid-template-columns: 1fr !important; max-height: 75vh; }
    .product-modal-gallery img { max-height: 280px !important; }
    .product-modal-details-pane { padding: 20px 15px !important; }
}

@media (max-width: 768px) {
    .grid-4, .grid-3, .grid-2 { grid-template-columns: repeat(1, 1fr) !important; gap: 40px 0; }
    .editorial-details-box { padding: 40px 15px; }
    .heritage-copywriting { padding-right: 0; margin-bottom: 20px; }
}

@keyframes fadeInSlide {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}