/** Shopify CDN: Minification failed

Line 840:4 Unexpected "}"
Line 842:4 Unexpected "}"
Line 950:4 Unexpected "}"
Line 952:4 Unexpected "}"

**/


    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { font-size: 16px; scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      background: #fafafa;
      color: #111;
      -webkit-font-smoothing: antialiased;
    }
    a { text-decoration: none; color: inherit; }
    img { display: block; width: 100%; object-fit: cover; }
    ul { list-style: none; }

    :root {
      --white:   #ffffff;
      --off-white: #fafafa;
      --light:   #f4f4f4;
      --mid:     #e0e0e0;
      --muted:   #888;
      --dark:    #111111;
      --serif:   'Playfair Display', Georgia, serif;
      --sans:    'Inter', sans-serif;
      --max-w:   1280px;
    }

    /* Announcement Bar */
    .announcement {
      background: var(--dark);
      color: var(--white);
      text-align: center;
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 0.6rem 1rem;
    }

    /* Header */
    header {
      position: sticky; top: 0; z-index: 100;
      background: var(--white);
      border-bottom: 1px solid var(--mid);
    }
    .header-inner {
      max-width: var(--max-w); margin: 0 auto;
      padding: 0 2.5rem; height: 64px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .logo-link { display: flex; align-items: center; }
    .logo-img { height: 36px; width: auto; display: block; }
    nav { display: flex; gap: 2rem; align-items: center; }
    nav a {
      font-size: 0.72rem; font-weight: 500;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--dark); transition: opacity 0.2s; position: relative;
    }
    nav a::after {
      content: ''; position: absolute; bottom: -3px; left: 0;
      width: 0; height: 1px; background: var(--dark);
      transition: width 0.25s ease;
    }
    nav a:hover::after { width: 100%; }
    nav a:hover { opacity: 0.6; }
    .header-icons { display: flex; gap: 1.4rem; align-items: center; }
    .header-icons a {
      font-size: 0.72rem; font-weight: 500;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--dark); display: flex; align-items: center; gap: 0.3rem;
    }
    .cart-count {
      background: var(--dark); color: var(--white);
      border-radius: 50%; width: 18px; height: 18px;
      font-size: 0.6rem; display: flex; align-items: center; justify-content: center;
    }

    /* Hero */
    .hero {
      position: relative; height: 72vh; min-height: 420px;
      overflow: hidden; background: #1a1a1a;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background-image: url(/cdn/shop/t/19/assets/hero-model.jpg);
      background-size: cover;
      background-position: center 20%;
      background-repeat: no-repeat;
    }
    .hero-bg::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to right, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.60) 40%, rgba(0,0,0,0.18) 68%, rgba(0,0,0,0.0) 100%), linear-gradient(to top, rgba(0,0,0,0.50) 0%, rgba(0,0,0,0.0) 45%);
    }
    .hero-content {
      position: relative; z-index: 2; height: 100%;
      display: flex; flex-direction: column;
      align-items: flex-start; justify-content: flex-end;
      max-width: var(--max-w); margin: 0 auto;
      padding: 0 60px 52px;
    }
    .hero-eyebrow {
      font-size: 0.68rem; letter-spacing: 0.3em;
      text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1rem;
    }
    .hero-title {
      font-family: var(--serif);
      font-size: clamp(3rem, 7vw, 6rem);
      font-weight: 400; color: var(--white);
      line-height: 1.05; margin-bottom: 1.6rem; max-width: 700px;
    }
    .hero-title em { font-style: italic; color: rgba(255,255,255,0.65); }
    .hero-sub {
      font-size: 0.85rem; color: rgba(255,255,255,0.5);
      letter-spacing: 0.06em; margin-bottom: 2.5rem;
      max-width: 380px; line-height: 1.7;
    }
    .btn {
      display: inline-flex; align-items: center; gap: 0.6rem;
      padding: 0.85rem 2.2rem; font-size: 0.72rem; font-weight: 500;
      letter-spacing: 0.16em; text-transform: uppercase;
      border: 1px solid transparent; cursor: pointer; transition: all 0.25s ease;
    }
    .btn-light { background: var(--white); color: var(--dark); border-color: var(--white); }
    .btn-light:hover { background: transparent; color: var(--white); }
    .btn-outline { background: transparent; color: var(--dark); border-color: var(--dark); }
    .btn-outline:hover { background: var(--dark); color: var(--white); }
    .btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
    .btn-outline-light:hover { background: var(--white); color: var(--dark); }
    .hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
    .hero-geo { display: none; }

    /* Section */
    .section { max-width: var(--max-w); margin: 0 auto; padding: 5rem 2.5rem; }
    .section-label {
      font-size: 0.65rem; letter-spacing: 0.3em;
      text-transform: uppercase; color: var(--muted); margin-bottom: 0.6rem;
    }
    .section-title {
      font-family: var(--serif);
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 400; color: var(--dark);
      margin-bottom: 2.5rem; line-height: 1.2;
    }
    .section-header {
      display: flex; align-items: flex-end;
      justify-content: space-between; margin-bottom: 2.5rem;
    }
    .section-header .section-title { margin-bottom: 0; }

    /* Category Strip */
    .category-strip {
      background: var(--white);
      border-top: 1px solid var(--mid); border-bottom: 1px solid var(--mid);
    }
    .category-strip-inner {
      max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem;
      display: flex; gap: 0; overflow-x: auto;
    }
    .cat-item {
      flex: 0 0 auto; padding: 1.1rem 2rem;
      font-size: 0.68rem; font-weight: 500;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--muted); border-right: 1px solid var(--mid);
      cursor: pointer; transition: color 0.2s, background 0.2s; white-space: nowrap;
    }
    .cat-item:hover, .cat-item.active { color: var(--dark); background: var(--light); }
    .cat-item.active { font-weight: 600; }

    /* Product Grid */
    .product-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
    }
    .product-card { cursor: pointer; }
    .product-img-wrap {
      position: relative; overflow: hidden;
      background: var(--light); aspect-ratio: 3/4; margin-bottom: 1rem;
      display: block;
    }
    .product-img-wrap img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.5s ease;
    }
    .product-card:hover .product-img-wrap img { transform: scale(1.04); }
    .product-badge {
      position: absolute; top: 0.8rem; left: 0.8rem;
      background: var(--dark); color: var(--white);
      font-size: 0.58rem; letter-spacing: 0.14em;
      text-transform: uppercase; padding: 0.3rem 0.6rem;
    }
    .product-quick-add {
      position: absolute; bottom: 0; left: 0; right: 0;
      background: rgba(17,17,17,0.88); color: var(--white);
      font-size: 0.65rem; letter-spacing: 0.14em;
      text-transform: uppercase; text-align: center; padding: 0.9rem;
      transform: translateY(100%); transition: transform 0.3s ease;
    }
    .product-card:hover .product-quick-add { transform: translateY(0); }
    .product-name {
      font-size: 0.8rem; font-weight: 400;
      color: var(--dark); margin-bottom: 0.3rem; line-height: 1.4;
    }
    .product-name a { color: var(--dark); }
    .product-name a:hover { text-decoration: underline; }
    .product-vendor {
      font-size: 0.65rem; color: var(--muted);
      letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.4rem;
    }
    .product-price { font-size: 0.82rem; font-weight: 500; color: var(--dark); }
    .product-price .was {
      text-decoration: line-through; color: var(--muted);
      font-weight: 400; margin-right: 0.4rem;
    }

    /* Collection Banners */
    .collection-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto; gap: 1.5rem;
    }
    .col-banner {
      position: relative; overflow: hidden; cursor: pointer; display: block;
    }
    .col-banner:first-child { grid-row: span 2; }
    .col-banner-img {
      width: 100%; height: 100%; min-height: 260px;
      object-fit: cover; transition: transform 0.6s ease;
    }
    .col-banner:first-child .col-banner-img { min-height: 560px; }
    .col-banner:hover .col-banner-img { transform: scale(1.04); }
    .col-banner-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 55%);
      display: flex; flex-direction: column;
      justify-content: flex-end; padding: 2rem;
    }
    .col-banner-label {
      font-size: 0.62rem; letter-spacing: 0.25em;
      text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 0.4rem;
    }
    .col-banner-title {
      font-family: var(--serif); font-size: 1.6rem;
      font-weight: 400; color: var(--white); margin-bottom: 0.8rem;
    }
    .col-banner-cta {
      display: inline-flex; align-items: center; gap: 0.5rem;
      font-size: 0.65rem; font-weight: 500;
      letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--white); border-bottom: 1px solid rgba(255,255,255,0.4);
      padding-bottom: 2px; transition: border-color 0.2s;
    }
    .col-banner:hover .col-banner-cta { border-color: var(--white); }

    /* Collection banner image backgrounds */
    .col-img-rush {
      background-image: url('https://lecturer.store/cdn/shop/collections/general-clothes-minimal-1.jpg?v=1741759520&width=1500');
      background-size: cover; background-position: center;
    }
    .col-img-home {
      background-image: url('/cdn/shop/collections/general-clothes-minimal-3.jpg?v=1741758649&width=1500');
      background-size: cover; background-position: center;
    }
    .col-img-comp {
      background-image: url('/cdn/shop/collections/0a4fa60588284299bbc3dccfd9c6a67a.png?v=1747330075&width=1500');
      background-size: cover; background-position: center;
    }

    /* Marquee */
    .marquee-wrap { background: var(--dark); overflow: hidden; padding: 1rem 0; }
    .marquee-track {
      display: flex; gap: 4rem;
      animation: marquee 22s linear infinite; white-space: nowrap;
    }
    .marquee-track span {
      font-size: 0.65rem; letter-spacing: 0.25em;
      text-transform: uppercase; color: rgba(255,255,255,0.5); flex-shrink: 0;
    }
    .marquee-track span strong { color: var(--white); font-weight: 500; }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* Editorial */
    .editorial {
      position: relative; height: 60vh; min-height: 420px;
      background: #0f0f0f; overflow: hidden; display: flex; align-items: center;
    }
    .editorial-bg {
      position: absolute; inset: 0;
      background: linear-gradient(100deg, #0f0f0f 35%, transparent 100%); z-index: 1;
    }
    .editorial-img-bg {
      position: absolute; inset: 0;
      background-image: url('/cdn/shop/collections/266518-944cd5ed-592a-4998-9d92-9c0b36e0a44a.jpg?v=1742365480&width=1500');
      background-size: cover; background-position: center;
    }
    .editorial-content {
      position: relative; z-index: 2;
      max-width: var(--max-w); margin: 0 auto; padding: 0 2.5rem; width: 100%;
    }
    .editorial-eyebrow {
      font-size: 0.62rem; letter-spacing: 0.3em;
      text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 0.8rem;
    }
    .editorial-title {
      font-family: var(--serif);
      font-size: clamp(2rem, 5vw, 4rem);
      font-weight: 400; color: var(--white);
      line-height: 1.1; margin-bottom: 0.5rem; max-width: 520px;
    }
    .editorial-title em { font-style: italic; color: rgba(255,255,255,0.5); }
    .editorial-quote {
      font-size: 0.78rem; color: rgba(255,255,255,0.4);
      font-style: italic; margin-bottom: 2rem;
      max-width: 360px; line-height: 1.7;
    }

    /* Newsletter */
    .newsletter {
      background: var(--light);
      border-top: 1px solid var(--mid); border-bottom: 1px solid var(--mid);
    }
    .newsletter-inner {
      max-width: 560px; margin: 0 auto;
      padding: 5rem 2.5rem; text-align: center;
    }
    .newsletter-title {
      font-family: var(--serif); font-size: 1.8rem;
      font-weight: 400; margin-bottom: 0.6rem;
    }
    .newsletter-sub {
      font-size: 0.8rem; color: var(--muted); margin-bottom: 2rem; line-height: 1.7;
    }
    .newsletter-form {
      display: flex; border: 1px solid var(--mid); background: var(--white);
    }
    .newsletter-form input {
      flex: 1; border: none; outline: none;
      padding: 0.9rem 1.2rem; font-size: 0.8rem;
      font-family: var(--sans); background: transparent; color: var(--dark);
    }
    .newsletter-form input::placeholder { color: var(--muted); }
    .newsletter-form button {
      padding: 0.9rem 1.6rem; background: var(--dark); color: var(--white);
      border: none; font-size: 0.65rem; font-weight: 500;
      letter-spacing: 0.16em; text-transform: uppercase; cursor: pointer;
    }
    .newsletter-form button:hover { opacity: 0.8; }

    /* Footer */
    footer { background: var(--dark); color: var(--white); padding: 5rem 2.5rem 2.5rem; }
    .footer-inner { max-width: var(--max-w); margin: 0 auto; }
    .footer-top {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem; padding-bottom: 3rem;
      border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 2rem;
    }
    .footer-brand .logo-img-footer { height: 30px; width: auto; filter: invert(1); margin-bottom: 1rem; display: block; }
    .footer-brand p { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.8; max-width: 260px; }
    .footer-col h4 {
      font-size: 0.62rem; letter-spacing: 0.22em;
      text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1.2rem;
    }
    .footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
    .footer-col ul li a { font-size: 0.8rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--white); }
    .footer-bottom {
      display: flex; align-items: center; justify-content: space-between;
      font-size: 0.68rem; color: rgba(255,255,255,0.3);
    }
    .footer-bottom a { color: rgba(255,255,255,0.3); }

    .divider { border: none; border-top: 1px solid var(--mid); margin: 0; }

    .mockup-badge {
      position: fixed; bottom: 1.5rem; right: 1.5rem;
      background: #111; color: #fff; font-size: 0.6rem;
      letter-spacing: 0.16em; text-transform: uppercase;
      padding: 0.5rem 1rem; border-radius: 2px;
      z-index: 9999; opacity: 0.85; pointer-events: none;
    }
  
    /* ===== DROPDOWN NAV ===== */
    .header-nav {
      display: flex;
      align-items: center;
      gap: 0;
    }
    .nav-item {
      position: relative;
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #111;
      text-decoration: none;
      padding: 0 1rem;
      height: 60px;
      display: flex;
      align-items: center;
      cursor: pointer;
      white-space: nowrap;
    }
    .nav-item::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 1rem;
      right: 1rem;
      height: 2px;
      background: #111;
      transform: scaleX(0);
      transition: transform 0.2s ease;
    }
    .nav-item:hover::after,
    .nav-item.active::after { transform: scaleX(1); }
    .nav-label {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      cursor: pointer;
    }
    .nav-label svg { opacity: 0.5; transition: transform 0.2s; }
    .has-dropdown:hover .nav-label svg { transform: rotate(180deg); }

    /* Dropdown panel */
    .nav-dropdown {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      background: #fff;
      border: 1px solid #eee;
      border-top: 2px solid #111;
      box-shadow: 0 8px 32px rgba(0,0,0,0.10);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.18s ease, visibility 0.18s ease;
      z-index: 200;
      min-width: 200px;
    }
    .has-dropdown:hover .nav-dropdown {
      opacity: 1;
      visibility: visible;
      pointer-events: all;
    }
    .dropdown-mega {
      display: flex;
      gap: 0;
      padding: 1.4rem 1.6rem;
    }
    .dropdown-mega.single-col { min-width: 220px; }
    .dropdown-mega.two-col { min-width: 260px; }
    .wardrobe-dropdown .dropdown-mega { min-width: 480px; gap: 2rem; }

    .dropdown-group {
      display: flex;
      flex-direction: column;
      min-width: 140px;
    }
    .dropdown-group-label {
      font-family: 'Inter', sans-serif;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #bbb;
      margin-bottom: 0.6rem;
      padding-bottom: 0.4rem;
      border-bottom: 1px solid #f0f0f0;
    }
    .dropdown-link {
      font-family: 'Inter', sans-serif;
      font-size: 0.8rem;
      font-weight: 400;
      color: #333;
      text-decoration: none;
      padding: 0.3rem 0;
      transition: color 0.15s, padding-left 0.15s;
      display: block;
    }
    .dropdown-link:hover {
      color: #111;
      padding-left: 0.4rem;
      font-weight: 500;
    }
    .dropdown-link-accent {
      color: #c8a96e;
      font-weight: 600;
    }
    .dropdown-link-accent:hover { color: #a8893e; }

    /* Mobile nav toggle (hidden on desktop) */
    .nav-toggle { display: none; }

    @media (max-width: 900px) {
      .header-nav { display: none; }
      .nav-toggle { display: flex; }
    }

  
    /* ===== FULL DROPDOWN NAV ===== */
    .header-nav-full {
      display: flex;
      align-items: center;
      gap: 0;
    }
    .nav-top-item {
      position: relative;
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #111;
      text-decoration: none;
      padding: 0 0.9rem;
      height: 60px;
      display: flex;
      align-items: center;
      cursor: pointer;
      white-space: nowrap;
      transition: color 0.15s;
    }
    .nav-top-item::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0.9rem;
      right: 0.9rem;
      height: 2px;
      background: #111;
      transform: scaleX(0);
      transition: transform 0.2s ease;
    }
    .nav-top-item:hover::after { transform: scaleX(1); }
    .nav-top-label {
      display: flex;
      align-items: center;
      gap: 0.3rem;
      cursor: pointer;
      user-select: none;
    }
    .nav-top-label svg {
      opacity: 0.45;
      transition: transform 0.2s;
      flex-shrink: 0;
    }
    .nav-has-drop:hover .nav-top-label svg { transform: rotate(180deg); }

    /* Dropdown panel */
    .nav-drop {
      position: absolute;
      top: calc(100% + 0px);
      left: 50%;
      transform: translateX(-50%);
      background: #fff;
      border: 1px solid #eee;
      border-top: 2px solid #111;
      box-shadow: 0 10px 40px rgba(0,0,0,0.10);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
      z-index: 9999;
      min-width: 200px;
      padding: 1.2rem 1.4rem;
      transform: translateX(-50%) translateY(4px);
    }
    .nav-has-drop:hover .nav-drop {
      opacity: 1;
      visibility: visible;
      pointer-events: all;
      transform: translateX(-50%) translateY(0);
    }

    /* Mega dropdown (3 columns) */
    .nav-drop-mega {
      display: flex;
      gap: 2rem;
      min-width: 440px;
      padding: 1.4rem 1.8rem;
    }
    .nav-drop-wide {
      min-width: 240px;
    }

    .drop-col {
      display: flex;
      flex-direction: column;
      min-width: 130px;
    }
    .drop-group-head {
      font-family: 'Inter', sans-serif;
      font-size: 0.63rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #bbb;
      margin-bottom: 0.6rem;
      padding-bottom: 0.4rem;
      border-bottom: 1px solid #f0f0f0;
    }
    .drop-link {
      font-family: 'Inter', sans-serif;
      font-size: 0.8rem;
      font-weight: 400;
      color: #333;
      text-decoration: none;
      padding: 0.28rem 0;
      display: block;
      transition: color 0.15s, padding-left 0.15s;
    }
    .drop-link:hover {
      color: #111;
      padding-left: 0.35rem;
      font-weight: 500;
    }
    .drop-link-gold { color: #c8a96e; font-weight: 600; }
    .drop-link-gold:hover { color: #a8893e; }

  

    /* Sub-collection hero */
    .subcoll-hero {
      height: 72vh;
      display: flex;
      align-items: flex-end;
      padding: 0;
      position: relative;
      max-height: 680px;
      min-height: 420px;
    }
    .subcoll-hero-content {
      position: relative;
      z-index: 2;
      color: #fff;
    }
    .subcoll-hero-eyebrow {
      font-family: 'Inter', sans-serif;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      margin-bottom: 0.5rem;
    }
    .subcoll-hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 600;
      line-height: 1.1;
      color: #fff;
      margin: 0 0 1rem;
    }
    .subcoll-hero-title em {
      font-style: italic;
      color: #6b8f71;
    }
    .subcoll-hero-cta {
      display: inline-block;
      padding: 0.65rem 1.8rem;
      border: 1.5px solid #fff;
      color: #fff;
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
    }
    .subcoll-hero-cta:hover {
      background: #fff;
      color: #111;
    }

    /* Breadcrumb */
    .breadcrumb {
      padding: 1rem 4rem;
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      color: #999;
      border-bottom: 1px solid #f0f0f0;
    }
    .breadcrumb a {
      color: #999;
      text-decoration: none;
    }
    .breadcrumb a:hover { color: #111; }
    .breadcrumb span { margin: 0 0.4rem; }

    /* Products section */
    .collection-products-section {
      padding: 3rem 4rem 5rem;
    }
    .collection-products-header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      margin-bottom: 2rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid #eee;
    }
    .collection-products-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 600;
      color: #111;
    }
    .collection-view-all {
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-decoration: none;
      text-transform: uppercase;
    }
    .empty-collection {
      text-align: center;
      padding: 5rem 2rem;
      color: #999;
      font-family: 'Inter', sans-serif;
    }
    .empty-collection a { text-decoration: none; font-weight: 600; }
  
    
    .subcoll-hero {
      background: #f7f7f5 !important;
      background-image: none !important;
      height: auto !important;
      padding: 0;
      display: flex;
      align-items: flex-start;
      border-bottom: 1px solid #eee;
      max-height: 680px;
      min-height: 420px;
    }
    .subcoll-hero-content {
      max-width: 680px;
    }
    .subcoll-hero-eyebrow {
      font-family: 'Inter', sans-serif;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: #aaa;
      margin-bottom: 0.6rem;
    }
    .subcoll-hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 5vw, 4rem);
      font-weight: 600;
      line-height: 1.1;
      color: #111 !important;
      margin: 0 0 1.2rem;
    }
    .subcoll-hero-title em {
      font-style: italic;
      color: #555 !important;
    }
    .subcoll-hero-tagline {
      font-family: 'Inter', sans-serif;
      font-size: 0.95rem;
      font-weight: 300;
      color: #666;
      line-height: 1.6;
      margin-bottom: 1.8rem;
      max-width: 520px;
    }
    .subcoll-hero-cta {
      display: inline-block;
      padding: 0.65rem 1.8rem;
      border: 1.5px solid #111;
      color: #111 !important;
      background: transparent;
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
    }
    .subcoll-hero-cta:hover {
      background: #111;
      color: #fff !important;
    }
    /* Breadcrumb */
    .breadcrumb {
      padding: 0.9rem 4rem;
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      color: #bbb;
      background: #fff;
      border-bottom: 1px solid #f0f0f0;
    }
    .breadcrumb a { color: #bbb; text-decoration: none; }
    .breadcrumb a:hover { color: #111; }
    .breadcrumb span { margin: 0 0.4rem; }

  
    /* ===== ANIMATED PRODUCT HERO ===== */
    .subcoll-hero {
      position: relative;
      height: 72vh !important;
      overflow: hidden;
      display: flex !important;
      align-items: flex-end !important;
      padding: 0;
      border-bottom: none !important;
      background: #111 !important;
      max-height: 680px;
      min-height: 420px;
    }

    /* Slow Ken Burns zoom background */
    .subcoll-hero-bg {
      position: absolute; inset: 0; width: 100%; height: 100%;
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center center;
      animation: heroZoom 14s ease-in-out infinite alternate;
      transform-origin: center center;
    }
    @keyframes heroZoom {
      0% { transform: scale(1.0); }
      100% { transform: scale(1.06); }
    }
      to   { transform: scale(1.06); }
    }
      100% { transform: scale(1.08); }
    }

    /* Multi-product mosaic grid (for pages with multiple images) */
    .subcoll-hero-mosaic {
      position: absolute;
      inset: 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 2px;
      animation: heroZoom 14s ease-in-out infinite alternate;
    }
    .subcoll-hero-mosaic .mosaic-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }
    .subcoll-hero-mosaic .mosaic-img:first-child {
      grid-row: span 2;
    }

    /* Gradient shadow vignette overlay */
    .subcoll-hero-vignette {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(0,0,0,0.78) 0%,
        rgba(0,0,0,0.35) 45%,
        rgba(0,0,0,0.10) 100%
      );
      z-index: 1;
    }

    /* Content sits above vignette */
    .subcoll-hero-content {
      position: relative;
      z-index: 2;
      padding: 0 60px 52px;
      width: 100%;
    }
    .subcoll-hero-eyebrow {
      font-family: 'Inter', sans-serif;
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55) !important;
      margin-bottom: 0.5rem;
    }
    .subcoll-hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 5vw, 4rem);
      font-weight: 600;
      line-height: 1.1;
      color: #fff !important;
      margin: 0 0 0.8rem;
    }
    .subcoll-hero-title em {
      font-style: italic;
      color: rgba(255,255,255,0.75) !important;
    }
    .subcoll-hero-tagline {
      font-family: 'Inter', sans-serif;
      font-size: 0.9rem;
      font-weight: 300;
      color: rgba(255,255,255,0.7) !important;
      line-height: 1.6;
      margin-bottom: 1.5rem;
      max-width: 480px;
    }
    .subcoll-hero-cta {
      display: inline-block;
      padding: 0.65rem 1.8rem;
      border: 1.5px solid rgba(255,255,255,0.7);
      color: #fff !important;
      background: transparent;
      font-family: 'Inter', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.2s, border-color 0.2s;
    }
    .subcoll-hero-cta:hover {
      background: rgba(255,255,255,0.15);
      border-color: #fff;
    }

  
    /* ===== HERO ZOOM UPDATE: SINGLE IMAGE, FASTER ===== */
    .subcoll-hero-mosaic { display: none !important; }
    .subcoll-hero-bg {
      position: absolute; inset: 0; width: 100%; height: 100%;
      position: absolute !important;
      inset: 0 !important;
      background-size: cover;
      background-position: center center;
      animation: heroZoom 14s ease-in-out infinite alternate;
      transform-origin: center center !important;
    }
    @keyframes heroZoom {
      0% { transform: scale(1.0); }
      100% { transform: scale(1.06); }
    }
      to   { transform: scale(1.06); }
    }
      100% { transform: scale(1.12); }
    }

  
