/* --- BRAND COLOR DESIGN VARIABLES --- */
:root {
    --bg-white: #FFFFFF;
    --soft-gray: #EAEFEF;
    --section-gray: #EEEEEE;
    --primary-text: #2C3930;
    --white: #FFFFFF;
    --black: #000000;
    
    --font-family: "Open Sans", sans-serif;
    --transition-luxury: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-snappy: all 0.3s ease;
}

/* --- BASIC RESET & BASE STYLING LAYERS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-white);
    color: var(--primary-text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- EDITORIAL TYPOGRAPHY RULES --- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    line-height: 1.2;
}

p {
    font-weight: 300;
    font-size: 1rem;
    letter-spacing: 0.02em;
    line-height: 1.7;
}

.bold-text {
    font-weight: 600;
}

.editorial-tag-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--primary-text);
    margin-bottom: 15px;
    display: inline-block;
}

/* --- GLOBAL SPACE ENGINE RULES --- */
.luxury-margin-container {
    margin-left: 4%;
    margin-right: 4%;
}

.editorial-block-padding {
    padding: 100px 0;
}

.divider-hr-line {
    border: none;
    border-top: 1px solid rgba(44, 57, 48, 0.15);
    margin: 20px 0;
    width: 100%;
}

/* --- PREMIUM EDITORIAL CTA ACCENTS --- */
.editorial-cta-anchor {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    text-decoration: none;
    transition: var(--transition-luxury);
    border: none;
    cursor: pointer;
}

.cta-luxury-dark {
    background-color: var(--primary-text);
    color: var(--white);
}

.cta-luxury-dark:hover {
    background-color: #1a231e;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.cta-luxury-outline {
    background-color: transparent;
    border: 1px solid var(--primary-text);
    color: var(--primary-text);
}

.cta-luxury-outline:hover {
    background-color: var(--primary-text);
    color: var(--white);
}

/* --- TOP MARQUEE INFINITE RUNWAY --- */
.marquee-announcement-bar {
    background-color: var(--soft-gray);
    color: var(--black);
    overflow: hidden;
    white-space: nowrap;
    padding: 14px 0;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.marquee-scroller-belt {
    display: inline-block;
    animation: infiniteMarqueeScroll 25s linear infinite;
}

.marquee-phrase-node {
    display: inline-block;
    padding-right: 80px;
}

@keyframes infiniteMarqueeScroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* --- FIXED HEADER NAVIGATION ARCHITECTURE --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 999;
    background-color: transparent;
    margin: 0;
    padding: 22px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-luxury);
}

header.scrolled {
    background-color: var(--soft-gray);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

header:not(.scrolled) {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
}

header.scrolled {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

header:not(.scrolled) .center-logo-anchor {
    color: var(--white);
}

header.scrolled .center-logo-anchor {
    color: var(--primary-text);
}

header:not(.scrolled) .left-nav-wing a {
    color: var(--white);
}

header.scrolled .left-nav-wing a {
    color: var(--primary-text);
}

header:not(.scrolled) .action-icon-btn-node {
    color: var(--white);
}

header.scrolled .action-icon-btn-node {
    color: var(--primary-text);
}

header:not(.scrolled) .hamburger-menu-trigger-btn span {
    background-color: var(--white);
}

header.scrolled .hamburger-menu-trigger-btn span {
    background-color: var(--primary-text);
}

.left-nav-wing {
    display: flex;
    gap: 35px;
}

.left-nav-wing a {
    text-decoration: none;
    color: var(--primary-text);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: var(--transition-snappy);
}

.left-nav-wing a:hover {
    opacity: 0.6;
}

/* SHOP MEGA DROP DOWN COMPONENT */
.shop-mega-menu-trigger-wrapper {
    position: relative;
}

.shop-mega-menu-trigger-wrapper:hover .mega-dropdown-panel-card,
.mega-dropdown-panel-card:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(22px);
}

.mega-dropdown-panel-card {
    position: absolute;
    top: 100%;
    left: -40px;
    width: 900px;
    background-color: var(--white);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    padding: 40px;
    display: grid;
    grid-template-rows: auto auto;
    gap: 35px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1010;
    pointer-events: none;
}

.shop-mega-menu-trigger-wrapper:hover .mega-dropdown-panel-card {
    pointer-events: auto;
}

.mega-menu-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-bottom: 1px solid var(--soft-gray);
    padding-bottom: 25px;
}

