/** Shopify CDN: Minification failed

Line 1579:2 All "@import" rules must come first
Line 2050:2 All "@import" rules must come first

**/
/* START_SECTION:editorial-lookbook (INDEX:11) */
/* ============================================
     CASA CREW — EDITORIAL LOOKBOOK
     ============================================ */
  @import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,ital,wght@9..144,0,300;9..144,0,400;9..144,1,300&family=JetBrains+Mono:wght@400;500&display=swap');

  .cc-lookbook {
    --cc-off-white: #F4F1EC;
    --cc-stone: #D9D4CB;
    --cc-stone-soft: #E8E3DA;
    --cc-grey-soft: #A8A39B;
    --cc-grey-mid: #6E6A63;
    --cc-charcoal: #2A2A2A;
    --cc-ink: #0E0E0E;
    --cc-font-display: 'Fraunces', 'Times New Roman', serif;
    --cc-font-mono: 'JetBrains Mono', 'Courier New', monospace;
    --cc-gutter: clamp(1.25rem, 3.5vw, 2.5rem);
    --cc-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --cc-ease-out: cubic-bezier(0.16, 1, 0.3, 1);

    background: var(--cc-off-white);
    color: var(--cc-ink);
    padding: clamp(3rem, 7vw, 5rem) var(--cc-gutter) clamp(2.5rem, 5vw, 4rem);
    position: relative;
    font-family: var(--font-body--family, 'Inter', sans-serif);
  }

  /* ===== Header ===== */
  .cc-lookbook__header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: end;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    padding-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
    border-bottom: 1px solid var(--cc-stone);
  }

  @media (max-width: 900px) {
    .cc-lookbook__header {
      grid-template-columns: 1fr;
      gap: 1.25rem;
      align-items: start;
    }
  }

  /* Top metadata row (edition / season / frames) */
  .cc-lookbook__header-meta {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    line-height: 1;
  }

  .cc-lookbook__meta-item {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    font-family: var(--cc-font-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1;
  }

  .cc-lookbook__meta-label {
    color: var(--cc-grey-soft);
    font-size: 9px;
  }

  .cc-lookbook__meta-value {
    color: var(--cc-ink);
    font-weight: 500;
  }

  .cc-lookbook__meta-divider {
    width: 1px;
    height: 24px;
    background: var(--cc-stone);
  }

  /* Main title block */
  .cc-lookbook__header-main {
    display: flex;
    flex-direction: column;
  }

  .cc-lookbook__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--cc-font-mono);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--cc-grey-mid);
    margin-bottom: 1rem;
  }

  .cc-lookbook__eyebrow-num { color: var(--cc-grey-soft); }

  .cc-lookbook__title {
    font-family: var(--cc-font-display);
    font-weight: 300;
    font-size: clamp(2rem, 5.5vw, 4rem);
    line-height: 0.96;
    letter-spacing: -0.03em;
    margin: 0;
    text-wrap: balance;
  }

  .cc-lookbook__title-accent {
    font-style: italic;
    font-weight: 300;
    opacity: 0.85;
  }

  .cc-lookbook__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--cc-font-mono);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--cc-ink);
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--cc-ink);
    transition: gap 280ms var(--cc-ease);
    align-self: end;
    white-space: nowrap;
  }

  .cc-lookbook__cta:hover { gap: 16px; }

  /* ===== Grids: layout variants ===== */
  .cc-lookbook__grid {
    display: grid;
    gap: clamp(0.75rem, 1.5vw, 1.25rem);
  }

  /* Asymmetric: large left, two stacked right (3 frames) */
  .cc-lookbook[data-layout='asymmetric'] .cc-lookbook__grid {
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: clamp(560px, 78vh, 880px);
  }

  .cc-lookbook[data-layout='asymmetric'] .cc-frame:nth-child(1) {
    grid-row: span 2;
  }

  /* Even 3-up (3 frames in a row) */
  .cc-lookbook[data-layout='3-up'] .cc-lookbook__grid {
    grid-template-columns: repeat(3, 1fr);
    height: clamp(420px, 60vh, 640px);
  }

  /* Featured row (1 large + 3 below = 4 frames) */
  .cc-lookbook[data-layout='featured-row'] .cc-lookbook__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1.2fr 1fr;
    height: clamp(640px, 90vh, 1000px);
  }

  .cc-lookbook[data-layout='featured-row'] .cc-frame:nth-child(1) {
    grid-column: span 3;
  }

  /* 2-up wide (2 frames, side by side) */
  .cc-lookbook[data-layout='2-up'] .cc-lookbook__grid {
    grid-template-columns: 1fr 1fr;
    height: clamp(440px, 65vh, 700px);
  }

  /* Tile size override (per-block control) */
  .cc-frame[data-tile-size='wide'] {
    grid-column: span 2;
  }

  .cc-frame[data-tile-size='tall'] {
    grid-row: span 2;
  }

  /* ===== Mobile: flatten everything to single column ===== */
  @media (max-width: 768px) {
    .cc-lookbook__grid {
      grid-template-columns: 1fr !important;
      grid-template-rows: none !important;
      height: auto !important;
    }

    .cc-frame {
      grid-column: span 1 !important;
      grid-row: span 1 !important;
      aspect-ratio: 4 / 5;
    }
  }

  /* ===== Frame ===== */
  .cc-frame {
    position: relative;
    overflow: hidden;
    background: var(--cc-stone-soft);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 800ms var(--cc-ease-out),
                transform 800ms var(--cc-ease-out);
    transition-delay: var(--cc-stagger);
  }

  .cc-lookbook[data-cc-visible='true'] .cc-frame {
    opacity: 1;
    transform: translateY(0);
  }

  .cc-frame__link {
    position: absolute;
    inset: 0;
    display: block;
    text-decoration: none;
    color: var(--cc-off-white);
  }

  /* ===== Image ===== */
  .cc-frame__media {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }

  .cc-frame__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1200ms var(--cc-ease);
    transform: scale(1.02);
  }

  /* Subtle gradient for text legibility */
  .cc-frame__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(14, 14, 14, 0.55) 0%,
      rgba(14, 14, 14, 0.18) 35%,
      rgba(14, 14, 14, 0) 60%,
      rgba(14, 14, 14, 0.12) 100%
    );
    z-index: 2;
    pointer-events: none;
    transition: opacity 480ms var(--cc-ease);
  }

  /* Hover: subtle Ken Burns + overlay deepen */
  @media (hover: hover) {
    .cc-frame__link:hover .cc-frame__img {
      transform: scale(1.06);
    }
    .cc-frame__link:hover .cc-frame__overlay {
      opacity: 1.15;
    }
    .cc-frame__link:hover .cc-frame__cta-arrow {
      transform: translateX(4px);
    }
  }

  /* ===== Frame number (top-left) ===== */
  .cc-frame__number {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 5;
    font-family: var(--cc-font-mono);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(244, 241, 236, 0.85);
    line-height: 1;
    background: rgba(14, 14, 14, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 6px 10px;
  }

  /* ===== Frame meta (top-right) ===== */
  .cc-frame__meta {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;
    font-family: var(--cc-font-mono);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(244, 241, 236, 0.85);
    line-height: 1;
    text-align: right;
    max-width: 60%;
  }

  /* ===== Bottom content ===== */
  .cc-frame__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    padding: clamp(1rem, 2vw, 1.75rem);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--cc-off-white);
  }

  .cc-frame__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--cc-font-mono);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    line-height: 1;
    opacity: 0.9;
    width: fit-content;
  }

  .cc-frame__eyebrow-dot {
    width: 5px;
    height: 5px;
    background: currentColor;
    border-radius: 50%;
    animation: cc-frame-pulse 2.4s ease-in-out infinite;
  }

  @keyframes cc-frame-pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.4; }
  }

  .cc-frame__headline {
    font-family: var(--cc-font-display);
    font-weight: 300;
    font-size: clamp(1.25rem, 2.4vw, 2.25rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0;
    text-wrap: balance;
    max-width: 18ch;
  }

  /* Larger headline for wide / tall tiles */
  .cc-frame[data-tile-size='wide'] .cc-frame__headline,
  .cc-frame[data-tile-size='tall'] .cc-frame__headline,
  .cc-lookbook[data-layout='asymmetric'] .cc-frame:first-child .cc-frame__headline,
  .cc-lookbook[data-layout='featured-row'] .cc-frame:first-child .cc-frame__headline {
    font-size: clamp(1.75rem, 3.4vw, 3rem);
  }

  .cc-frame__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--cc-font-mono);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    line-height: 1;
    margin-top: 0.5rem;
    padding-bottom: 4px;
    border-bottom: 1px solid currentColor;
    width: fit-content;
  }

  .cc-frame__cta-arrow {
    transition: transform 280ms var(--cc-ease);
  }

  /* ===== Footer caption ===== */
  .cc-lookbook__footer {
    margin-top: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
  }

  .cc-lookbook__footer-text {
    font-family: var(--cc-font-mono);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--cc-grey-mid);
  }

  /* Reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .cc-frame,
    .cc-frame__img,
    .cc-frame__cta-arrow,
    .cc-frame__eyebrow-dot {
      transition: none !important;
      animation: none !important;
      opacity: 1 !important;
      transform: none !important;
    }
  }
/* END_SECTION:editorial-lookbook */
/* START_SECTION:featured-collection-cc (INDEX:14) */
.cc-fc {
    --bg: #F4F1EC; --ink: #0E0E0E; --stone: #D9D4CB;
    --grey: #6E6A63; --ember: #C25B4A;
    --serif: 'Fraunces', Georgia, serif;
    --mono: 'JetBrains Mono', monospace;
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --gutter: clamp(20px, 4vw, 48px);
    background: var(--bg); color: var(--ink);
    padding: clamp(56px, 7vw, 96px) 0 clamp(40px, 5vw, 64px);
    font-family: var(--font-body--family, system-ui, sans-serif);
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
  }

  /* === Header === */
  .cc-fc__head {
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: clamp(20px, 3vw, 40px);
    padding: 0 var(--gutter) clamp(28px, 4vw, 44px);
  }
  .cc-fc__head-text { display: flex; flex-direction: column; gap: 12px; }

  .cc-fc__eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--mono); font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.18em; color: var(--grey);
  }
  .cc-fc__dot {
    display: inline-block; width: 6px; height: 6px;
    background: var(--ember); border-radius: 50%;
    animation: cc-fc-pulse 1.6s ease-in-out infinite;
  }
  @keyframes cc-fc-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
  }

  .cc-fc__heading {
    font-family: var(--serif); font-weight: 300;
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 0.95; letter-spacing: -0.03em;
    margin: 0;
  }
  .cc-fc__heading em { font-style: italic; font-weight: 300; }

  .cc-fc__head-actions {
    display: flex; align-items: center; gap: 24px; flex-shrink: 0;
  }

  .cc-fc__view-all {
    font-family: var(--mono); font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.18em;
    color: var(--ink); text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 3px;
    transition: gap 220ms var(--ease);
  }
  .cc-fc__view-all:hover { gap: 12px; }

  .cc-fc__nav {
    display: inline-flex; align-items: center;
    border: 1px solid var(--stone); border-radius: 999px;
    padding: 4px;
  }
  .cc-fc__arrow {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    background: transparent; border: 0; border-radius: 999px;
    color: var(--ink); cursor: pointer;
    transition: background 200ms var(--ease), color 200ms var(--ease), opacity 200ms var(--ease);
  }
  .cc-fc__arrow:hover:not(:disabled) { background: var(--ink); color: var(--bg); }
  .cc-fc__arrow:disabled { opacity: 0.25; cursor: not-allowed; }
  .cc-fc__nav-divider { width: 1px; height: 16px; background: var(--stone); }

  /* === Rail === */
  .cc-fc__rail {
    display: flex; gap: 16px;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0 var(--gutter) 8px;
    scroll-padding-left: var(--gutter);
  }
  .cc-fc__rail::-webkit-scrollbar { display: none; }

  /* === Card === */
  .cc-fc__card {
    flex: 0 0 auto;
    width: 75vw;
    scroll-snap-align: start;
    display: flex; flex-direction: column; gap: 12px;
  }
  @media (min-width: 640px)  { .cc-fc__card { width: 320px; } }
  @media (min-width: 1100px) { .cc-fc__card { width: 360px; } }

  /* === Media === */
  .cc-fc__media {
    position: relative; display: block;
    aspect-ratio: 1 / 1;
    background: var(--stone); overflow: hidden;
    color: inherit; text-decoration: none;
  }
  .cc-fc__img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: opacity 380ms var(--ease), transform 700ms var(--ease);
  }
  .cc-fc__img--secondary { opacity: 0; }
  .cc-fc__card:hover .cc-fc__img--primary { opacity: 0; transform: scale(1.02); }
  .cc-fc__card:hover .cc-fc__img--secondary { opacity: 1; transform: scale(1.02); }

  /* === Badges === */
  .cc-fc__badges {
    position: absolute; top: 12px; right: 12px;
    display: flex; flex-direction: column; gap: 6px; align-items: flex-end;
    z-index: 2;
  }
  .cc-fc__badge {
    padding: 5px 10px; border-radius: 999px;
    font-family: var(--mono); font-size: 10px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.16em; line-height: 1;
  }
  .cc-fc__badge--new { background: var(--bg); color: var(--ink); border: 1px solid var(--ink); }
  .cc-fc__badge--sale { background: var(--ember); color: var(--bg); }
  .cc-fc__badge--soldout {
    background: rgba(14,14,14,0.86); color: var(--bg);
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  }

  /* === Quick add (inside media, anchored to bottom) === */
  .cc-fc__quickadd {
    position: absolute; left: 12px; right: 12px; bottom: 12px;
    z-index: 3;
    display: inline-flex; align-items: center; justify-content: space-between;
    padding: 12px 16px;
    background: rgba(244,241,236,0.95);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    color: var(--ink);
    border: 0; border-radius: 999px;
    font-family: var(--mono);
    font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.16em; line-height: 1;
    cursor: pointer;
    opacity: 0; transform: translateY(8px);
    transition: opacity 280ms var(--ease), transform 280ms var(--ease),
                background 220ms var(--ease), color 220ms var(--ease);
  }
  .cc-fc__card:hover .cc-fc__quickadd,
  .cc-fc__quickadd:focus-visible { opacity: 1; transform: translateY(0); }
  .cc-fc__quickadd:hover { background: var(--ink); color: var(--bg); }
  .cc-fc__quickadd-plus {
    display: inline-flex; align-items: center; justify-content: center;
    width: 18px; height: 18px;
    font-size: 14px; line-height: 1;
    transition: transform 220ms var(--ease);
  }
  .cc-fc__quickadd:hover .cc-fc__quickadd-plus { transform: rotate(90deg); }
  /* Always visible on touch */
  @media (hover: none) {
    .cc-fc__quickadd { opacity: 1; transform: translateY(0); }
  }

  /* === Meta === */
  .cc-fc__meta {
    display: flex; flex-direction: column; gap: 6px;
    padding: 4px 0;
  }
  .cc-fc__title {
    font-size: 14px; font-weight: 500; line-height: 1.35;
    color: var(--ink); text-decoration: none;
    overflow: hidden; text-overflow: ellipsis;
    display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical;
    transition: color 200ms var(--ease);
  }
  .cc-fc__title:hover { color: var(--ember); }

  .cc-fc__price {
    font-family: var(--mono); font-size: 12px; line-height: 1;
    font-variant-numeric: tabular-nums; color: var(--ink);
    display: inline-flex; align-items: baseline; gap: 8px;
  }
  .cc-fc__price-now { font-weight: 500; }
  .cc-fc__price-was { color: var(--grey); opacity: 0.6; font-size: 0.9em; }

  .cc-fc__empty {
    padding: 40px var(--gutter);
    color: var(--grey); font-size: 14px;
    border: 1px dashed var(--stone); margin: 0 var(--gutter);
  }

  @media (max-width: 768px) {
    .cc-fc__head { flex-direction: column; align-items: flex-start; }
    .cc-fc__head-actions { width: 100%; justify-content: space-between; }
    .cc-fc__nav { display: none; }
  }