/* ── Cart Page ── */
.cart-page-wrap { max-width: 1280px; margin: 0 auto; padding: 3rem 2.5rem; }
.cart-header-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; border-bottom: 1px solid #eee; padding-bottom: 1rem; }
.cart-title { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 600; color: #111; }
.continue-shopping { font-family: 'Inter', sans-serif; font-size: 0.8rem; color: #999; text-decoration: none; }
.continue-shopping:hover { color: #111; }
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 3rem; align-items: start; }
.cart-table { width: 100%; border-collapse: collapse; font-family: 'Inter', sans-serif; font-size: 0.85rem; }
.cart-table th { text-align: left; padding: 0.75rem 0; border-bottom: 2px solid #111; font-weight: 600; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: #111; }
.cart-item-row td { padding: 1.2rem 0; border-bottom: 1px solid #f0f0f0; vertical-align: middle; }
.cart-item-product { display: flex; gap: 1rem; align-items: center; }
.cart-item-product img { width: 80px; height: 80px; object-fit: cover; }
.cart-item-title { font-weight: 500; color: #111; text-decoration: none; }
.cart-item-variant { font-size: 0.75rem; color: #999; margin-top: 0.2rem; }
.qty-control { display: flex; align-items: center; gap: 0.5rem; border: 1px solid #ddd; width: fit-content; }
.qty-control button { background: none; border: none; padding: 0.3rem 0.6rem; cursor: pointer; font-size: 1rem; }
.cart-remove { color: #bbb; text-decoration: none; font-size: 0.9rem; }
.cart-remove:hover { color: #111; }
.cart-summary { background: #f7f7f5; padding: 2rem; }
.cart-summary-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 1.5rem; }
.cart-summary-row { display: flex; justify-content: space-between; font-family: 'Inter', sans-serif; font-size: 0.9rem; margin-bottom: 0.75rem; }
.cart-summary-note { font-family: 'Inter', sans-serif; font-size: 0.75rem; color: #999; margin-bottom: 1.5rem; }
.btn-checkout { display: block; width: 100%; padding: 1rem; background: #111; color: #fff; font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; border: none; cursor: pointer; text-align: center; text-decoration: none; margin-bottom: 0.75rem; }
.btn-checkout:hover { background: #333; }
.btn-continue-shopping { display: block; text-align: center; font-family: 'Inter', sans-serif; font-size: 0.8rem; color: #999; text-decoration: none; }
.cart-empty { text-align: center; padding: 5rem 0; font-family: 'Inter', sans-serif; }
@media (max-width: 768px) { .cart-layout { grid-template-columns: 1fr; } }

/* ── Search Page ── */
.search-page-wrap { max-width: 1280px; margin: 0 auto; padding: 3rem 2.5rem; }
.search-hero { text-align: center; padding: 4rem 0 3rem; }
.search-title { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 1.5rem; }
.search-form-large { display: flex; max-width: 600px; margin: 0 auto; border: 1px solid #111; }
.search-input-large { flex: 1; padding: 0.9rem 1.2rem; font-family: 'Inter', sans-serif; font-size: 0.9rem; border: none; outline: none; }
.search-submit { padding: 0.9rem 1.5rem; background: #111; color: #fff; font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border: none; cursor: pointer; }
.search-count { font-family: 'Inter', sans-serif; font-size: 0.85rem; color: #999; margin-bottom: 2rem; }
.search-no-results { font-family: 'Inter', sans-serif; color: #999; text-align: center; padding: 3rem; }

/* ── 404 Page ── */
.not-found-wrap { display: flex; align-items: center; justify-content: center; min-height: 60vh; text-align: center; }
.not-found-code { font-family: 'Inter', sans-serif; font-size: 6rem; font-weight: 700; color: #f0f0f0; line-height: 1; }
.not-found-title { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 1rem; }
.not-found-text { font-family: 'Inter', sans-serif; color: #999; margin-bottom: 2rem; }

/* ── Fade in animation ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