.mega-menu-categories-grid a {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--primary-text);
    letter-spacing: 0.1em;
    text-decoration: none;
    cursor: pointer;
    display: block;
    padding: 8px 0;
    transition: all 0.2s ease;
}

.mega-menu-categories-grid a:hover {
    font-weight: 600;
    padding-left: 8px;
    color: var(--primary-text);
}

.mega-dropdown-bottom-scroller {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: thin;
    padding: 10px 0 5px;
}

.mega-dropdown-bottom-scroller::-webkit-scrollbar {
    height: 3px;
}

.mega-dropdown-bottom-scroller::-webkit-scrollbar-track {
    background: var(--soft-gray);
}

.mega-dropdown-bottom-scroller::-webkit-scrollbar-thumb {
    background: var(--primary-text);
    border-radius: 3px;
}

.mega-scroll-collection-card {
    width: 180px;
    flex-shrink: 0;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-snappy);
}

.mega-scroll-collection-card:hover {
    transform: translateY(-3px);
    opacity: 0.85;
}

.mega-scroll-collection-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: var(--soft-gray);
    margin-bottom: 8px;
}

.mega-scroll-collection-card h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--primary-text);
    margin-bottom: 4px;
}

.mega-scroll-collection-card span {
    font-size: 0.65rem;
    text-transform: uppercase;
    opacity: 0.6;
    letter-spacing: 0.05em;
}

/* BRAND CENTER LOGO ARCH */
.center-logo-anchor{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-logo-anchor img{
    height: 155px;
    width: auto;
    display: block;
    object-fit: contain;
}


.right-actions-wing {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-left: auto;
}

.action-icon-btn-node {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-text);
    font-size: 1.1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-indicator-badge-node {
    position: absolute;
    top: -7px;
    right: -9px;
    background-color: var(--primary-text);
    color: var(--white);
    font-size: 0.6rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* RESPONSIBLE HAMBURGER CONTROLS */
.hamburger-menu-trigger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 15px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1020;
}

.hamburger-menu-trigger-btn span {
    width: 100%;
    height: 1px;
    background-color: var(--primary-text);
    transition: var(--transition-snappy);
}

.mobile-overlay-navigation-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    z-index: 1005;
    padding: 120px 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    transform: translateY(-100%);
    transition: var(--transition-luxury);
}

.mobile-overlay-navigation-drawer.drawer-activated {
    transform: translateY(0);
}

.mobile-overlay-navigation-drawer a {
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-text);
    text-decoration: none;
    font-weight: 300;
}

/* --- MULTIPAGE CONTAINER ARCHITECTURE VIEWPORTS --- */
.glammahub-editorial-page-view-node {
    display: none;
}

.glammahub-editorial-page-view-node.active-editorial-node {
    display: block;
    animation: viewFadeUpEntrance 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes viewFadeUpEntrance {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==================== HOME PAGE LAYOUT HOOKS ==================== */

/* SECTION 01 — VIDEO HERO */
.section-cinematic-hero-video {
    margin-top: 0;
    height: 100vh;
    min-height: 700px;
    position: relative;
}

.hero-video-viewport-container {
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    background-color: var(--primary-text);
}

.hero-video-viewport-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.hero-video-overlay-text-box {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 5;
    color: var(--white);
}

.hero-video-overlay-text-box h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    color: var(--white);
    margin-top: 10px;
    margin-bottom: 25px;
    max-width: 650px;
}

/* SECTION 02 — PRODUCT DISCOVERY SLIDER */
.discovery-slider-horizontal-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 30px 0;
    scrollbar-width: none;
}

.discovery-slider-horizontal-track::-webkit-scrollbar {
    display: none;
}

.luxury-tall-product-card {
    width: 360px;
    flex-shrink: 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.tall-product-card-image-box {
    height: 480px;
    width: 100%;
    background-color: var(--soft-gray);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.tall-product-card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-luxury);
}

.luxury-tall-product-card:hover .tall-product-card-image-box img {
    transform: scale(1.03);
}

.tall-product-card-name-overlay {
    position: absolute;
    top: 25px;
    left: 25px;
    right: 25px;
    z-index: 3;
}

.tall-product-card-name-overlay h2 {
    font-size: 1.3rem;
    color: var(--primary-text);
    font-weight: 400;
}