/* END_SECTION:featured-collection-cc */
/* START_SECTION:header (INDEX:20) */
.cc, header-component.cc {
    --bg: #F4F1EC; --ink: #0E0E0E; --stone: #D9D4CB; --stone-soft: #E8E3DA;
    --grey: #6E6A63; --ember: #C25B4A;
    --serif: 'Fraunces', Georgia, serif;
    --mono: 'JetBrains Mono', monospace;
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --bar-h: 68px;
    display: block; position: relative; z-index: 100;
    font-family: var(--font-body--family, system-ui, sans-serif);
    color: #F4F1EC !important;
    background: #0E0E0E !important;
    background-color: #0E0E0E !important;
  }
  .cc .cc__bar,
  header-component.cc .cc__bar {
    background: #0E0E0E !important;
    background-color: #0E0E0E !important;
  }
  /* Transparent mode disabled — header is always solid black */
  .cc--transparent {
    position: relative !important;
    background: #0E0E0E !important;
    color: #F4F1EC !important;
  }

  /* Sticky behaviour — stays black on scroll */
  .cc[data-sticky='true'] {
    position: fixed; top: 0; left: 0; right: 0;
    background: var(--ink); color: var(--bg);
    box-shadow: 0 1px 0 rgba(244,241,236,0.08);
    transform: translateY(0);
    transition: transform 320ms var(--ease);
    z-index: 999;
  }
  .cc[data-sticky='true'][data-hidden='true'] { transform: translateY(-100%); }
  .cc[data-sticky='true'] .cc__bar { border-bottom-color: transparent; }
  .cc__icon-btn:hover,
  .cc__burger:hover { background: rgba(244,241,236,0.12); }
  /* Cart count: light pill on dark bg */
  .cc__count { background: var(--bg); color: var(--ink); }

  /* Announce bar — light bg with dark text now (it sits ABOVE the black bar so we want contrast) */
  .cc__announce {
    text-align: center;
    padding: 9px 16px;
    font-family: var(--mono); font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.16em;
    background: var(--bg); color: var(--ink);
    line-height: 1.2;
    border-bottom: 1px solid var(--stone);
  }
  .cc__announce a { color: inherit; text-decoration: none; }
  .cc__announce a:hover { opacity: 0.7; }
  /* When sticky, hide the announcement bar */
  .cc[data-sticky='true'] .cc__announce { display: none; }

  /* Bar */
  .cc__bar {
    height: var(--bar-h);
    border-bottom: 1px solid transparent;
    transition: border-color 220ms var(--ease);
  }

  .cc__bar-inner {
    height: 100%;
    max-width: 1440px; margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(16px, 3vw, 40px);
  }

  /* Logo */
  .cc__logo {
    color: inherit; text-decoration: none;
    font-family: var(--serif); font-size: 1.5rem; line-height: 1;
    letter-spacing: -0.025em;
    display: inline-flex; align-items: center;
  }
  .cc__logo em { font-style: italic; font-weight: 300; margin-left: 3px; }
  .cc__logo img { display: block; }

  /* Nav */
  .cc__nav { justify-self: center; }
  .cc__nav ul {
    display: flex; align-items: center; gap: clamp(20px, 2.4vw, 36px);
    list-style: none; margin: 0; padding: 0;
  }
  .cc__nav a {
    position: relative;
    color: inherit; text-decoration: none;
    font-family: var(--mono); font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.18em;
    padding: 6px 0;
    transition: color 200ms var(--ease);
  }
  .cc__nav a::after {
    content: '';
    position: absolute; left: 0; right: 0; bottom: 0;
    height: 1px; background: currentColor;
    transform: scaleX(0); transform-origin: left;
    transition: transform 280ms var(--ease);
  }
  .cc__nav a:hover::after,
  .cc__nav a[aria-current='page']::after {
    transform: scaleX(1);
  }

  /* Desktop nav: items with submenu */
  .cc__nav-item { position: relative; }
  .cc__nav-item--has-sub > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .cc__nav-caret {
    display: inline-flex;
    align-items: center;
    transition: transform 240ms var(--ease);
    opacity: 0.7;
  }
  .cc__nav-item--has-sub:hover .cc__nav-caret,
  .cc__nav-item--has-sub:focus-within .cc__nav-caret {
    transform: rotate(180deg);
    opacity: 1;
  }

  /* Submenu dropdown panel */
  .cc__nav-sub {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 220px;
    background: rgba(14,14,14,0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(244,241,236,0.1);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 240ms var(--ease), transform 280ms var(--ease), visibility 240ms;
    z-index: 60;
  }
  /* Invisible hover bridge so mouse can travel from link → submenu without losing hover */
  .cc__nav-sub::before {
    content: '';
    position: absolute;
    top: -8px; left: 0; right: 0;
    height: 8px;
  }

  .cc__nav-item--has-sub:hover > .cc__nav-sub,
  .cc__nav-item--has-sub:focus-within > .cc__nav-sub {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .cc__nav-sub ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .cc__nav-sub a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 16px !important;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(244,241,236,0.7) !important;
    text-decoration: none;
    border-radius: 4px;
    white-space: nowrap;
    transition: background 200ms var(--ease), color 200ms var(--ease), padding-left 200ms var(--ease) !important;
  }
  .cc__nav-sub a::after {
    display: none !important;
  }
  .cc__nav-sub a:hover,
  .cc__nav-sub a[aria-current='page'] {
    color: var(--bg) !important;
    background: rgba(244,241,236,0.06);
    padding-left: 20px !important;
  }
  .cc__nav-sub-arrow {
    color: rgba(244,241,236,0.3);
    font-size: 13px;
    transition: transform 200ms var(--ease), color 200ms var(--ease);
  }
  .cc__nav-sub a:hover .cc__nav-sub-arrow {
    color: var(--ember);
    transform: translateX(3px);
  }

  @media (max-width: 900px) { .cc__nav { display: none; } }

  /* Icons */
  .cc__icons {
    display: inline-flex; align-items: center; gap: 4px;
    justify-self: end;
  }

  .cc__icon-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; padding: 0;
    background: transparent; border: 0; border-radius: 999px;
    color: inherit; cursor: pointer; text-decoration: none;
    transition: background 180ms var(--ease);
  }
  .cc__icon-btn:hover { background: rgba(244,241,236,0.12); }
  .cc__icon-btn--bag { width: auto; padding: 0 12px 0 10px; gap: 6px; }

  .cc__count {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 20px; height: 20px; padding: 0 6px; border-radius: 999px;
    background: var(--bg); color: var(--ink);
    font-family: var(--mono); font-size: 10px; font-weight: 500;
    line-height: 1; font-variant-numeric: tabular-nums;
    transition: transform 200ms var(--ease), opacity 200ms var(--ease);
  }
  .cc__count[data-empty='true'] { transform: scale(0); width: 0; min-width: 0; padding: 0; margin-left: -6px; opacity: 0; }
  .cc__count[data-bumped='true'] { animation: cc-bump 320ms var(--ease); }
  @keyframes cc-bump {
    0% { transform: scale(1); }
    50% { transform: scale(1.25); }
    100% { transform: scale(1); }
  }

  /* Burger */
  .cc__burger {
    display: none;
    width: 38px; height: 38px; padding: 0;
    background: transparent; border: 0; border-radius: 999px;
    color: inherit; cursor: pointer;
    align-items: center; justify-content: center;
    flex-direction: column; gap: 4px;
    transition: background 180ms var(--ease);
  }
  .cc__burger:hover { background: rgba(244,241,236,0.12); }
  .cc__burger span {
    display: block;
    width: 18px; height: 1.5px;
    background: currentColor;
    transition: transform 280ms var(--ease), opacity 200ms var(--ease), width 280ms var(--ease);
  }
  .cc__burger span:nth-child(2) { width: 12px; }
  .cc__burger span:nth-child(3) { width: 8px; }

  @media (max-width: 900px) {
    .cc__burger { display: inline-flex; }
    .cc__bar-inner { grid-template-columns: auto 1fr; }
    .cc__icons { gap: 0; }
  }

  body[data-cc-menu-open='true'] .cc__burger span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
  body[data-cc-menu-open='true'] .cc__burger span:nth-child(2) { opacity: 0; width: 18px; }
  body[data-cc-menu-open='true'] .cc__burger span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); width: 18px; }

  body[data-cc-menu-open='true'],
  body[data-cc-search-open='true'] { overflow: hidden; }

  /* ============================================================
     MOBILE DROP-DOWN MENU (attached to header, slides down)
     ============================================================ */
  /* === MOBILE DROP-DOWN MENU === */
  .cc__drop {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #0E0E0E !important;
    border-bottom: 1px solid rgba(244,241,236,0.08);
    box-shadow: 0 12px 24px rgba(0,0,0,0.4);
    overflow: hidden;
    max-height: 0;
    transition: max-height 480ms var(--ease);
    pointer-events: none;
    z-index: 50;
    color: var(--bg);
  }
  .cc__drop[data-open='true'] {
    max-height: calc(100vh - var(--bar-h));
    pointer-events: auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* === TYPEWRITER ANNOUNCEMENT BAR === */
  .cc__drop-announce {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 18px;
    border-bottom: 1px solid rgba(244,241,236,0.08);
    background: linear-gradient(90deg, rgba(194,91,74,0.08), transparent 60%);
    font-family: var(--mono);
    font-size: 11px;
    line-height: 1;
    overflow: hidden;
    white-space: nowrap;
  }
  .cc__drop-announce-mark {
    display: inline-block; flex-shrink: 0;
    width: 6px; height: 6px;
    background: var(--ember);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(194,91,74,0.6);
    animation: cc-drop-pulse 1.6s ease-in-out infinite;
  }
  @keyframes cc-drop-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(194,91,74,0.6); }
    50%      { box-shadow: 0 0 0 8px rgba(194,91,74,0); }
  }
  .cc__drop-announce-label {
    flex-shrink: 0;
    color: var(--ember);
    font-weight: 500;
    letter-spacing: 0.2em;
    font-size: 9.5px;
    padding-right: 10px;
    border-right: 1px solid rgba(244,241,236,0.15);
  }
  .cc__drop-announce-track {
    flex: 1 1 auto;
    display: inline-flex; align-items: center;
    overflow: hidden;
    min-width: 0;
  }
  .cc__drop-announce-text {
    color: rgba(244,241,236,0.85);
    letter-spacing: 0.04em;
    font-size: 11px;
    line-height: 1;
  }
  .cc__drop-announce-cursor {
    display: inline-block;
    width: 7px; height: 12px;
    background: var(--ember);
    margin-left: 3px;
    flex-shrink: 0;
    animation: cc-drop-blink 1s steps(2) infinite;
  }
  @keyframes cc-drop-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }

  /* === QUICK ACTION ICONS === */
  .cc__drop-quick {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    border-bottom: 1px solid rgba(244,241,236,0.08);
    background: rgba(244,241,236,0.02);
  }
  .cc__drop-quick-item {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    padding: 14px 6px;
    background: transparent;
    border: 0;
    border-right: 1px solid rgba(244,241,236,0.06);
    color: var(--bg);
    cursor: pointer;
    text-decoration: none;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    line-height: 1;
    transition: background 200ms var(--ease), color 200ms var(--ease);
  }
  .cc__drop-quick-item:last-child { border-right: 0; }
  .cc__drop-quick-item:hover,
  .cc__drop-quick-item:active {
    background: rgba(244,241,236,0.04);
    color: var(--ember);
  }
  .cc__drop-quick-item svg {
    color: rgba(244,241,236,0.7);
    transition: color 200ms var(--ease);
  }
  .cc__drop-quick-item:hover svg,
  .cc__drop-quick-item:active svg {
    color: var(--ember);
  }
  .cc__drop-quick-count {
    color: var(--ember);
    font-style: normal;
    font-weight: 500;
    margin-left: 2px;
  }

  /* === MAIN NAV === */
  .cc__drop-nav { padding: 4px 0 8px; }
  .cc__drop-nav ol { list-style: none; padding: 0; margin: 0; }
  .cc__drop-item {
    border-bottom: 1px solid rgba(244,241,236,0.05);
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 320ms var(--ease), transform 320ms var(--ease);
    transition-delay: calc(var(--i) * 35ms + 80ms);
  }
  .cc__drop[data-open='true'] .cc__drop-item {
    opacity: 1; transform: translateY(0);
  }
  .cc__drop-item:last-child { border-bottom: 0; }

  .cc__drop-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 11px 18px;
    color: var(--bg) !important;
    text-decoration: none;
    font-family: var(--serif);
    font-weight: 300;
    font-size: 1.25rem;
    line-height: 1.1;
    letter-spacing: -0.015em;
    transition: background 200ms var(--ease), color 200ms var(--ease);
  }
  .cc__drop-row:hover,
  .cc__drop-row[aria-current='page'] {
    background: rgba(244,241,236,0.04) !important;
  }
  .cc__drop-num {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    color: rgba(244,241,236,0.4) !important;
    letter-spacing: 0.18em;
    line-height: 1;
  }
  .cc__drop-arrow {
    font-family: var(--mono);
    font-size: 13px;
    color: rgba(244,241,236,0.4);
    transition: transform 220ms var(--ease), color 220ms var(--ease);
  }
  .cc__drop-row:hover .cc__drop-arrow {
    transform: translateX(3px);
    color: var(--ember);
  }

  /* === SUBMENUS === */
  .cc__drop-sub {
    list-style: none;
    padding: 0 18px 8px 50px;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0 14px;
  }
  .cc__drop-sub li {
    display: inline-flex;
  }
  .cc__drop-sub a {
    display: inline-block;
    padding: 4px 0;
    color: rgba(244,241,236,0.55) !important;
    text-decoration: none;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    transition: color 180ms var(--ease);
  }
  .cc__drop-sub a:hover,
  .cc__drop-sub a:active {
    color: var(--ember) !important;
  }

  /* === FOOTER === */
  .cc__drop-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    padding: 14px 18px 18px;
    border-top: 1px solid rgba(244,241,236,0.08) !important;
    background: rgba(244,241,236,0.015);
  }
  .cc__drop-social {
    display: inline-flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .cc__drop-social a {
    display: inline-flex; align-items: center; gap: 6px;
    color: rgba(244,241,236,0.7) !important;
    text-decoration: none;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: color 200ms var(--ease);
  }
  .cc__drop-social a:hover { color: var(--ember) !important; }
  .cc__drop-foot-meta {
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(244,241,236,0.35);
  }

  /* Hide on desktop — main nav is in the bar */
  @media (min-width: 901px) {
    .cc__drop { display: none; }
  }

  @media (prefers-reduced-motion: reduce) {
    .cc__drop, .cc__drop-item { transition-duration: 0.01ms !important; }
  }


  /* ============================================================
     SEARCH DRAWER
     ============================================================ */
  .cc-search {
    --bg: #F4F1EC; --ink: #0E0E0E; --stone: #D9D4CB; --grey: #6E6A63;
    --serif: 'Fraunces', Georgia, serif;
    --mono: 'JetBrains Mono', monospace;
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    position: fixed; inset: 0; z-index: 2147483000;
    visibility: hidden; pointer-events: none;
    font-family: var(--font-body--family, system-ui, sans-serif);
  }
  .cc-search[data-open='true'] { visibility: visible; pointer-events: auto; }
  .cc-search__bg {
    position: absolute; inset: 0;
    background: rgba(14,14,14,0.5);
    opacity: 0; transition: opacity 280ms var(--ease);
  }
  .cc-search[data-open='true'] .cc-search__bg { opacity: 1; }
  .cc-search__panel {
    position: absolute; top: 0; left: 0; right: 0;
    background: var(--bg); color: var(--ink);
    transform: translateY(-100%);
    transition: transform 380ms var(--ease);
    max-height: 92vh; overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .cc-search[data-open='true'] .cc-search__panel { transform: translateY(0); }

  .cc-search__top {
    display: flex; justify-content: space-between; align-items: center;
    height: var(--bar-h, 68px);
    padding: 0 clamp(20px, 4vw, 48px);
    border-bottom: 1px solid var(--stone);
  }
  .cc-search__label {
    font-family: var(--mono); font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.18em; color: var(--grey);
  }
  .cc-search__close {
    width: 38px; height: 38px;
    background: transparent; border: 0; border-radius: 999px;
    color: var(--ink); cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background 180ms var(--ease), transform 280ms var(--ease);
  }
  .cc-search__close:hover { background: rgba(14,14,14,0.06); transform: rotate(90deg); }

  .cc-search__form {
    display: flex; align-items: center; gap: 14px;
    padding: clamp(24px, 4vw, 36px) clamp(20px, 4vw, 48px);
    border-bottom: 1px solid var(--stone);
  }
  .cc-search__icon { color: var(--grey); flex-shrink: 0; }
  .cc-search__input {
    flex: 1; background: transparent; border: 0; color: var(--ink);
    font-family: var(--serif); font-weight: 300;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    letter-spacing: -0.02em;
    outline: none; min-width: 0;
  }
  .cc-search__input::placeholder { color: var(--grey); opacity: 0.7; }
  .cc-search__submit {
    background: transparent; border: 0; color: var(--ink); cursor: pointer;
    font-family: var(--mono); font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.18em;
    padding: 8px 12px;
    transition: gap 200ms var(--ease), opacity 200ms var(--ease);
    white-space: nowrap;
  }
  .cc-search__submit:hover { opacity: 0.7; }

  .cc-search__results { padding: 0 clamp(20px, 4vw, 48px); }
  .cc-search__results:empty { display: none; }
  .cc-search__result {
    display: flex; gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--stone);
    color: var(--ink); text-decoration: none;
    transition: padding-left 200ms var(--ease);
  }
  .cc-search__result:hover { padding-left: 6px; }
  .cc-search__result-img {
    width: 64px; height: 64px; flex-shrink: 0;
    background: var(--stone); overflow: hidden;
  }
  .cc-search__result-img img { width: 100%; height: 100%; object-fit: cover; }
  .cc-search__result-meta {
    flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 4px;
    min-width: 0;
  }
  .cc-search__result-title {
    font-size: 14px; font-weight: 500; line-height: 1.3;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  }
  .cc-search__result-price {
    font-family: var(--mono); font-size: 11px; color: var(--grey);
  }
  .cc-search__empty {
    padding: 32px 0; text-align: center;
    color: var(--grey); font-family: var(--mono);
    font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em;
  }

  .cc-search__default[hidden] { display: none; }
  .cc-search__section {
    padding: 20px clamp(20px, 4vw, 48px);
    border-bottom: 1px solid var(--stone);
  }
  .cc-search__section:last-child { border-bottom: 0; }
  .cc-search__section-label {
    font-family: var(--mono); font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.18em; color: var(--grey);
    display: block; margin-bottom: 14px;
  }
  .cc-search__chips { display: flex; flex-wrap: wrap; gap: 6px; }
  .cc-search__chip {
    padding: 8px 14px; border: 1px solid var(--stone);
    color: var(--ink); text-decoration: none;
    font-family: var(--mono); font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.14em;
    border-radius: 999px;
    transition: background 200ms var(--ease), color 200ms var(--ease);
  }
  .cc-search__chip:hover { background: var(--ink); color: var(--bg); }

  .cc-search__products {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  }
  @media (min-width: 600px) {
    .cc-search__products { grid-template-columns: repeat(4, 1fr); }
  }
  .cc-search__product {
    display: flex; flex-direction: column; gap: 6px;
    color: var(--ink); text-decoration: none;
    transition: transform 280ms var(--ease);
  }
  .cc-search__product:hover { transform: translateY(-2px); }
  .cc-search__product-img {
    aspect-ratio: 1/1; background: var(--stone); overflow: hidden;
  }
  .cc-search__product-img img { width: 100%; height: 100%; object-fit: cover; }
  .cc-search__product-title {
    font-size: 13px; font-weight: 500; line-height: 1.3;
    overflow: hidden; text-overflow: ellipsis;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  }
  .cc-search__product-price {
    font-family: var(--mono); font-size: 11px; color: var(--grey);
  }
/* END_SECTION:header */
/* START_SECTION:hero (INDEX:21) */
.cc-hero {
    --bg: #F4F1EC;
    --ink: #0E0E0E;
    --ember: #C25B4A;
    --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
    --mono: 'JetBrains Mono', 'Courier New', monospace;
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --pad-x: clamp(20px, 5vw, 80px);

    position: relative;
    width: 100%;
    height: 100vh;
    height: 100svh;
    min-height: 640px;
    max-height: 1000px;
    overflow: hidden;
    background: var(--cc-hero-bg, #0E0E0E);
    color: var(--bg);
    font-family: var(--font-body--family, system-ui, sans-serif);
    isolation: isolate;
  }

  .cc-hero * { min-width: 0; }

  /* === MEDIA === */
  .cc-hero__media {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    overflow: hidden;
  }
  .cc-hero__media picture {
    display: block;
    width: 100%; height: 100%;
  }
  .cc-hero__img,
  .cc-hero__video {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.04);
    animation: cc-hero-kenburns 30s var(--ease) forwards;
  }
  @keyframes cc-hero-kenburns {
    0%   { transform: scale(1.04) translate(0, 0); }
    100% { transform: scale(1.0) translate(-0.5%, 0.4%); }
  }

  /* === OVERLAY 1 — overall atmospheric darken === */
  .cc-hero__overlay {
    position: absolute; inset: 0;
    z-index: 1;
    background: linear-gradient(180deg,
      rgba(14,14,14,0.4) 0%,
      rgba(14,14,14,0.2) 30%,
      rgba(14,14,14,0.35) 70%,
      rgba(14,14,14,0.55) 100%
    );
    pointer-events: none;
  }

  /* === OVERLAY 2 — frosted glass rising from bottom === */
  .cc-hero__frost {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 65%;
    z-index: 2;
    pointer-events: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Gradient mask so blur fades to none at the top edge */
    -webkit-mask-image: linear-gradient(180deg,
      transparent 0%,
      rgba(0,0,0,0.3) 25%,
      rgba(0,0,0,0.7) 55%,
      black 100%
    );
    mask-image: linear-gradient(180deg,
      transparent 0%,
      rgba(0,0,0,0.3) 25%,
      rgba(0,0,0,0.7) 55%,
      black 100%
    );
    background: linear-gradient(180deg,
      rgba(14,14,14,0) 0%,
      rgba(14,14,14,0.25) 30%,
      rgba(14,14,14,0.55) 70%,
      rgba(14,14,14,0.85) 100%
    );
  }

  /* === CONTENT === */
  .cc-hero__content {
    position: relative;
    z-index: 5;
    height: 100%;
    padding: 0 var(--pad-x) clamp(56px, 10vh, 120px);
    display: flex; flex-direction: column;
    justify-content: flex-end;
    gap: clamp(20px, 3vw, 32px);
    max-width: 1100px;
  }
  [data-align="center"] .cc-hero__content {
    align-items: center;
    text-align: center;
    margin: 0 auto;
    justify-content: center;
  }
  [data-align="right"] .cc-hero__content {
    align-items: flex-end;
    text-align: right;
    margin-left: auto;
  }

  /* === HEADLINE === */
  .cc-hero__h1 {
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(3.5rem, 11vw, 9rem);
    line-height: 0.86;
    letter-spacing: -0.045em;
    margin: 0;
    text-wrap: balance;
    color: var(--bg);
    display: flex; flex-direction: column;
  }
  .cc-hero__h1 em {
    font-style: italic;
    color: var(--ember);
    font-weight: 300;
  }
  .cc-hero__line {
    display: block;
    overflow: hidden;
  }
  .cc-hero__line-inner {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
    animation: cc-hero-line-rise 1100ms var(--ease-out) forwards;
    animation-delay: var(--line-delay);
    will-change: transform;
  }
  @keyframes cc-hero-line-rise {
    0%   { transform: translateY(110%); opacity: 0; }
    50%  { opacity: 1; }
    100% { transform: translateY(0); opacity: 1; }
  }

  /* === SUBHEAD === */
  .cc-hero__sub {
    margin: 0;
    max-width: 580px;
    font-size: clamp(1rem, 1.5vw, 1.1875rem);
    line-height: 1.55;
    color: rgba(244,241,236,0.85);
    opacity: 0;
    animation: cc-hero-rise 800ms var(--ease) 1100ms forwards;
  }

  /* === CTAs === */
  .cc-hero__ctas {
    display: flex; flex-wrap: wrap; gap: 10px;
    opacity: 0;
    animation: cc-hero-rise 800ms var(--ease) 1300ms forwards;
  }

  .cc-hero__btn {
    position: relative;
    display: inline-flex; align-items: center;
    gap: 12px;
    padding: 18px 34px;
    border-radius: 999px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    line-height: 1;
    text-decoration: none;
    overflow: hidden;
    transition: gap 220ms var(--ease), transform 220ms var(--ease);
    isolation: isolate;
  }
  .cc-hero__btn:hover { gap: 16px; }
  .cc-hero__btn:active { transform: translateY(1px); }

  /* Primary — off-white pill, inverts on hover */
  .cc-hero__btn--primary {
    background: var(--bg);
    color: var(--ink);
    border: 1px solid var(--bg);
  }
  .cc-hero__btn--primary .cc-hero__btn-bg {
    position: absolute; inset: 0;
    background: var(--ink);
    transform: translateY(101%);
    transition: transform 380ms var(--ease-out);
    z-index: -1;
  }
  .cc-hero__btn--primary:hover { color: var(--bg); border-color: var(--ink); }
  .cc-hero__btn--primary:hover .cc-hero__btn-bg { transform: translateY(0); }

  /* Ghost — bordered, frosted */
  .cc-hero__btn--ghost {
    background: rgba(244,241,236,0.04);
    color: var(--bg);
    border: 1px solid rgba(244,241,236,0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .cc-hero__btn--ghost:hover {
    background: var(--bg);
    color: var(--ink);
    border-color: var(--bg);
  }

  /* Label roll-up effect on hover */
  .cc-hero__btn-label {
    position: relative;
    display: inline-block;
    height: 1em;
    overflow: hidden;
  }
  .cc-hero__btn-text {
    display: block;
    transition: transform 380ms var(--ease-out);
  }
  .cc-hero__btn-text--alt {
    position: absolute;
    inset: 0;
    transform: translateY(120%);
  }
  .cc-hero__btn:hover .cc-hero__btn-text { transform: translateY(-120%); }
  .cc-hero__btn:hover .cc-hero__btn-text--alt { transform: translateY(0); }

  .cc-hero__btn-arrow {
    transition: transform 280ms var(--ease);
  }
  .cc-hero__btn:hover .cc-hero__btn-arrow { transform: translateX(4px); }

  /* === ANIMATIONS === */
  @keyframes cc-hero-rise {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* === REDUCED MOTION === */
  @media (prefers-reduced-motion: reduce) {
    .cc-hero *,
    .cc-hero *::before,
    .cc-hero *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
    .cc-hero__line-inner,
    .cc-hero__sub,
    .cc-hero__ctas {
      opacity: 1 !important;
      transform: none !important;
    }
    .cc-hero__img,
    .cc-hero__video { transform: scale(1) !important; }
  }
/* END_SECTION:hero */
/* START_SECTION:marquee-strip (INDEX:31) */
/* ============================================
     CASA CREW — MARQUEE
     ============================================ */
  @import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,ital,wght@9..144,0,300;9..144,0,400;9..144,1,300;9..144,1,400&family=JetBrains+Mono:wght@400;500&display=swap');

  .cc-marquee {
    --cc-off-white: #F4F1EC;
    --cc-stone: #D9D4CB;
    --cc-stone-soft: #E8E3DA;
    --cc-grey-soft: #A8A39B;
    --cc-grey-mid: #6E6A63;
    --cc-ink: #0E0E0E;
    --cc-font-display: 'Fraunces', 'Times New Roman', serif;
    --cc-font-mono: 'JetBrains Mono', 'Courier New', monospace;
    --cc-ease: cubic-bezier(0.22, 0.61, 0.36, 1);

    position: relative;
    overflow: hidden;
    width: 100%;
    line-height: 1;
  }

  /* === Background variants === */
  .cc-marquee[data-bg='off-white'] {
    background: var(--cc-off-white);
    color: var(--cc-ink);
  }

  .cc-marquee[data-bg='stone'] {
    background: var(--cc-stone-soft);
    color: var(--cc-ink);
  }

  .cc-marquee[data-bg='ink'] {
    background: var(--cc-ink);
    color: var(--cc-off-white);
  }

  /* === Border variants === */
  .cc-marquee[data-borders='true'] {
    border-block: 1px solid;
  }

  .cc-marquee[data-bg='off-white'][data-borders='true'],
  .cc-marquee[data-bg='stone'][data-borders='true'] {
    border-color: var(--cc-stone);
  }

  .cc-marquee[data-bg='ink'][data-borders='true'] {
    border-color: rgba(244, 241, 236, 0.18);
  }

  /* === Size variants === */
  .cc-marquee[data-size='compact'] {
    padding-block: 0.75rem;
  }

  .cc-marquee[data-size='standard'] {
    padding-block: 1.25rem;
  }

  .cc-marquee[data-size='large'] {
    padding-block: 1.75rem;
  }

  .cc-marquee[data-size='huge'] {
    padding-block: 2.5rem;
  }

  /* === Font sizes per size + font combo === */
  .cc-marquee[data-font='mono'] {
    --cc-marquee-letter-spacing: 0.16em;
    --cc-marquee-text-transform: uppercase;
    --cc-marquee-font-weight: 500;
  }

  .cc-marquee[data-font='display'] {
    --cc-marquee-letter-spacing: -0.025em;
    --cc-marquee-text-transform: none;
    --cc-marquee-font-weight: 300;
  }

  .cc-marquee[data-font='display-italic'] {
    --cc-marquee-letter-spacing: -0.02em;
    --cc-marquee-text-transform: none;
    --cc-marquee-font-weight: 300;
    --cc-marquee-font-style: italic;
  }

  /* Mono sizing */
  .cc-marquee[data-font='mono'][data-size='compact'] { font-size: 12px; }
  .cc-marquee[data-font='mono'][data-size='standard'] { font-size: 14px; }
  .cc-marquee[data-font='mono'][data-size='large'] { font-size: 18px; }
  .cc-marquee[data-font='mono'][data-size='huge'] { font-size: 24px; }

  /* Display sizing */
  .cc-marquee[data-font='display'][data-size='compact'],
  .cc-marquee[data-font='display-italic'][data-size='compact'] {
    font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  }
  .cc-marquee[data-font='display'][data-size='standard'],
  .cc-marquee[data-font='display-italic'][data-size='standard'] {
    font-size: clamp(1.75rem, 3.6vw, 2.75rem);
  }
  .cc-marquee[data-font='display'][data-size='large'],
  .cc-marquee[data-font='display-italic'][data-size='large'] {
    font-size: clamp(2.5rem, 5.2vw, 4.5rem);
  }
  .cc-marquee[data-font='display'][data-size='huge'],
  .cc-marquee[data-font='display-italic'][data-size='huge'] {
    font-size: clamp(3.75rem, 8.5vw, 8rem);
  }

  /* === Track === */
  .cc-marquee__track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: cc-marquee-scroll var(--cc-marquee-speed, 40s) linear infinite;
  }

  .cc-marquee[data-direction='right'] .cc-marquee__track {
    animation-direction: reverse;
  }

  .cc-marquee__group {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    padding-right: clamp(1.5rem, 4vw, 3rem);
    flex-shrink: 0;
  }

  /* === Items === */
  .cc-marquee__item {
    font-family: var(--cc-font-display);
    font-style: var(--cc-marquee-font-style, normal);
    font-weight: var(--cc-marquee-font-weight, 300);
    letter-spacing: var(--cc-marquee-letter-spacing, -0.02em);
    text-transform: var(--cc-marquee-text-transform, none);
    white-space: nowrap;
    line-height: 1;
  }

  .cc-marquee[data-font='mono'] .cc-marquee__item {
    font-family: var(--cc-font-mono);
  }

  .cc-marquee__link {
    color: inherit;
    text-decoration: none;
    transition: opacity 200ms var(--cc-ease);
  }

  .cc-marquee__link:hover {
    opacity: 0.55;
  }

  /* === Separators === */
  .cc-marquee__sep {
    flex-shrink: 0;
    opacity: 0.4;
    font-family: var(--cc-font-mono);
    font-size: 0.6em;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
    transform: translateY(-2px);
    user-select: none;
  }

  /* When using display font, separator stays smaller and aligned to baseline */
  .cc-marquee[data-font='display'] .cc-marquee__sep,
  .cc-marquee[data-font='display-italic'] .cc-marquee__sep {
    font-size: 0.4em;
    transform: translateY(-0.3em);
  }

  /* === Pause on hover === */
  .cc-marquee[data-pause-on-hover='true']:hover .cc-marquee__track {
    animation-play-state: paused;
  }

  /* === Animation === */
  @keyframes cc-marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(-100% / 3)); }
  }

  /* Reduced motion: stop animation, show static row */
  @media (prefers-reduced-motion: reduce) {
    .cc-marquee__track {
      animation: none !important;
    }
  }
