 /* =========================================================================
       1. CORE BRAND DESIGN SYSTEM & ROOT VARIABLES
       ========================================================================= */
    :root {
      --primary: #dc1c1c;
      --bg: #FFFFFF;
      --charcoal: #2A2A2A;
      --muted: #777777;
      --footer-bg: #111111;
      --copyright-bg: #F1F3E0;
      
      --font: "Quicksand", sans-serif;
      --transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
      --transition-fast: all 0.3s ease;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html, body {
      background-color: var(--bg);
      color: var(--charcoal);
      font-family: var(--font);
      font-weight: 300;
      font-size: 15px;
      line-height: 1.75;
      letter-spacing: 0.08em;
      overflow-x: hidden;
    }

    /* Soft Lowercase & Luxury Typographic Rules */
    h1, h2, h3, h4, .editorial-title {
      font-weight: 300;
      text-transform: lowercase;
      letter-spacing: 0.2em;
    }

    strong, .emphasis {
      font-weight: 700;
    }

    .medium-weight {
      font-weight: 500;
    }

    a, button {
      color: inherit;
      text-decoration: none;
      background: none;
      border: none;
      cursor: pointer;
      font-family: var(--font);
      font-weight: 300;
      letter-spacing: 0.15em;
      text-transform: lowercase;
      transition: var(--transition-fast);
    }

    /* Magazine Page Layout Layers Wrapper */
    .magazine-page-layer {
      display: none;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .magazine-page-layer.active-layer {
      display: block;
      opacity: 1;
      transform: translateY(0);
    }

    .editorial-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 100px 40px;
    }
    @media (max-width: 768px) {
      .editorial-container { padding: 60px 20px; }
    }

    /* =========================================================================
       2. HEADER SYSTEM (FIXED - LOGO AND CART ON TOP)
       ========================================================================= */
    /* Top Strip Header (Announcement Bar) */
    .top-strip-header {
      background-color: var(--primary);
      color: #FFFFFF;
      text-align: center;
      padding: 12px 20px;
      font-size: 0.8rem;
      letter-spacing: 0.25em;
      font-weight: 400;
      position: relative;
      z-index: 1001;
    }
    
    .offer-text-node {
      display: inline-block;
      animation: continuousColorShift 6s infinite alternate, subtleFadeCycle 4s infinite ease-in-out;
    }

    @keyframes continuousColorShift {
      0% { color: #FFFFFF; }
      50% { color: #F1F3E0; }
      100% { color: #E5F3F5; }
    }
    @keyframes subtleFadeCycle {
      0%, 100% { opacity: 0.9; }
      50% { opacity: 0.6; }
    }

    /* Main Nav Header - FIXED LAYOUT */
    .main-nav-header {
      background-color: var(--bg);
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 80px;
      padding: 0 50px;
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 1px solid rgba(111, 164, 175, 0.1);
    }
    @media (max-width: 992px) {
      .main-nav-header { padding: 0 20px; }
    }

    .nav-links-left {
      display: flex;
      gap: 35px;
      align-items: center;
    }
    @media (max-width: 992px) {
      .nav-links-left { display: none; }
    }

    .nav-links-left a, .nav-links-left button {
      color: var(--primary);
      position: relative;
      padding: 4px 0;
      font-size: 0.9rem;
    }
    .nav-links-left a::after, .nav-links-left button::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 1px;
      background-color: var(--primary);
      transition: width 0.4s ease;
    }
    .nav-links-left a:hover::after, .nav-links-left button:hover::after {
      width: 100%;
    }

    .logo-center-node {
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .logo-center-node img {
      height: 240px;
      margin-top: 2rem;
      width: auto;
      display: block;
      transition: transform 0.3s ease;
    }

    .logo-center-node:hover img {
      transform: scale(1.05);
    }

    .cart-right-node {
      display: flex;
      justify-content: flex-end;
      align-items: center;
    }

    .minimal-cart-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      position: relative;
    }

    .cart-svg {
      fill: none;
      stroke: var(--charcoal);
      stroke-width: 1.2px;
    }

    .cart-count-badge {
      position: absolute;
      top: -8px;
      right: -12px;
      background: var(--primary);
      color: white;
      font-size: 0.7rem;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 500;
    }

    /* Hamburger Menu Trigger */
    .hamburger-trigger {
      display: none;
      flex-direction: column;
      gap: 5px;
      width: 25px;
      cursor: pointer;
    }
    .hamburger-trigger span {
      display: block;
      width: 100%;
      height: 1px;
      background-color: var(--primary);
      transition: var(--transition-fast);
    }
    @media (max-width: 992px) {
      .hamburger-trigger { display: flex; }
    }

    /* Responsive Fullscreen Overlay Navigation Drawer */
    .mobile-nav-drawer {
      position: fixed;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100vh;
      background-color: var(--bg);
      z-index: 1002;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 40px;
      transition: var(--transition);
    }
    .mobile-nav-drawer.drawer-open { left: 0; }
    .mobile-nav-drawer .close-btn { 
      position: absolute; 
      top: 40px; 
      right: 40px; 
      font-size: 2rem; 
      color: var(--primary); 
      cursor: pointer;
    }
    .mobile-nav-drawer a, .mobile-nav-drawer button { 
      font-size: 1.5rem; 
      color: var(--primary); 
      cursor: pointer;
    }

    /* =========================================================================
       3. HERO SECTION
       ========================================================================= */
    .hero-section {
      background-color: var(--bg);
      min-height: calc(100vh - 130px);
      display: grid;
      grid-template-columns: 1.10fr 0.90fr;
      align-items: center;
      position: relative;
      padding: 40px 0;
    }
    @media (max-width: 992px) {
      .hero-section { grid-template-columns: 1fr; }
    }

    .hero-left-pane {
      padding-left: 6%;
      height: 150vh;
      width: 80%;
      margin-top: -10rem;
      overflow: hidden;
      position: relative;
    }
    .hero-edge-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .hero-right-pane {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      padding: 40px;
    }

    .hero-centered-float-card {
      width: 55%;
      max-width: 280px;
      height: 500px;
      aspect-ratio: 1 / 1;
      overflow: hidden;
      box-shadow: 0 30px 60px rgba(0,0,0,0.03);
      transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    }
    .hero-centered-float-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-content-overlap-hub {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 85%;
      z-index: 10;
      text-align: center;
      pointer-events: none;
    }
    @media (max-width: 992px) {
      .hero-content-overlap-hub { 
        position: relative; 
        top: 0; 
        left: 0; 
        transform: none; 
        width: 100%; 
        padding: 40px 20px; 
      }
    }

    .hero-thin-headline {
      font-size: calc(2.2rem + 2.5vw);
      color: var(--charcoal);
      line-height: 1.15;
      margin-bottom: 25px;
      text-shadow: 0 0 40px rgba(255,255,255,0.8);
    }

    .hero-story-description {
      max-width: 480px;
      margin: 0 auto;
      font-size: 0.95rem;
      color: var(--charcoal);
      line-height: 1.9;
      background-color: rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(5px);
      padding: 15px;
    }

    /* =========================================================================
       4. SECTION 02: EDITORIAL LOOKBOOK WALL & QUICK VIEW SYSTEM
       ========================================================================= */
    .lookbook-section {
      background-color: var(--bg);
    }

    .lookbook-heading {
      color: var(--primary);
      font-size: 1.8rem;
      margin-bottom: 60px;
      text-align: center;
    }

    .editorial-asymmetric-wall {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      column-gap: 35px;
      row-gap: 80px;
    }
    @media (max-width: 1200px) {
      .editorial-asymmetric-wall { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 992px) {
      .editorial-asymmetric-wall { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 576px) {
      .editorial-asymmetric-wall { grid-template-columns: 1fr; }
    }

    .product-card-frame {
      position: relative;
      display: flex;
      flex-direction: column;
      background: none;
      border: none;
      padding: 0;
      text-align: left;
      cursor: pointer;
    }
    .product-card-frame:nth-child(even) {
      margin-top: 35px;
    }
    .product-card-frame:nth-child(3n) {
      margin-top: -15px;
    }

    .card-image-viewport {
      width: 100%;
      aspect-ratio: 3 / 4;
      overflow: hidden;
      position: relative;
      box-shadow: 0 15px 35px rgba(0,0,0,0.02);
    }
    .card-image-viewport img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }
    .product-card-frame:hover .card-image-viewport img {
      transform: scale(1.05);
    }

    .card-details-strip {
      padding-top: 15px;
      display: flex;
      justify-content: space-between;
      font-size: 0.85rem;
    }
    .card-title-node {
      text-transform: lowercase;
      color: var(--charcoal);
    }
    .card-price-node {
      color: var(--muted);
    }

    /* RETAIL SYSTEM: FLOATING QUICK VIEW SLIDE-UP PANEL */
    .quickview-slide-panel {
      position: fixed;
      bottom: -100%;
      left: 0;
      width: 100%;
      height: 420px;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      z-index: 2000;
      box-shadow: 0 -20px 50px rgba(0,0,0,0.05);
      border-top: 1px solid rgba(111, 164, 175, 0.15);
      transition: bottom 0.6s cubic-bezier(0.25, 1, 0.5, 1);
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .quickview-slide-panel.panel-visible {
      bottom: 0;
    }

    .quickview-layout-grid {
      width: 90%;
      max-width: 1000px;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
    }
    @media (max-width: 768px) {
      .quickview-layout-grid { grid-template-columns: 1fr; gap: 20px; text-align: center; }
    }

    .quickview-close-trigger {
      position: absolute;
      top: -30px;
      right: 0;
      font-size: 1.4rem;
      color: var(--charcoal);
      cursor: pointer;
    }

    .quickview-render-img {
      width: 220px;
      height: 290px;
      object-fit: cover;
      box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    }
    @media (max-width: 768px) { .quickview-render-img { display: none; } }

    .quickview-meta h3 {
      font-size: 1.6rem;
      margin-bottom: 10px;
      color: var(--charcoal);
    }
    .quickview-price-label {
      font-size: 1.1rem;
      color: var(--primary);
      margin-bottom: 15px;
    }
    .quickview-size-row {
      display: flex;
      gap: 15px;
      margin-bottom: 30px;
    }
    @media (max-width: 768px) { .quickview-size-row { justify-content: center; } }
    
    .size-bubble {
      border: 1px solid rgba(0,0,0,0.1);
      padding: 4px 14px;
      font-size: 0.8rem;
    }

    .editorial-action-underline {
      border-bottom: 1px solid var(--charcoal);
      padding-bottom: 3px;
      font-size: 0.9rem;
      cursor: pointer;
    }
    .editorial-action-underline:hover {
      color: var(--primary);
      border-color: var(--primary);
    }

    /* =========================================================================
       5. SECTION 03: TYPOGRAPHY + MONOGRAM FASHION BLOCK & FORMS
       ========================================================================= */
    .monogram-section {
      background-color: var(--bg);
      position: relative;
      overflow: hidden;
    }

    .monogram-heading {
      color: var(--primary);
      font-size: 1.8rem;
      text-align: center;
      margin-bottom: 50px;
    }

    .monogram-large-paragraph {
      max-width: 750px;
      margin: 0 auto 90px auto;
      text-align: center;
      font-size: 1.25rem;
      color: var(--charcoal);
      line-height: 2;
      padding: 0 20px;
    }

    .monogram-collage-arena {
      position: relative;
      width: 100%;
      height: 500px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 100px;
    }

    .giant-wireframe-letter {
      font-size: 26rem;
      font-weight: 300;
      color: rgb(243, 49, 49);
      -webkit-text-stroke: 1px rgba(111, 164, 175, 0.15);
      position: absolute;
      user-select: none;
      line-height: 4;
    }

    .letter-d {
      left: 22%;
      top: -50rem;
    }

    .letter-c {
      right: 32%;
      z-index: 1;
      bottom: -50rem;
    }
    
    .monogram-overlap-img-frame {
      width: 340px;
      height: 440px;
      overflow: hidden;
      z-index: 2;
      box-shadow: 0 25px 55px rgba(0,0,0,0.04);
    }
    .monogram-overlap-img-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Minimal Subscription + Unsubscribe Form Configuration */
    .minimal-subscription-box {
      text-align: center;
      max-width: 500px;
      margin: 0 auto;
    }
    .subscription-header {
      font-size: 1.1rem;
      margin-bottom: 8px;
      color: var(--charcoal);
    }
    .subscription-paragraph {
      font-size: 0.9rem;
      color: var(--charcoal);
      margin-bottom: 35px;
    }

    .minimal-input-line-wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 25px;
    }
    .editorial-underline-input {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 1px solid rgba(0,0,0,0.15);
      padding: 10px 5px;
      font-family: var(--font);
      font-weight: 300;
      font-size: 1rem;
      color: var(--charcoal);
      text-align: center;
      outline: none;
      transition: var(--transition-fast);
    }
    .editorial-underline-input:focus {
      border-bottom-color: var(--primary);
    }

    .form-actions-cluster {
      display: flex;
      gap: 35px;
    }

    /* =========================================================================
       6. SECTION 04: LAYERED FASHION STORY SECTIONS
       ========================================================================= */
    .layered-story-section {
      background-color: var(--bg);
    }
    .story-collage-stack {
      display: flex;
      flex-direction: column;
      gap: 150px;
    }
    .story-collage-layer {
      display: flex;
      align-items: center;
      position: relative;
      width: 100%;
    }
    .story-collage-layer:nth-child(even) {
      flex-direction: row-reverse;
    }

    .story-image-viewport {
      width: 60%;
      height: 580px;
      overflow: hidden;
    }
    @media (max-width: 768px) { 
      .story-image-viewport { width: 100%; height: 400px; } 
    }
    
    .story-image-viewport img {
      width: 100%; 
      height: 100%; 
      object-fit: cover;
      transition: var(--transition);
    }

    .story-caption-card {
      position: absolute;
      background-color: var(--bg);
      padding: 45px;
      max-width: 380px;
      box-shadow: 0 20px 45px rgba(0,0,0,0.02);
      z-index: 5;
    }
    .align-right-offset { right: 8%; bottom: -40px; }
    .align-left-offset { left: 8%; bottom: -40px; }

    @media (max-width: 768px) {
      .story-caption-card { 
        position: relative; 
        left: 0!important; 
        right: 0!important; 
        bottom: 0!important; 
        max-width: 100%; 
        padding: 30px 10px; 
        box-shadow: none; 
      }
      .story-collage-layer { flex-direction: column!important; }
    }

    .story-caption-card p {
      font-size: 0.85rem;
      color: var(--muted);
      line-height: 1.8;
    }

    /* =========================================================================
       7. SECTION 05: FEATURED DROP HIGHLIGHT
       ========================================================================= */
    .featured-drop-section {
      background: linear-gradient(180deg, var(--bg) 0%, #FAFAFA 100%);
      padding: 120px 0;
    }
    .drop-split-arena {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      align-items: center;
      gap: 60px;
    }
    @media (max-width: 992px) { 
      .drop-split-arena { grid-template-columns: 1fr; text-align: center; } 
    }

    .large-editorial-quote {
      font-size: calc(1.8rem + 1.8vw);
      line-height: 1.3;
      color: var(--charcoal);
    }

    .rotating-highlight-card {
      background-color: var(--bg);
      padding: 25px;
      max-width: 400px;
      margin: 0 auto;
      box-shadow: 0 30px 60px rgba(0,0,0,0.03);
      transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
      cursor: pointer;
    }
    .rotating-highlight-card:hover {
      transform: rotate(1.5deg);
    }
    .rotating-highlight-card img {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      margin-bottom: 20px;
    }

    /* =========================================================================
       8. SECTION 06: SUBSCRIPTION EDITORIAL BLOCK
       ========================================================================= */
    .standalone-subscription-block {
      background-color: var(--bg);
      padding: 120px 0;
      text-align: center;
    }
    .editorial-circle-preface {
      font-size: 0.9rem;
      letter-spacing: 0.2em;
      color: var(--muted);
      margin-bottom: 30px;
    }

    /* Animated typing cursor line simulation decoration */
    .animated-cursor-line {
      position: relative;
    }
    .animated-cursor-line::after {
      content: '';
      position: absolute;
      right: 0;
      bottom: 0;
      width: 1px;
      height: 100%;
      background-color: var(--primary);
      animation: blinkCursor 1s infinite alternate;
    }
    @keyframes blinkCursor { 
      0% { opacity: 0; } 
      100% { opacity: 1; } 
    }

    /* =========================================================================
       9. OTHER EDITORIAL PAGES ARCHITECTURE (ABOUT, FAQ, CONTACT, SYSTEM CORES)
       ========================================================================= */
    .editorial-banner-header {
      padding: 120px 5% 50px 5%;
      text-align: center;
    }
    .editorial-banner-header h1 {
      font-size: 2.5rem;
      color: var(--charcoal);
    }

    /* FAQ Magazine Interview Pattern */
    .faq-interview-stack {
      max-width: 850px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 70px;
    }
    .interview-question {
      font-size: 1.15rem;
      color: var(--primary);
      margin-bottom: 12px;
    }
    .interview-answer {
      font-size: 0.95rem;
      color: var(--charcoal);
      line-height: 1.9;
    }

    /* Contact Page Structural Grid */
    .contact-editorial-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    @media (max-width: 992px) { 
      .contact-editorial-layout { grid-template-columns: 1fr; } 
    }

    /* =========================================================================
       10. GLOBAL SYSTEM FOOTER & SYSTEM POLICIES ARCHITECTURE
       ========================================================================= */
    .global-editorial-footer {
      background-color: var(--footer-bg);
      color: #FFFFFF;
      padding: 90px 0 0 0;
    }

    .footer-divider-thin {
      width: 92%;
      margin: 0 auto 50px auto;
      height: 1px;
      background-color: rgba(255,255,255,0.08);
    }

    .footer-nav-row {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      column-gap: 50px;
      row-gap: 25px;
      padding: 0 40px 60px 40px;
    }
    .footer-nav-row button {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.6);
      letter-spacing: 0.18em;
      text-transform: uppercase;
      cursor: pointer;
    }
    .footer-nav-row button:hover {
      color: var(--primary);
    }

    .copyright-strip {
      background-color: var(--copyright-bg);
      color: #111111;
      font-size: 0.8rem;
      text-align: center;
      padding: 22px 20px;
      letter-spacing: 0.12em;
    }

    /* =========================================================================
       11. CART DRAWER STYLES
       ========================================================================= */
    .cart-drawer {
      position: fixed;
      top: 0;
      right: -100%;
      width: 400px;
      height: 100vh;
      background: var(--bg);
      border-left: 1px solid rgba(111, 164, 175, 0.2);
      z-index: 2000;
      transition: right 0.5s cubic-bezier(0.25, 1, 0.5, 1);
      display: flex;
      flex-direction: column;
      box-shadow: -20px 0 40px rgba(0,0,0,0.03);
    }

    .cart-drawer.open {
      right: 0;
    }

    .cart-drawer-header {
      padding: 25px;
      border-bottom: 1px solid rgba(0,0,0,0.08);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .cart-drawer-header h3 {
      font-size: 1.1rem;
      letter-spacing: 0.2em;
      text-transform: lowercase;
    }

    .cart-drawer-close {
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: var(--charcoal);
    }

    .cart-items-container {
      flex: 1;
      overflow-y: auto;
      padding: 20px;
    }

    .cart-item {
      display: flex;
      gap: 15px;
      padding: 15px 0;
      border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .cart-item-img {
      width: 80px;
      height: 100px;
      object-fit: cover;
    }

    .cart-item-details {
      flex: 1;
    }

    .cart-item-title {
      font-size: 0.85rem;
      font-weight: 500;
      margin-bottom: 5px;
    }

    .cart-item-price {
      font-size: 0.8rem;
      color: var(--primary);
      margin-bottom: 8px;
    }

    .cart-item-actions {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .cart-qty-btn {
      background: none;
      border: 1px solid rgba(0,0,0,0.1);
      width: 28px;
      height: 28px;
      cursor: pointer;
      font-size: 1rem;
    }

    .cart-item-qty {
      font-size: 0.85rem;
    }

    .cart-item-remove {
      background: none;
      border: none;
      color: #999;
      cursor: pointer;
      font-size: 0.7rem;
      text-decoration: underline;
    }

    .cart-footer {
      padding: 20px;
      border-top: 1px solid rgba(0,0,0,0.08);
    }

    .cart-total-row {
      display: flex;
      justify-content: space-between;
      margin-bottom: 20px;
      font-weight: 500;
    }

    .checkout-btn {
      width: 100%;
      background: var(--primary);
      color: white;
      border: none;
      padding: 14px;
      font-family: var(--font);
      font-size: 0.85rem;
      letter-spacing: 0.15em;
      cursor: pointer;
      transition: opacity 0.3s;
    }

    .checkout-btn:hover {
      opacity: 0.9;
    }

    .empty-cart-message {
      text-align: center;
      color: #999;
      padding: 40px 20px;
    }

    .cart-btn-wrapper {
      position: relative;
    }

    /* =========================================================================
       12. ANIMATION KEYFRAMES
       ========================================================================= */
    @keyframes slideInNotification {
      from { transform: translateX(100px); opacity: 0; }
      to { transform: translateX(0); opacity: 1; }
    }