.tall-product-card-bottom-metrics {
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.tall-product-card-bottom-metrics p {
    font-size: 0.85rem;
    max-width: 75%;
    opacity: 0.75;
}

.tall-product-card-price-node {
    font-weight: 600;
    font-size: 0.95rem;
}

.slide-up-add-to-cart-drawer-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    padding: 25px;
    transform: translateY(100%);
    transition: var(--transition-luxury);
    text-align: center;
    z-index: 5;
}

.luxury-tall-product-card:hover .slide-up-add-to-cart-drawer-panel {
    transform: translateY(0);
}

/* SECTION 03 — FULL IMAGE STATEMENT */
.full-image-statement-banner-chassis {
    height: 700px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 12%;
}

.banner-scrim-darkener-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 57, 48, 0.4);
    z-index: 1;
}

.full-image-statement-banner-chassis p {
    color: var(--white);
    font-size: clamp(1.4rem, 3.5vw, 2.4rem);
    line-height: 1.5;
    font-weight: 300;
    z-index: 2;
}

/* SECTION 04 — DUAL COLLECTION SHOWCASE (SYNCHRONIZED) */
.dual-collection-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.synchronized-showcase-block-card {
    background-color: var(--white);
}

.synchronized-viewport-viewport-frame {
    height: 580px;
    width: 100%;
    background-color: var(--soft-gray);
    overflow: hidden;
    position: relative;
}

.synchronized-viewport-viewport-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.synchronized-viewport-viewport-frame img.active-synchronized-asset {
    opacity: 1;
}

.synchronized-slider-controls-dock {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.synchronized-slider-dots-row {
    display: flex;
    gap: 12px;
}

.synchronized-dot-indicator-node {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--section-gray);
    cursor: pointer;
    transition: var(--transition-snappy);
}

.synchronized-dot-indicator-node.active-dot-node {
    background-color: var(--primary-text);
    transform: scale(1.3);
}

.synchronized-arrow-control-trigger {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--primary-text);
    padding: 5px 12px;
}