/* END_SECTION:marquee-strip */
/* START_SECTION:premium-footer (INDEX:39) */
.cc-foot {
    --bg: #0E0E0E; --ink: #F4F1EC;
    --line: rgba(244,241,236,0.12);
    --muted: rgba(244,241,236,0.5);
    --ember: #C25B4A;
    --serif: 'Fraunces', Georgia, serif;
    --mono: 'JetBrains Mono', monospace;
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --gutter: clamp(20px, 4vw, 48px);
    background: var(--bg); color: var(--ink);
    font-family: var(--font-body--family, system-ui, sans-serif);
    overflow: hidden;
    position: relative;
    content-visibility: auto;
    contain-intrinsic-size: auto 900px;
  }

  /* === Newsletter === */
  .cc-foot__nl {
    border-bottom: 1px solid var(--line);
    padding: clamp(48px, 6vw, 72px) var(--gutter);
    position: relative; z-index: 2;
  }
  .cc-foot__nl-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 56px);
    align-items: end;
    max-width: 1400px; margin: 0 auto;
  }
  @media (max-width: 768px) {
    .cc-foot__nl-inner { grid-template-columns: 1fr; }
  }

  .cc-foot__nl-text { display: flex; flex-direction: column; gap: 14px; }

  .cc-foot__eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--mono); font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.18em;
    color: var(--muted);
  }
  .cc-foot__dot {
    display: inline-block; width: 6px; height: 6px;
    background: var(--ember); border-radius: 50%;
    animation: cc-foot-pulse 1.6s ease-in-out infinite;
  }
  @keyframes cc-foot-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
  }

  .cc-foot__nl-title {
    font-family: var(--serif); font-weight: 300;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 0.95; letter-spacing: -0.03em;
    margin: 0;
  }
  .cc-foot__nl-title em { font-style: italic; font-weight: 300; }

  .cc-foot__nl-desc {
    font-size: 14px; line-height: 1.55; color: var(--muted);
    margin: 0; max-width: 380px;
  }

  /* Newsletter form */
  .cc-foot__form-row {
    display: flex; align-items: stretch;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 12px;
    transition: border-color 200ms var(--ease);
  }
  .cc-foot__form-row:focus-within { border-color: var(--ember); }
  .cc-foot__form input {
    flex: 1; background: transparent; border: 0; color: var(--ink);
    font-family: var(--font-body--family, system-ui, sans-serif);
    font-size: 15px;
    padding: 10px 0; outline: none; min-width: 0;
  }
  .cc-foot__form input::placeholder { color: var(--muted); }
  .cc-foot__form button {
    background: none; border: 0; color: var(--ink); cursor: pointer;
    padding: 10px 0 10px 16px;
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--mono); font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.18em;
    transition: gap 200ms var(--ease);
  }
  .cc-foot__form button:hover { gap: 14px; }
  .cc-foot__form-msg {
    color: var(--muted); margin: 10px 0 0;
    font-family: var(--mono); font-size: 10px;
    text-transform: uppercase; letter-spacing: 0.16em;
  }
  .cc-foot__form-msg--err { color: var(--ember); }

  /* === Main grid === */
  .cc-foot__main {
    padding: clamp(48px, 6vw, 80px) var(--gutter);
    position: relative; z-index: 2;
  }
  .cc-foot__grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: clamp(28px, 4vw, 56px);
    max-width: 1400px; margin: 0 auto;
  }

  .cc-foot__brand-col {
    display: flex; flex-direction: column; gap: 18px;
    max-width: 360px;
  }
  .cc-foot__brand {
    color: inherit; text-decoration: none;
    font-family: var(--serif); font-size: 1.625rem;
    line-height: 1; letter-spacing: -0.025em;
    display: inline-flex; align-items: center;
  }
  .cc-foot__brand em { font-style: italic; font-weight: 300; margin-left: 2px; }
  .cc-foot__blurb {
    font-size: 14px; line-height: 1.55; color: var(--muted);
    margin: 0;
  }

  .cc-foot__contact {
    display: flex; flex-direction: column; gap: 8px; margin-top: 4px;
  }
  .cc-foot__contact-row {
    display: flex; gap: 16px; align-items: center;
    font-family: var(--mono); font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.14em;
  }
  .cc-foot__contact-label { color: var(--muted); min-width: 60px; }
  .cc-foot__contact-row a {
    color: var(--ink); text-decoration: none;
    transition: color 200ms var(--ease);
  }
  .cc-foot__contact-row a:hover { color: var(--ember); }

  /* Menu columns */
  .cc-foot__col { display: flex; flex-direction: column; gap: 18px; }
  .cc-foot__col-toggle {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 0;
    background: none; border: 0; color: var(--muted);
    cursor: default; pointer-events: none; text-align: left;
  }
  .cc-foot__col-label {
    color: var(--muted);
    font-family: var(--mono); font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.14em;
  }
  .cc-foot__col-plus { display: none; }

  .cc-foot__col-body ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 11px;
  }
  .cc-foot__col-body a {
    color: var(--ink); text-decoration: none;
    font-family: var(--mono); font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.14em;
    transition: color 200ms var(--ease), padding-left 200ms var(--ease);
    display: inline-block;
  }
  .cc-foot__col-body a:hover { color: var(--ember); padding-left: 4px; }

  /* Mobile: brand stays open, menus become accordions */
  @media (max-width: 768px) {
    .cc-foot__grid { grid-template-columns: 1fr; gap: 0; }
    .cc-foot__brand-col {
      padding-bottom: 28px;
      border-bottom: 1px solid var(--line);
      margin-bottom: 8px;
      max-width: none;
    }
    .cc-foot__col { gap: 0; border-bottom: 1px solid var(--line); }
    .cc-foot__col-toggle { cursor: pointer; pointer-events: auto; padding: 18px 0; }
    .cc-foot__col-plus {
      display: block; position: relative;
      width: 12px; height: 12px; color: var(--muted);
    }
    .cc-foot__col-plus::before, .cc-foot__col-plus::after {
      content: ''; position: absolute; background: currentColor;
      transition: transform 280ms var(--ease);
    }
    .cc-foot__col-plus::before { top: 50%; left: 0; right: 0; height: 1.4px; transform: translateY(-50%); }
    .cc-foot__col-plus::after { left: 50%; top: 0; bottom: 0; width: 1.4px; transform: translateX(-50%); }
    [aria-expanded='true'] .cc-foot__col-plus::after { transform: translateX(-50%) scaleY(0); }
    .cc-foot__col-body { max-height: 0; overflow: hidden; transition: max-height 320ms var(--ease); }
    .cc-foot__col-body[data-open='true'] { max-height: 600px; }
    .cc-foot__col-body ul { padding-bottom: 18px; }
  }

  /* === Watermark === */
  .cc-foot__watermark {
    position: relative; z-index: 1;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 0;
  }
  .cc-foot__watermark-track {
    display: flex; align-items: center; gap: clamp(60px, 8vw, 120px);
    width: max-content;
    animation: cc-foot-marquee 80s linear infinite;
    will-change: transform;
  }
  .cc-foot__watermark-text {
    font-family: var(--serif); font-weight: 300;
    font-size: clamp(7rem, 17vw, 17rem);
    line-height: 1; letter-spacing: -0.05em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(244,241,236,0.16);
    white-space: nowrap;
    flex-shrink: 0;
    padding-block: 0.05em;
  }
  @keyframes cc-foot-marquee {
    0%   { transform: translate3d(0,0,0); }
    100% { transform: translate3d(-50%,0,0); }
  }
  @media (prefers-reduced-motion: reduce) {
    .cc-foot__watermark-track { animation: none; }
  }

  /* === Bottom strip === */
  .cc-foot__bottom {
    border-top: 1px solid var(--line);
    padding: 18px var(--gutter);
    position: relative; z-index: 2;
  }
  .cc-foot__bottom-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 20px; flex-wrap: wrap;
    max-width: 1400px; margin: 0 auto;
  }

  .cc-foot__socials { display: flex; gap: 22px; }
  .cc-foot__socials a {
    color: var(--ink); text-decoration: none;
    font-family: var(--mono); font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.14em;
    transition: opacity 200ms var(--ease);
  }
  .cc-foot__socials a:hover { opacity: 0.6; }

  .cc-foot__pay {
    list-style: none; padding: 0; margin: 0;
    display: flex; gap: 6px; flex-wrap: wrap;
  }
  .cc-foot__pay li {
    background: rgba(244,241,236,0.08);
    border-radius: 4px; padding: 3px 5px;
    display: inline-flex;
  }
  .cc-foot__pay svg { width: 30px; height: 19px; display: block; }

  .cc-foot__credits {
    color: var(--muted);
    display: flex; gap: 14px; flex-wrap: wrap;
    font-family: var(--mono); font-size: 10px;
    text-transform: uppercase; letter-spacing: 0.14em;
  }
  .cc-foot__credits a {
    color: inherit; text-decoration: none;
    transition: color 200ms var(--ease);
  }
  .cc-foot__credits a:hover { color: var(--ink); }

  @media (max-width: 768px) {
    .cc-foot__bottom-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  }