/* SECTION 05 — STORYTELLING SPLIT SECTION */
.storytelling-split-flex-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.storytelling-left-editorial-pane {
    background-color: var(--section-gray);
    color: var(--primary-text);
    padding: 80px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.storytelling-left-editorial-pane h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.storytelling-left-editorial-pane p {
    margin-bottom: 35px;
}

.storytelling-right-image-pane {
    width: 100%;
    background-color: var(--white);
}

.storytelling-right-image-pane img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* SECTION 06 — COMMUNITY FAVORITES */
.community-favorites-section-chassis {
    background-color: var(--section-gray);
    color: var(--primary-text);
    padding: 100px 4%;
}

.community-favorites-section-chassis h2 {
    font-size: 2rem;
    margin-bottom: 45px;
}

.community-gallery-slider-viewport {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.community-gallery-slider-viewport::-webkit-scrollbar {
    display: none;
}

.community-gallery-asset-card {
    width: 290px;
    flex-shrink: 0;
    background-color: var(--white);
    padding: 15px;
}

.community-gallery-asset-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin-bottom: 12px;
}

.community-gallery-navigation-footer-dock {
    margin-top: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.community-gallery-scroll-bar-line {
    height: 1px;
    background-color: rgba(44, 57, 48, 0.2);
    flex-grow: 1;
    margin-right: 40px;
    position: relative;
}

/* SECTION 07 — EDITORIAL SPLIT FEATURE */
.editorial-split-feature-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
}

.editorial-split-wider-text-card {
    background-color: var(--section-gray);
    color: var(--primary-text);
    padding: 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.editorial-split-wider-text-card h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.editorial-split-wider-text-card p {
    margin-bottom: 35px;
}

.editorial-split-narrow-image-card img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
}

/* SECTION 08 — CAMPAIGN IMAGE FEATURE */
.campaign-image-feature-full-banner {
    height: 650px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.campaign-image-top-right-floating-card {
    position: absolute;
    top: 50px;
    right: 50px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    max-width: 420px;
    padding: 40px;
}

.campaign-image-top-right-floating-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* ==================== SHOP PAGE CATALOG LAYOUTS ==================== */
.shop-filter-controls-bar-strip {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid var(--soft-gray);
    border-bottom: 1px solid var(--soft-gray);
    margin-bottom: 45px;
}

.shop-filter-select-element {
    padding: 12px 20px;
    font-family: inherit;
    border: 1px solid var(--primary-text);
    background-color: var(--white);
    color: var(--primary-text);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    outline: none;
    cursor: pointer;
}

.shop-product-grid-chassis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* ==================== PRODUCT DETAILS PARAMETERS ==================== */
.product-details-split-grid-chassis {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
}

.product-details-sticky-gallery-strip {
    position: sticky;
    top: 140px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-details-sticky-gallery-strip img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: var(--soft-gray);
}

.product-details-right-narrative-card h1 {
    font-size: 2.4rem;
    margin-bottom: 15px;
}

.product-details-price-tag-row {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.product-details-accordion-node {
    border-top: 1px solid var(--soft-gray);
    padding: 20px 0;
    margin-top: 25px;
}

.product-details-accordion-node h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* ==================== ABOUT ETHOS LAYOUT SHARDS ==================== */
.about-brand-manifesto-centered-pane {
    background-color: var(--section-gray);
    color: var(--primary-text);
    padding: 90px 12%;
    text-align: center;
}

.about-brand-manifesto-centered-pane p {
    font-size: 1.35rem;
    font-weight: 300;
}

.about-split-story-no-margin-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.about-image-feature-caption-overlay-chassis {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-values-split-grid-footprint {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.about-values-right-content-stack {
    background-color: var(--section-gray);
    color: var(--primary-text);
    padding: 50px;
}

/* ==================== CONTACT DISPATCH PARADIGM ==================== */
.contact-page-luxury-split-blueprint {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 70vh;
}

.contact-form-card-right-wing {
    padding: 60px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-card-right-wing h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.editorial-form-input-wrapper-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.editorial-form-input-wrapper-row label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
}

.editorial-form-input-wrapper-row input,
.editorial-form-input-wrapper-row textarea {
    padding: 16px;
    border: 1px solid var(--primary-text);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    color: var(--primary-text);
    background-color: transparent;
}

/* ==================== LIVE INTERACTIVE SEARCH OVERLAY SYSTEM ==================== */
.live-search-curtain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 2100;
    display: none;
    padding: 100px 10%;
}

.live-search-curtain-overlay.search-activated {
    display: block;
}

.search-input-headline-row {
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--primary-text);
    padding-bottom: 15px;
    margin-bottom: 40px;
}

.search-input-headline-row input {
    flex-grow: 1;
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: 2rem;
    outline: none;
    color: var(--primary-text);
}

/* ==================== LIVE REALTIME CART DRAWER SYSTEM ==================== */
.absolute-cart-drawer-backdrop-curtain {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 57, 48, 0.35);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-luxury);
}

.absolute-cart-drawer-backdrop-curtain.cart-drawer-visible {
    opacity: 1;
    visibility: visible;
}

.cart-drawer-sliding-container-box {
    position: absolute;
    top: 0;
    right: 0;
    width: 460px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -25px 0 60px rgba(0, 0, 0, 0.06);
    padding: 40px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: var(--transition-luxury);
}

.absolute-cart-drawer-backdrop-curtain.cart-drawer-visible .cart-drawer-sliding-container-box {
    transform: translateX(0);
}

.cart-drawer-header-line-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--soft-gray);
    padding-bottom: 20px;
}

.cart-drawer-close-btn-trigger {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.cart-items-feed-payload-stream {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item-node-row-card {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 15px;
    align-items: center;
    border-bottom: 1px solid var(--soft-gray);
    padding-bottom: 15px;
}

.cart-item-node-row-card img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    background-color: var(--soft-gray);
}

.cart-item-remove-text-trigger {
    background: none;
    border: none;
    color: #C14747;
    font-size: 0.75rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cart-drawer-summary-checkout-footer {
    border-top: 1px solid var(--soft-gray);
    padding-top: 20px;
}

.cart-summary-total-metric-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* ==================== REGULATORY COMPLIANCE SYSTEM TERMS MODALS ==================== */
.regulatory-text-sheet-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 57, 48, 0.65);
    z-index: 2500;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.regulatory-text-sheet-modal-overlay.modal-active {
    display: flex;
}

.regulatory-modal-scroll-interior-box {
    background-color: var(--white);
    max-width: 720px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 50px;
    position: relative;
}

/* ==================== PRESTIGE COMPREHENSIVE LONGER FOOTER ==================== */
footer {
    background-color: var(--section-gray);
    color: var(--primary-text);
    padding: 100px 4% 40px;
}

.footer-brand-statement-top-block {
    border-bottom: 1px solid rgba(44, 57, 48, 0.12);
    padding-bottom: 50px;
    margin-bottom: 60px;
}

.footer-brand-statement-top-block h2 {
    font-size: clamp(3rem, 7vw, 6rem);
    letter-spacing: 0.2em;
    margin-bottom: 15px;
}

.footer-columns-matrix-grid-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr) 1.5fr;
    gap: 40px;
    border-bottom: 1px solid rgba(44, 57, 48, 0.12);
    padding-bottom: 60px;
    margin-bottom: 40px;
}