/* END_SECTION:premium-footer */
/* START_SECTION:shop-by-colour (INDEX:49) */
/* ============================================
     CASA CREW — SHOP BY COLOUR (THIN)
     ============================================ */
  @import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,ital,wght@9..144,0,400&family=JetBrains+Mono:wght@400;500&display=swap');

  .cc-colours-thin {
    --cc-off-white: #F4F1EC;
    --cc-stone: #D9D4CB;
    --cc-stone-soft: #E8E3DA;
    --cc-grey-soft: #A8A39B;
    --cc-grey-mid: #6E6A63;
    --cc-ink: #0E0E0E;
    --cc-font-display: 'Fraunces', 'Times New Roman', serif;
    --cc-font-mono: 'JetBrains Mono', 'Courier New', monospace;
    --cc-gutter: clamp(1.25rem, 3.5vw, 2.5rem);
    --cc-ease: cubic-bezier(0.22, 0.61, 0.36, 1);

    background: var(--cc-off-white);
    color: var(--cc-ink);
    border-block: 1px solid var(--cc-stone);
    font-family: var(--font-body--family, 'Inter', sans-serif);
  }

  .cc-colours-thin__inner {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 3vw, 2.5rem);
    padding: 0.875rem var(--cc-gutter);
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .cc-colours-thin__inner::-webkit-scrollbar {
    display: none;
  }

  /* === Label === */
  .cc-colours-thin__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    line-height: 1;
  }

  .cc-colours-thin__eyebrow {
    font-family: var(--cc-font-mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: var(--cc-grey-soft);
  }

  .cc-colours-thin__title {
    font-family: var(--cc-font-mono);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--cc-grey-mid);
    white-space: nowrap;
  }

  /* === Chip list === */
  .cc-colours-thin__list {
    display: inline-flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 1.75rem);
    flex: 1;
    flex-wrap: nowrap;
  }

  /* === Individual chip === */
  .cc-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--cc-ink);
    line-height: 1;
    padding: 4px 0;
    flex-shrink: 0;
    transition: opacity 200ms var(--cc-ease);
  }

  .cc-chip:hover {
    opacity: 0.6;
  }

  .cc-chip__swatch {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--cc-swatch-color, var(--cc-ink));
    box-shadow: inset 0 0 0 1px rgba(14, 14, 14, 0.1);
    flex-shrink: 0;
    transition: transform 200ms var(--cc-ease);
  }

  .cc-chip:hover .cc-chip__swatch {
    transform: scale(1.15);
  }

  .cc-chip__name {
    font-family: var(--cc-font-mono);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    white-space: nowrap;
  }

  /* === CTA === */
  .cc-colours-thin__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto;
    font-family: var(--cc-font-mono);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--cc-ink);
    text-decoration: none;
    line-height: 1;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--cc-ink);
    transition: gap 200ms var(--cc-ease);
  }

  .cc-colours-thin__cta:hover {
    gap: 12px;
  }

  /* === Mobile === */
  @media (max-width: 640px) {
    .cc-colours-thin__inner {
      padding: 0.875rem var(--cc-gutter);
    }

    .cc-colours-thin__label {
      display: none;
    }

    .cc-colours-thin__cta {
      display: none;
    }

    .cc-chip__swatch {
      width: 16px;
      height: 16px;
    }

    .cc-chip__name {
      font-size: 10px;
    }
  }
/* END_SECTION:shop-by-colour */
/* START_SECTION:trending-products (INDEX:52) */
.cc-tr {
    --bg: #F4F1EC; --ink: #0E0E0E; --stone: #D9D4CB;
    --grey: #6E6A63; --ember: #C25B4A;
    --serif: 'Fraunces', Georgia, serif;
    --mono: 'JetBrains Mono', monospace;
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --gutter: clamp(20px, 4vw, 48px);
    background: var(--bg); color: var(--ink);
    padding: clamp(56px, 7vw, 96px) 0 clamp(40px, 5vw, 64px);
    font-family: var(--font-body--family, system-ui, sans-serif);
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
  }

  /* === Header === */
  .cc-tr__head {
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: clamp(20px, 3vw, 40px);
    padding: 0 var(--gutter) clamp(28px, 4vw, 44px);
  }
  .cc-tr__head-text { display: flex; flex-direction: column; gap: 12px; }

  .cc-tr__eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--mono); font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.18em; color: var(--grey);
  }
  .cc-tr__dot {
    display: inline-block; width: 6px; height: 6px;
    background: var(--ember); border-radius: 50%;
    animation: cc-tr-pulse 1.6s ease-in-out infinite;
  }
  @keyframes cc-tr-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
  }

  .cc-tr__heading {
    font-family: var(--serif); font-weight: 300;
    font-size: clamp(2rem, 5vw, 3.25rem);
    line-height: 0.95; letter-spacing: -0.03em;
    margin: 0;
  }
  .cc-tr__heading em { font-style: italic; font-weight: 300; }

  .cc-tr__head-actions {
    display: flex; align-items: center; gap: 24px; flex-shrink: 0;
  }

  .cc-tr__view-all {
    font-family: var(--mono); font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.18em;
    color: var(--ink); text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 3px;
    transition: gap 220ms var(--ease);
  }
  .cc-tr__view-all:hover { gap: 12px; }

  .cc-tr__nav {
    display: inline-flex; align-items: center;
    border: 1px solid var(--stone); border-radius: 999px;
    padding: 4px;
  }
  .cc-tr__arrow {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    background: transparent; border: 0; border-radius: 999px;
    color: var(--ink); cursor: pointer;
    transition: background 200ms var(--ease), color 200ms var(--ease), opacity 200ms var(--ease);
  }
  .cc-tr__arrow:hover:not(:disabled) { background: var(--ink); color: var(--bg); }
  .cc-tr__arrow:disabled { opacity: 0.25; cursor: not-allowed; }
  .cc-tr__nav-divider { width: 1px; height: 16px; background: var(--stone); }

  /* === Rail === */
  .cc-tr__rail {
    display: flex; gap: 16px;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0 var(--gutter) 8px;
    scroll-padding-left: var(--gutter);
  }
  .cc-tr__rail::-webkit-scrollbar { display: none; }

  /* === Card === */
  .cc-tr__card {
    flex: 0 0 auto;
    width: 75vw;
    scroll-snap-align: start;
    display: flex; flex-direction: column; gap: 12px;
  }
  @media (min-width: 640px)  { .cc-tr__card { width: 320px; } }
  @media (min-width: 1100px) { .cc-tr__card { width: 360px; } }

  /* === Media === */
  .cc-tr__media {
    position: relative; display: block;
    aspect-ratio: 1 / 1;
    background: var(--stone); overflow: hidden;
    color: inherit; text-decoration: none;
  }
  .cc-tr__img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: opacity 380ms var(--ease), transform 700ms var(--ease);
  }
  .cc-tr__img--secondary { opacity: 0; }
  .cc-tr__card:hover .cc-tr__img--primary { opacity: 0; transform: scale(1.02); }
  .cc-tr__card:hover .cc-tr__img--secondary { opacity: 1; transform: scale(1.02); }

  /* === Rank number — big serif overlay === */
  .cc-tr__rank {
    position: absolute; left: 14px; bottom: 12px;
    z-index: 2;
    font-family: var(--serif); font-weight: 300;
    font-size: clamp(2.75rem, 5vw, 4rem);
    line-height: 1; letter-spacing: -0.04em;
    color: var(--bg);
    text-shadow: 0 4px 24px rgba(0,0,0,0.45);
    pointer-events: none;
    transition: transform 480ms var(--ease), opacity 280ms var(--ease);
  }
  .cc-tr__card:hover .cc-tr__rank {
    transform: translateY(-2px) scale(1.04);
  }
  /* Hide rank when quick-add appears so they don't collide */
  .cc-tr__card:hover .cc-tr__rank {
    opacity: 0;
    transform: translateY(8px);
  }

  /* === Badges === */
  .cc-tr__badges {
    position: absolute; top: 12px; right: 12px;
    display: flex; flex-direction: column; gap: 6px; align-items: flex-end;
    z-index: 2;
  }
  .cc-tr__badge {
    padding: 5px 10px; border-radius: 999px;
    font-family: var(--mono); font-size: 10px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.16em; line-height: 1;
  }
  .cc-tr__badge--new { background: var(--bg); color: var(--ink); border: 1px solid var(--ink); }
  .cc-tr__badge--sale { background: var(--ember); color: var(--bg); }
  .cc-tr__badge--soldout {
    background: rgba(14,14,14,0.86); color: var(--bg);
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  }

  /* === Quick add === */
  .cc-tr__quickadd {
    position: absolute; left: 12px; right: 12px; bottom: 12px;
    z-index: 3;
    display: inline-flex; align-items: center; justify-content: space-between;
    padding: 12px 16px;
    background: rgba(244,241,236,0.95);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    color: var(--ink);
    border: 0; border-radius: 999px;
    font-family: var(--mono);
    font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.16em; line-height: 1;
    cursor: pointer;
    opacity: 0; transform: translateY(8px);
    transition: opacity 280ms var(--ease), transform 280ms var(--ease),
                background 220ms var(--ease), color 220ms var(--ease);
  }
  .cc-tr__card:hover .cc-tr__quickadd,
  .cc-tr__quickadd:focus-visible { opacity: 1; transform: translateY(0); }
  .cc-tr__quickadd:hover { background: var(--ink); color: var(--bg); }
  .cc-tr__quickadd-plus {
    display: inline-flex; align-items: center; justify-content: center;
    width: 18px; height: 18px;
    font-size: 14px; line-height: 1;
    transition: transform 220ms var(--ease);
  }
  .cc-tr__quickadd:hover .cc-tr__quickadd-plus { transform: rotate(90deg); }
  /* Touch devices: always show quick-add, keep rank visible too */
  @media (hover: none) {
    .cc-tr__quickadd { opacity: 1; transform: translateY(0); }
    .cc-tr__rank { display: none; }
  }

  /* === Meta === */
  .cc-tr__meta {
    display: flex; flex-direction: column; gap: 6px;
    padding: 4px 0;
  }
  .cc-tr__title {
    font-size: 14px; font-weight: 500; line-height: 1.35;
    color: var(--ink); text-decoration: none;
    overflow: hidden; text-overflow: ellipsis;
    display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical;
    transition: color 200ms var(--ease);
  }
  .cc-tr__title:hover { color: var(--ember); }

  .cc-tr__row {
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px;
  }

  .cc-tr__price {
    font-family: var(--mono); font-size: 12px; line-height: 1;
    font-variant-numeric: tabular-nums; color: var(--ink);
    display: inline-flex; align-items: baseline; gap: 8px;
  }
  .cc-tr__price-now { font-weight: 500; }
  .cc-tr__price-was { color: var(--grey); opacity: 0.6; font-size: 0.9em; }

  /* === "X bought today" social proof === */
  .cc-tr__sold {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--mono); font-size: 10px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--grey);
    white-space: nowrap;
  }
  .cc-tr__sold-pulse {
    display: inline-block; width: 6px; height: 6px;
    background: var(--ember); border-radius: 50%;
    animation: cc-tr-pulse 1.6s ease-in-out infinite;
  }

  .cc-tr__empty {
    padding: 40px var(--gutter);
    color: var(--grey); font-size: 14px;
    border: 1px dashed var(--stone); margin: 0 var(--gutter);
  }

  @media (max-width: 768px) {
    .cc-tr__head { flex-direction: column; align-items: flex-start; }
    .cc-tr__head-actions { width: 100%; justify-content: space-between; }
    .cc-tr__nav { display: none; }
  }

  @media (prefers-reduced-motion: reduce) {
    .cc-tr__img, .cc-tr__rank, .cc-tr__quickadd, .cc-tr__dot, .cc-tr__sold-pulse {
      animation: none !important;
      transition: none !important;
    }
  }