.footer-column-headline-label {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 0.15em;
    opacity: 0.5;
    text-transform: uppercase;
}

.footer-navigation-link-list-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-navigation-link-list-stack a {
    color: var(--primary-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-snappy);
    cursor: pointer;
}

.footer-navigation-link-list-stack a:hover {
    opacity: 0.6;
    padding-left: 3px;
}

.footer-newsletter-dispatch-box p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-newsletter-dispatch-box form {
    display: flex;
    border-bottom: 1px solid var(--primary-text);
}

.footer-newsletter-dispatch-box input {
    flex-grow: 1;
    padding: 12px 0;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    color: var(--primary-text);
}

.footer-newsletter-dispatch-box button {
    background: transparent;
    border: none;
    font-family: inherit;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    cursor: pointer;
    padding: 0 10px;
}

.footer-baseline-copyright-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-social-links-strip a {
    color: var(--primary-text);
    text-decoration: none;
    margin-left: 20px;
    font-weight: 600;
}

/* ==================== HIGH END LUXURY RESPONSIVE RECONCILIATION ==================== */
@media (max-width: 1150px) {
    header {
        padding: 20px;
    }
    
    .left-nav-wing {
        display: none;
    }
    
    .center-logo-anchor {
        position: relative;
        left: 0;
        transform: none;
    }
    
    .hamburger-menu-trigger-btn {
        display: flex;
    }
    
    .shop-product-grid-chassis {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-details-split-grid-chassis {
        grid-template-columns: 1fr;
    }
    
    .product-details-sticky-gallery-strip {
        position: relative;
        top: 0;
    }
    
    .footer-columns-matrix-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dual-collection-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .storytelling-split-flex-layout {
        grid-template-columns: 1fr;
    }
    
    .editorial-split-feature-grid {
        grid-template-columns: 1fr;
    }
    
    .about-split-story-no-margin-layout {
        grid-template-columns: 1fr;
    }
    
    .about-values-split-grid-footprint {
        grid-template-columns: 1fr;
    }
    
    .contact-page-luxury-split-blueprint {
        grid-template-columns: 1fr;
    }
    
    .shop-product-grid-chassis {
        grid-template-columns: 1fr;
    }
    
    .footer-columns-matrix-grid-layout {
        grid-template-columns: 1fr;
    }
    
    .campaign-image-top-right-floating-card {
        position: relative;
        top: 0;
        right: 0;
        max-width: 100%;
        padding: 25px;
    }
    
    .cart-drawer-sliding-container-box {
        width: 100%;
    }
    
    .hero-video-overlay-text-box {
        top: 60%;
    }
}

@media (max-width: 600px) {
    .hero-video-overlay-text-box h1 {
        font-size: 1.8rem;
    }
    
    .hero-video-overlay-text-box {
        top: 50%;
    }
    
    .community-gallery-asset-card {
        width: 260px;
    }
    
    .editorial-block-padding {
        padding: 60px 0;
    }
    
    .mega-dropdown-panel-card {
        width: 100%;
        left: 0;
        right: 0;
        max-width: 100vw;
        padding: 20px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

.hidden {
    display: none;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}  

.hero-video-viewport-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-video-viewport-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Ensure video controls are hidden */
.hero-video-viewport-container video::-webkit-media-controls {
    display: none !important;
}

.hero-video-viewport-container video::-webkit-media-controls-enclosure {
    display: none !important;
}
/* Make sure only active page shows */
.glammahub-editorial-page-view-node {
    display: none !important;
}

.glammahub-editorial-page-view-node.active-editorial-node {
    display: block !important;
}