/* END_SECTION:trending-products */
/* START_SNIPPET:product-media-gallery-content-styles (INDEX:204) */
media-gallery:where(.media-gallery--grid) .media-gallery__grid {
    display: none;
  }

  media-gallery.media-gallery--grid .media-gallery__grid .product-media-container {
    /* Needed for safari to stretch to full grid height */
    height: 100%;
  }

  @media screen and (min-width: 750px) {
    .media-gallery--two-column .media-gallery__grid {
      grid-template-columns: repeat(2, 1fr);
    }

    /* Display grid view as a carousel on mobile, grid on desktop */
    media-gallery:is(.media-gallery--grid) slideshow-component {
      display: none;
    }

    media-gallery:where(.media-gallery--grid) .media-gallery__grid {
      display: grid;
    }
  }

  .product-media-container__zoom-button {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: var(--layer-flat);
    cursor: zoom-in;
    background-color: transparent;

    &:hover {
      background-color: transparent;
    }
  }

  slideshow-slide.product-media-container--tallest {
    content-visibility: visible;
  }

  .product-media__drag-zoom-wrapper {
    aspect-ratio: inherit;
    min-height: inherit;
    min-width: inherit;
    display: inherit;
    flex: inherit;
  }

  .media-gallery__mobile-controls {
    grid-area: auto;
  }

  .product-media-container--zoomable.product-media-container--image {
    cursor: zoom-in;
  }
/* END_SNIPPET:product-media-gallery-content-styles */
/* START_SNIPPET:quick-add-modal-styles (INDEX:208) */
#quick-add-dialog {
    display: contents;
  }

  @media screen and (min-width: 750px) {
    .quick-add-modal {
      width: var(--quick-add-modal-width);
      height: var(--quick-add-modal-height);
      max-width: none;
    }
  }

  .quick-add-modal {
    padding: 0;
    border: var(--style-border-popover);
    overflow: hidden;
    box-shadow: 0 5px 30px rgb(0 0 0 / var(--opacity-15));

    @media screen and (max-width: 749px) {
      position: fixed;
      margin: auto 0 0 0;
      min-height: unset;
      max-width: 100%;
      border-radius: 0;
      overflow: clip;
      height: fit-content;
    }
  }

  .quick-add-modal[open] {
    @media screen and (max-width: 750px) {
      border-top-left-radius: var(--style-border-radius-popover);
      border-top-right-radius: var(--style-border-radius-popover);
    }
  }

  .quick-add-modal[open] {
    @media screen and (min-width: 750px) {
      display: flex;
    }
  }

  .quick-add-modal .view-more-details__wrapper {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }

  .quick-add-modal[open] {
    animation: modalSlideInTop var(--animation-speed) var(--animation-easing) forwards;
  }

  .quick-add-modal.dialog-closing {
    animation: modalSlideOutTop var(--animation-speed) var(--animation-easing) forwards;
  }

  .quick-add-modal__close {
    position: absolute;
    top: var(--margin-2xs);
    right: var(--margin-2xs);
    transition: transform 0.15s var(--animation-timing-bounce);
    z-index: var(--layer-raised);
    overflow: visible;
    transform-origin: center;
  }

  .quick-add-modal__close:active {
    transform: scale(0.99) translateY(1px);
  }

  .quick-add-modal__close {
    &:focus-visible {
      outline: none;
    }

    &:focus-visible::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: calc(var(--style-border-radius-popover) - var(--margin-2xs));
      outline: var(--focus-outline-width) solid currentColor;
    }
  }

  .quick-add-modal__content {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: 100% 1fr;
    position: relative;
    overflow-y: auto;
    max-height: 100vh;
    flex-grow: 1;

    @media screen and (max-width: 749px) {
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: auto;
      padding-inline: var(--padding-xl);
      padding-block: var(--padding-xl);
      gap: var(--gap-lg);
      flex: 1;
      min-height: 0;
      overflow-y: auto;
      height: auto; /* Prevent a bug in Safari where height:fit-content is not respected */
      max-height: 100vh;
    }
  }

  .quick-add-modal__content .media-gallery--grid .media-gallery__grid {
    grid-template-columns: 1fr;
  }

  .quick-add-modal__content .media-gallery--grid.media-gallery--two-column .product-media-container:first-child {
    grid-column: auto;
  }

  .quick-add-modal__content {
    /* One column */
    .media-gallery--grid:not(.media-gallery--two-column) .product-media > *,
      /* Two column, small first image */
      .media-gallery--grid.media-gallery--two-column:not(.media-gallery--large-first-image)
      .product-media-container:nth-of-type(odd)
      .product-media > *,
      /* Two column, large first image */
      .media-gallery--grid.media-gallery--two-column.media-gallery--large-first-image
        .product-media-container:is(:first-of-type, :nth-of-type(even))
        .product-media > *,
        /* Carousel */
      .media-gallery--carousel slideshow-container {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
    }
  }

  .quick-add-modal__content .view-more-details__wrapper {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }

  .view-more-details__wrapper .view-more-details {
    display: flex;
    align-items: center;
    width: fit-content;
  }

  .quick-add-modal__content .product-header {
    @media screen and (max-width: 749px) {
      display: flex;
      flex-direction: column;
      grid-column: 2 / -1;
      grid-row: 1;
      padding-right: var(--padding-2xl);
    }
  }

  .quick-add-modal__content .product-header a:not(product-price *) {
    @media screen and (max-width: 749px) {
      font-size: var(--font-size--md);
      font-weight: 500;
      color: inherit;
      width: fit-content;
    }
  }

  .quick-add-modal__content variant-picker,
  .quick-add-modal__content product-form-component {
    @media screen and (max-width: 749px) {
      grid-column: 1 / -1;
    }
  }

  .quick-add-modal__content .product-media-container__zoom-button {
    cursor: default;
  }

  .quick-add-modal__content .product-details {
    grid-column: 4 / -1;
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    height: 100%;
    min-height: 0;
    overflow-y: auto;
    position: relative;

    dialog[open] & {
      animation: fadeSlideIn 0.3s var(--animation-timing-fade-in) both;
      animation-delay: 0.1s;
    }

    @media screen and (max-width: 749px) {
      grid-column: 2 / span 2;
      grid-row: span 1;
      max-height: 100%;
      height: 100%;
    }
  }

  @property --quick-add-modal-mask-start {
    syntax: '<length>';
    initial-value: 0px;
    inherits: false;
  }

  @property --quick-add-modal-mask-end {
    syntax: '<length>';
    initial-value: 0px;
    inherits: true;
  }

  @keyframes detect-scroll {
    from,
    to {
      --can-scroll: ;
    }
  }

  @supports (animation-timeline: scroll(self)) {
    dialog[open] .quick-add-modal__content .product-details {
      mask-image: linear-gradient(to bottom, transparent 0%, #000 var(--quick-add-modal-mask-start), #000 100%);
      animation: 0.3s var(--animation-timing-fade-in) 0.1s both fadeSlideIn, scrollStart 1s linear both,
        scrollEnd 1s linear both, detect-scroll 1ms linear none;
      animation-timeline: auto, scroll(self), scroll(self), scroll(self);
      animation-range: normal, 0px 48px, calc(100% - 48px) 100%, 0% 100%;
    }
  }

  @keyframes scrollStart {
    from {
      --quick-add-modal-mask-start: 0px;
    }
    to {
      --quick-add-modal-mask-start: 48px;
    }
  }

  @keyframes scrollEnd {
    from {
      --quick-add-modal-mask-end: 0px;
    }
    to {
      --quick-add-modal-mask-end: 48px;
    }
  }

  .quick-add-modal__content .product-details > .group-block {
    flex-grow: 1;
    width: auto;
  }

  .quick-add-modal__content > * {
    min-height: 0;
  }

  .quick-add-modal__content .product-details :is(.view-product-title, .buy-buttons-block) {
    flex: 0 0 auto;
  }
  .quick-add-modal__content .product-details :is(.buy-buttons-block) {
    margin-top: auto;
    position: sticky;
    bottom: 0;
    padding-bottom: var(--padding-3xl);
    background-color: var(--color-background);
    z-index: var(--layer-raised);

    &::before {
      --quick-add-modal-mask-end-progressive-enhanced: 0px;

      position: absolute;
      content: '';
      display: block;
      inset: auto 0 100% 0;
      pointer-events: none;
      height: min(var(--gap-2xl), var(--gap));
      background-color: inherit;
      mask-image: linear-gradient(
        to top,
        #000 0%,
        #000 calc(var(--gap-2xs)),
        transparent calc(100% - var(--quick-add-modal-mask-end-progressive-enhanced)),
        transparent
      );
    }
  }

  .quick-add-modal__content .product-details .buy-buttons-block:has(gift-card-recipient-form) {
    position: static;
    padding-bottom: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .quick-add-modal__content .product-details .buy-buttons-block:has(gift-card-recipient-form) > product-form-component {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .quick-add-modal__content .product-details .buy-buttons-block:has(gift-card-recipient-form) form {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }

  .quick-add-modal__content .product-details .buy-buttons-block:has(gift-card-recipient-form)::before {
    display: none;
  }

  .quick-add-modal__content .product-details .buy-buttons-block__bar {
    display: block;
    position: sticky;
    bottom: 0;
    margin-top: auto;
    padding-block: var(--gap-md) var(--padding-3xl);
    background-color: var(--color-background);
    z-index: var(--layer-raised);

    &::before {
      --quick-add-modal-mask-end-progressive-enhanced: 0px;

      position: absolute;
      content: '';
      display: block;
      inset: auto 0 100% 0;
      pointer-events: none;
      height: min(var(--gap-2xl), var(--gap));
      background-color: inherit;
      mask-image: linear-gradient(
        to top,
        #000 0%,
        #000 calc(var(--gap-2xs)),
        transparent calc(100% - var(--quick-add-modal-mask-end-progressive-enhanced)),
        transparent
      );
    }
  }

  @supports (animation-timeline: scroll(self)) {
    .quick-add-modal__content .product-details :is(.buy-buttons-block)::before,
    .quick-add-modal__content .product-details .buy-buttons-block__bar::before {
      --mask-if-scroll: var(--can-scroll) var(--quick-add-modal-mask-end);
      --mask-if-no-scroll: 48px;
      --quick-add-modal-mask-end-progressive-enhanced: var(--mask-if-scroll, var(--mask-if-no-scroll));
      height: calc(var(--gap-2xs) + 48px);
    }
  }

  .quick-add-modal__content .product-details .variant-picker {
    flex: 0 0 auto;

    padding-block: min(var(--gap-2xl), var(--gap));
    margin-block-end: calc(var(--focus-outline-offset) + var(--focus-outline-width));
  }

  .quick-add-modal__content .variant-option--swatches {
    padding-inline-start: var(--padding-2xs);
  }

  .quick-add-modal__content .variant-option--swatches legend {
    margin-inline-start: calc(-1 * var(--padding-2xs));
  }

  .quick-add-modal__content:not(:has(.product-information__media)) .product-details {
    grid-column: 1 / -1;
  }

  .quick-add-modal__content .view-product-title {
    display: flex;
    padding-block: 0;
    margin-block-end: 12px;

    /* Prevent overlap between title and close button */
    padding-inline-end: calc(var(--padding-2xl) + calc(var(--minimum-touch-target) / 2));
  }

  .quick-add-modal__content .view-product-title a {
    color: inherit;
    text-decoration: none;
    text-align: left;
    font-size: var(--font-size--2xl);
    font-weight: 600;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s var(--animation-easing);
  }

  .quick-add-modal__content .product-details product-price {
    --text-align: left;
  }

  .quick-add-modal__content .product-details product-price.text-block--align-center {
    margin-inline: 0;
  }

  .quick-add-modal__content .product-details product-price.text-center {
    --text-align: left;
  }

  .quick-add-modal__content .product-details product-price > * {
    text-align: left;
  }

  .quick-add-modal__content
    .product-details
    *:not(
      .group-block,
      .group-block-content,
      .buy-buttons-block,
      .buy-buttons-block *,
      .view-product-title,
      .view-product-title *,
      variant-picker,
      variant-picker *,
      product-price,
      product-price *,
      product-inventory,
      product-inventory *,
      .view-more-details__wrapper,
      .view-more-details__wrapper *
    ) {
    @media screen and (min-width: 750px) {
      /* stylelint-disable-next-line declaration-no-important */
      display: none !important;
    }
  }

  .quick-add-modal__content
    .group-block:not(
      :has(
          .buy-buttons-block,
          .buy-buttons-block *,
          .view-product-title,
          .view-product-title *,
          variant-picker,
          variant-picker *,
          product-price,
          product-price *,
          product-inventory,
          product-inventory *,
          .view-more-details__wrapper,
          .view-more-details__wrapper *
        ),
      .buy-buttons-block
    ) {
    display: none;
  }

  @media screen and (min-width: 750px) {
    .quick-add-modal__content .group-block-content {
      gap: 0;
    }

    .quick-add-modal__content .media-gallery__grid {
      gap: min(var(--gap-2xs), var(--image-gap));
      border-radius: var(--style-border-radius-popover, 0);
    }

    .quick-add-modal__content .media-gallery--grid .product-media img {
      border-radius: 0;
    }
  }

  .quick-add-modal__content .product-details > .group-block {
    padding-block: var(--padding-3xl) 0;
  }

  .quick-add-modal__content :where(.product-details > .group-block > .group-block-content > *) {
    padding-inline: var(--padding-3xl);
  }

  .quick-add-modal__content slideshow-slide:not([aria-hidden='false']) {
    content-visibility: auto;
  }

  .quick-add-modal__content .product-information__media {
    width: 100%;
    grid-column: 1 / span 1;
    grid-row: 1;
    position: relative;
    top: 0;
    animation: fadeIn 0.4s var(--animation-timing-fade-in) both;

    @media screen and (min-width: 750px) {
      position: sticky;
      grid-column: 1 / 4;
      width: var(--quick-add-modal-gallery-width);
      overflow-y: auto;
      -ms-overflow-style: none;
      scrollbar-width: none;
    }

    &::-webkit-scrollbar {
      display: none;
    }
  }

  .quick-add-modal__content .product-information__media media-gallery {
    pointer-events: none;

    @media screen and (min-width: 750px) {
      position: absolute;
      inset: 0;
    }
  }

  .quick-add-modal media-gallery {
    padding: 0;
  }

  .quick-add-modal__content .product-information__media slideshow-arrows {
    display: none;
  }

  .quick-add-modal__content .product-information__media slideshow-container {
    display: block;
  }

  .quick-add-modal__content .product-information__media slideshow-slides {
    display: flex;
    flex-direction: column;
    gap: var(--gap-2xs);
    overflow: visible;
    scroll-snap-type: none;
  }

  .quick-add-modal__content .product-information__media slideshow-slide {
    width: 100%;
    flex: none;
    scroll-snap-align: unset;
    position: relative;
    transform: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s var(--animation-easing);
  }

  .quick-add-modal__content .product-information__media slideshow-slide[aria-hidden='true'] {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }

  .quick-add-modal__content .product-information__media slideshow-slide:nth-child(1) {
    animation: fadeSlideIn 0.3s var(--animation-timing-fade-in) both;
  }

  .quick-add-modal__content .product-information__media slideshow-slide:nth-child(2) {
    animation: fadeSlideIn 0.3s var(--animation-timing-fade-in) both;
    animation-delay: 0.05s;
  }

  .quick-add-modal__content .product-information__media slideshow-slide:nth-child(3) {
    animation: fadeSlideIn 0.3s var(--animation-timing-fade-in) both;
    animation-delay: 0.1s;
  }

  .quick-add-modal__content .product-information__media :is(slideshow-controls, slideshow-controls[thumbnails]) {
    display: none;
  }

  .quick-add-modal__content .sticky-content,
  .quick-add-modal__content .sticky-content--desktop {
    top: 0;
  }

  .quick-add-modal__content .text-block.rte:not(product-price),
  .quick-add-modal__content .view-more-details__wrapper {
    display: none;
  }

  @keyframes fadeSlideIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
/* END_SNIPPET:quick-add-modal-styles */
/* START_SNIPPET:resource-card (INDEX:212) */
.resource-card {
    --resource-card-secondary-image-opacity: 0;
    --resource-card-primary-image-opacity: calc(1 - var(--resource-card-secondary-image-opacity));

    display: flex;
    flex-direction: column;
    row-gap: var(--padding-xs);
    position: relative;
    text-decoration: none;
    height: 100%;
    opacity: 0;
    animation: fadeIn var(--animation-speed-medium) var(--animation-timing-fade-in) forwards;
  }

  .resource-card__link {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .resource-card__content {
    display: flex;
    flex-direction: column;
    color: var(--color-foreground);
    gap: var(--padding-3xs);

    .price {
      font-weight: 500;
    }

    .volume-pricing-note {
      display: block;
      margin-top: var(--padding-3xs);
      font-family: var(--font-body--family);
      font-weight: normal;
      font-size: min(0.85em, var(--font-paragraph--size));
      line-height: normal;
      letter-spacing: normal;
      text-transform: none;
      color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
    }
  }

  .resource-card[data-resource-type='article'] .resource-card__content,
  .resource-card[data-resource-type='page'] .resource-card__content {
    gap: var(--padding-xs);
  }

  .resource-card__image {
    aspect-ratio: var(--resource-card-aspect-ratio, auto);
    object-fit: cover;
    border-radius: var(--resource-card-corner-radius);
    opacity: var(--resource-card-primary-image-opacity);
  }

  .resource-card__image--secondary {
    position: absolute;
    top: 0;
    opacity: var(--resource-card-secondary-image-opacity);
    border-radius: var(--resource-card-corner-radius);
  }

  .resource-card__media:empty {
    display: none;
  }

  .resource-card__image-placeholder {
    padding: var(--padding-sm);
    font-size: var(--font-size--lg);
    line-height: var(--line-height--display-loose);
    word-break: break-word;
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5));
    aspect-ratio: var(--resource-card-aspect-ratio, auto);
    border-radius: var(--resource-card-corner-radius);
    color: var(--color-foreground);
  }

  .resource-card__title {
    margin-block: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .resource-card__title.paragraph {
    line-height: 1.3;
  }

  .resource-card--overlay {
    height: 100%;

    &::before {
      content: '';
      position: absolute;
      inset: 50% 0 0;
      background: var(--gradient-image-overlay);
      border-radius: var(--resource-card-corner-radius);
      pointer-events: none;
      z-index: var(--layer-flat);
    }
  }

  .resource-card--overlay .resource-card__image {
    height: 100%;
  }

  .resource-card--overlay .resource-card__content {
    position: absolute;
    inset: auto 0 0;
    padding: var(--padding-lg) var(--padding-lg) var(--padding-sm);
    z-index: var(--layer-raised);
  }

  .resource-card--overlay .resource-card__title {
    color: var(--color-white);
  }

  /* Collection images */
  .resource-card__image-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-2xs);
  }

  .resource-card__collection-image {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: calc(var(--card-corner-radius) - (var(--padding-xs) / 2));
  }

  .resource-card__subtext {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
    margin-block-start: 0;
  }

  .resource-card__subtext.paragraph {
    font-size: var(--font-size--body-sm);
    line-height: var(--line-height--body-tight);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .resource-card:has(.resource-card__image--secondary) {
    &:hover,
    &:focus {
      --resource-card-secondary-image-opacity: 1;
    }
  }
/* END_SNIPPET:resource-card */
/* START_SNIPPET:search-modal (INDEX:217) */
/* Search modal style */
  .search-modal {
    --search-border-radius: var(--style-border-radius-popover);
    --search-border-width: var(--style-border-width);
  }

  .search-modal__content {
    /* Approx set the top so when the content is at max height, the modal is centered */
    --modal-top-margin: calc(50dvh - var(--modal-max-height) / 2 - 2rem);
    --modal-width: 66dvw;

    padding: 0;
    border: var(--style-border-popover);

    @media screen and (min-width: 750px) {
      width: var(--modal-width);
      margin-block-start: var(--modal-top-margin);
      overflow: hidden;
    }
  }

  /* Hide the default dialog backdrop on small screens */
  @media screen and (max-width: 749px) {
    .search-modal__content::backdrop {
      display: none;
    }
  }

  .dialog-modal[open].search-modal__content {
    transform-origin: bottom center;
    animation: search-element-slide-in-bottom 300ms var(--ease-out-quad) forwards;
    border-radius: var(--search-border-radius);
    box-shadow: var(--shadow-popover);

    @media screen and (max-width: 749px) {
      border-radius: 0;
    }
  }

  .dialog-modal.search-modal__content.dialog-closing {
    animation: search-element-slide-out-bottom 200ms var(--ease-out-quad) forwards;
  }

  .search-modal__content[open] {
    display: flex;
  }

  .search-modal__content :is(.predictive-search-dropdown, .predictive-search-form__content-wrapper) {
    position: relative;
  }

  .dialog-modal
    .predictive-search-form__header:has(
      .predictive-search__reset-button:not(.predictive-search__reset-button[hidden])
    )::before {
    content: '';
    position: absolute;
    right: calc(var(--padding-sm) + var(--minimum-touch-target));
    top: 0;
    bottom: 0;
    width: var(--border-width-sm);
    background-color: var(--color-border);
  }

  .dialog-modal
    .predictive-search-form__header:has(.predictive-search__reset-button:not(.predictive-search__reset-button[hidden]))
    > .predictive-search__close-modal-button {
    &::before {
      content: none;
    }
  }

  @media screen and (min-width: 750px) {
    .dialog-modal
      .predictive-search-form__header:has(
        .predictive-search__reset-button:not(.predictive-search__reset-button[hidden])
      )::before {
      right: calc(var(--padding-2xl) * 2);
    }
  }

  predictive-search-component {
    --resource-card-corner-radius: var(--product-corner-radius);

    display: flex;
    width: 100%;
    position: relative;
    margin-inline: auto;
    align-items: center;
    background-color: var(--color-background);
    z-index: var(--layer-heightened);
  }

  .predictive-search-form__footer {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    @media screen and (min-width: 750px) {
      --to-top-gradient-background: linear-gradient(
        to top,
        rgb(var(--color-background-rgb) / var(--opacity-90)),
        rgb(var(--color-background-rgb) / var(--opacity-80)),
        rgb(var(--color-background-rgb) / var(--opacity-40)),
        transparent
      );

      padding-block: var(--padding-xs) var(--padding-lg);
      background-image: var(--to-top-gradient-background);
    }
  }

  predictive-search-component:has([data-search-results]):not(:has(.predictive-search-results__no-results))
    .predictive-search-form__footer {
    display: block;
  }

  .predictive-search-form {
    position: relative;
    width: 100%;
    align-self: flex-start;
  }

  .predictive-search-form__content {
    max-height: 50dvh;
    overflow-y: auto;
    background-color: var(--color-background);

    /* Firefox */
    scrollbar-width: none;

    /* Webkit browsers */
    &::-webkit-scrollbar {
      display: none;
    }
  }

  .predictive-search-form__content-wrapper {
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    z-index: var(--layer-raised);
    display: flex;
    flex-direction: column;
    border-radius: 0 0 var(--search-border-radius) var(--search-border-radius);
    transition: box-shadow var(--animation-speed) var(--animation-easing);
    transform: translateZ(0);
    will-change: transform, opacity;
    overflow: hidden;

    @media screen and (max-width: 749px) {
      border-radius: 0;
    }

    @media screen and (min-width: 750px) {
      max-height: var(--modal-max-height);
    }
  }

  /* Add new rule to apply bottom padding only when search button exists */
  .predictive-search-form__content-wrapper:has([data-search-results]):not(:has(.predictive-search-results__no-results))
    > .predictive-search-form__content {
    padding-block-end: var(--padding-6xl);
  }

  .predictive-search-form__header-inner {
    background: var(--color-background);
    border: var(--search-border-width) solid var(--color-border);
    color: var(--color-foreground);
    border-radius: var(--style-border-radius-popover);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;

    @media screen and (max-width: 749px) {
      border-radius: var(--style-border-radius-inputs);
      border: none;
    }
  }

  .predictive-search-form__header-inner:focus-within {
    outline-offset: var(--focus-outline-offset);

    @media screen and (min-width: 750px) {
      outline: var(--focus-outline-width) solid var(--color-primary);
    }
  }

  .predictive-search-form__header {
    display: flex;
    position: sticky;
    top: 0;
    z-index: var(--layer-heightened);
    width: 100%;
    align-items: center;
    background-color: var(--color-input-background);
    border: var(--search-border-width) solid var(--color-border);
    border-radius: var(--style-border-radius-inputs);

    @media screen and (max-width: 749px) {
      padding: var(--padding-2xs) var(--padding-sm);
    }
  }

  .predictive-search-form__header:focus-within,
  .predictive-search-form__header-inner:focus-within,
  .predictive-search-form__header-inner:has(.search-input:is(:focus, :focus-visible)) {
    outline: none;
    box-shadow: none;
    /* stylelint-disable-next-line declaration-no-important */
    border-color: var(--color-border) !important;
  }

  input.search-input {
    border-radius: var(--style-border-radius-inputs);
    padding-block: var(--padding-sm);
    font-size: var(--font-size--md);
    width: 100%;
    color: var(--color-foreground);
    padding-inline: calc(var(--margin-lg) + var(--icon-size-lg)) 0;
    background: transparent;
    text-overflow: ellipsis;
    overflow: hidden;
    outline: none;
    border: 0;
  }

  .search-input::placeholder {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .search-input,
  .search-input:is(:focus, :focus-visible, :focus-within),
  .predictive-search-form__header *:is(:focus, :focus-visible) {
    outline: none;
    box-shadow: none;
  }

  .search-input:hover {
    background-color: transparent;
  }

  .predictive-search__icon {
    position: absolute;
    left: var(--margin-xl);
    top: auto;
    width: var(--icon-size-lg);
    height: var(--icon-size-lg);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-60));

    @media screen and (min-width: 750px) {
      left: var(--margin-md);
    }
  }

  .predictive-search__icon > svg {
    width: var(--icon-size-md);
    height: var(--icon-size-md);
  }

  .predictive-search__reset-button {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: var(--minimum-touch-target);
    height: var(--minimum-touch-target);
    padding: 0;
    margin-inline-end: var(--margin-md);
    background: transparent;
    color: var(--color-foreground);
    opacity: 0.68;
    transition: opacity var(--animation-speed-medium) var(--animation-timing-fade-out),
      visibility var(--animation-speed-medium) var(--animation-timing-fade-out);

    &:hover {
      color: var(--color-foreground);
    }

    &:active {
      transform: scale(0.9);
      transition: transform 100ms var(--animation-timing-active);
    }

    @media screen and (min-width: 750px) {
      margin-inline-end: var(--margin-2xs);
    }
  }

  .predictive-search__reset-button[hidden] {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

  .predictive-search__reset-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--icon-size-lg);
    height: var(--icon-size-lg);
    transition: background-color var(--animation-speed-medium) ease-in-out,
      transform var(--animation-speed-medium) var(--animation-timing-bounce);
    border-radius: 50%;

    &:hover {
      background-color: rgb(var(--color-primary-hover-rgb) / var(--opacity-8));
    }
  }

  .predictive-search__reset-button:active .predictive-search__reset-button-icon {
    transform: scale(0.85);
    transition-timing-function: var(--animation-timing-active);
    transition-duration: 100ms;
  }

  .predictive-search__reset-button svg {
    width: var(--icon-size-md);
    height: var(--icon-size-md);
  }

  .predictive-search__reset-button-text {
    display: none;
  }

  .predictive-search__search-button {
    margin: auto;
    z-index: var(--layer-raised);
    transition: transform var(--animation-speed-medium) var(--animation-timing-bounce),
      box-shadow var(--animation-speed-medium) var(--animation-timing-hover);
    transform-origin: center;

    &:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgb(0 0 0 / var(--opacity-5));
    }

    &:active {
      transform: scale(0.97);
      transition: transform 100ms var(--animation-timing-active);
      box-shadow: none;
    }
  }

  .predictive-search__close-modal-button {
    --button-color: var(--color-foreground);
    --button-background-color: transparent;

    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--minimum-touch-target);
    height: var(--minimum-touch-target);
    margin-inline-start: var(--margin-sm);
    padding: 0;
    box-shadow: none;

    &:active {
      transform: scale(0.8);
      transition: transform 100ms var(--animation-timing-active);
    }

    .svg-wrapper,
    svg {
      width: var(--icon-size-xs);
      height: var(--icon-size-xs);
    }
  }

  .predictive-search__close-modal-button:hover {
    --button-color: var(--color-foreground);
    --button-background-color: transparent;
  }
/* END_SNIPPET:search-modal */
/* START_SNIPPET:skip-to-content-link (INDEX:221) */
.skip-to-content-link {
    position: absolute;
    left: -99999px;
  }

  .skip-to-content-link:focus {
    z-index: var(--layer-temporary);
    overflow: auto;
    width: auto;
    height: auto;
    padding: var(--padding-lg) var(--padding-4xl);
    left: var(--margin-lg);
    top: var(--margin-lg);
    background-color: var(--color-background);
    box-shadow: 0 0 0 var(--focus-outline-offset) var(--color-background);
  }
/* END_SNIPPET:skip-to-content-link */
