/** Shopify CDN: Minification failed

Line 2226:10 Unexpected "{"
Line 2226:19 Expected ":"

**/
/* ===================================
   ChikenKoop Custom Styles
   Brand: #E11D2A (crimson), #000, #fff
   Font: Hanken Grotesk (Google Fonts)
   =================================== */

/* Ease curves (per audit P2-2 — emil-design-eng + impeccable motion law).
   The built-in CSS easings are too weak for UI work; these are stronger
   custom curves used across buttons, hovers, drawer, and footer pills. */
:root {
  --ck-ease-out:        cubic-bezier(0.23, 1, 0.32, 1);    /* strong UI ease-out */
  --ck-ease-out-quart:  cubic-bezier(0.22, 1, 0.36, 1);    /* drawer-grade */
  --ck-ease-in-out:     cubic-bezier(0.77, 0, 0.175, 1);
}

/* Apply Hanken Grotesk to body + headings globally + bump base size/weight */
body,
.color-scheme-1,
.color-scheme-2,
.color-scheme-3,
.color-scheme-4,
.color-scheme-5,
.color-accent-1,
.color-accent-2,
.color-background-1,
.color-background-2,
input, textarea, select, button {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif !important;
}

/* Bigger + bolder defaults across the site */
html {
  font-size: 17px;
  /* Kill the white/blue/black overscroll bounce — root paint stays brand red */
  background-color: #E11D2A !important;
}
body {
  font-size: 16px;
  font-weight: 500;
  background-color: #ffffff;
}
/* Mobile Safari: paint the address bar / iOS overscroll area red too */
@supports (background-color: env(safe-area-inset-top)) {
  html { background-color: #E11D2A !important; }
}
p, li, span, a { font-weight: 500; }

/* --- Per-Tab Treatments (BloodySunday-style: flat, solid, no overlays) --- */
/* All tabs use solid SVG fill from tab_color setting */
/* TRUE MAMMAL — light-gray capsule with stronger outline (audit P1-5).
   Old stroke rgba(0,0,0,0.12) at 1px was effectively invisible against
   the white page bg, so the tab read as orphaned. Fill bumped to the
   drop's #F4F4F4 identity color and stroke darkened to make the capsule
   silhouette unambiguous. */
.ck-tabs__tab[data-tab-target="true-mammal"] .ck-tabs__shape path {
  stroke: rgba(0, 0, 0, 0.55);
  stroke-width: 1.5;
}
.ck-tabs__tab[data-tab-target="true-mammal"] .ck-tabs__label {
  color: #1a1a1a;
}

/* --- Created by ChikenKoop label --- */
.ck-created-by {
  position: absolute;
  top: 12px;
  right: 24px;
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.3;
  text-align: right;
  z-index: 5;
}
.ck-created-by__label {
  display: block;
  font-weight: 400;
  font-size: 10px;
}
.ck-created-by__brand {
  display: block;
  font-weight: 700;
  color: #E11D2A;
  font-size: 13px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 749px) {
  .ck-created-by {
    top: 8px;
    right: 12px;
    font-size: 9px;
  }
  .ck-created-by__brand {
    font-size: 11px;
  }
}

/* --- Scrolling Marquee Announcement Bar --- */
.marquee-bar {
  background-color: #E11D2A;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  padding: 14px 0;
}

.marquee-bar__track {
  display: inline-flex;
  animation: marquee-scroll 75s linear infinite;
}

.marquee-bar:hover .marquee-bar__track {
  animation-play-state: paused;
}

.marquee-bar__message {
  display: inline-block;
  padding: 0 44px;
  color: #ffffff;
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-bar__separator {
  display: inline-block;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  font-size: 14px;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 749px) {
  .marquee-bar__message {
    font-size: 11px;
    padding: 0 24px;
  }
  .marquee-bar {
    padding: 8px 0;
  }
}

/* --- Hide original header cart & account icons --- */
.header__icon--cart,
.header__icon--account {
  display: none !important;
}

/* --- Sticky Capsule Tab Navigation + Marquee (BloodySunday-style) --- */
/* Both stay glued: tabs at top, marquee directly below the tabs */
.shopify-section.ck-tabs-section,
#shopify-section-collection-tabs,
.shopify-section[id*="collection-tabs"] {
  position: sticky;
  top: 0;
  z-index: 90;
  background: #ffffff;
}

/* Marquee sticks just below the tab bar */
#shopify-section-scrolling-marquee,
.shopify-section[id*="scrolling-marquee"] {
  position: sticky;
  top: 90px;
  z-index: 85;
  background: #E11D2A;
}

@media screen and (max-width: 749px) {
  /* Tab section padding tightened so it sits flush against the marquee, no white slice */
  .shopify-section.ck-tabs-section,
  #shopify-section-collection-tabs,
  .shopify-section[id*="collection-tabs"] {
    background: #ffffff;
  }
  #shopify-section-scrolling-marquee,
  .shopify-section[id*="scrolling-marquee"] {
    /* New mobile chrome (audit P1-7 — 2x2 tab grid):
       6px padding-top + 28px icon-room + 2 rows*48px + 6px gap + 4px = ~140px */
    top: 140px;
  }
}

.ck-tabs {
  background: #ffffff;
  padding: 12px 0 0 0;
  width: 100%;
  /* Pull bar down so tab capsule bottoms overlap the marquee — no white gap when active tab lifts */
  margin-bottom: -6px;
}

.ck-tabs__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 100%;
  gap: 16px;
}

.ck-tabs__row {
  display: flex;
  align-items: flex-end;
  gap: 0;
  flex: 1 1 auto;
  min-width: 0;
  /* Key: overlap each tab onto the next so capsule notches interlock */
}

.ck-tabs__tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 244px;
  height: 78px;
  text-decoration: none !important;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.2s ease;
  flex: 0 0 auto;
  /* Heavy negative margin so capsule notches interlock with no visible gap */
  margin-right: -52px;
}

.ck-tabs__tab:last-of-type {
  margin-right: 0;
}

.ck-tabs__tab:hover {
  filter: brightness(1.05);
}

.ck-tabs__tab:active {
  filter: brightness(0.92);
}

/* Active tab — keep its color, bring forward via shadow only (no lift = no gap) */
.ck-tabs__tab--active {
  z-index: 5;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.18));
}

.ck-tabs__shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.ck-tabs__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  pointer-events: none;
}

.ck-tabs__logo {
  height: 44px;
  width: 44px;
  object-fit: contain;
  display: block;
}

.ck-tabs__label {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  white-space: nowrap;
}


/* --- Right-side icons (account + cart) --- */
.ck-tabs__icons {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 0 0 auto;
  padding-bottom: 8px;
}

.ck-tabs__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  position: relative;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ck-tabs__icon:hover {
  color: #E11D2A;
}

.ck-tabs__icon--cart:hover {
  color: #1FAE5C;
}

.ck-tabs__icon-svg {
  display: inline-flex;
  width: 18px;
  height: 18px;
}

.ck-tabs__icon-svg svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ck-tabs__icon--cart .ck-tabs__icon-svg {
  width: 36px;
  height: 36px;
}

/* Cart icon — informational green count bubble only (audit P1-2).
   Old code ran a perpetual 1.6s pulse ring + outer glow, which violated:
     - taste-skill ban: NO neon/outer glows
     - emil rule: don't animate things the user sees 100+ times/session
   Bubble itself stays (count IS informational); pulse + glow ring removed. */
.ck-tabs__icon--cart {
  position: relative;
}

.ck-tabs__cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #1FAE5C;
  color: #ffffff;
  border-radius: 50%;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 3;
}

/* --- Mobile (audit P1-7 — two-row stack instead of cramped horizontal scroll).
       Old layout squeezed 4 capsules at 110×44 with -26px overlap into a horiz
       scroll, which read as illegible color blobs. New layout: 2×2 grid with
       full-width tabs, real-readable labels, no overlap. Cart icon row stays. */
@media screen and (max-width: 749px) {
  .ck-tabs {
    padding: 6px 0 0 0;
    margin-bottom: 0;
  }

  .ck-tabs__inner {
    padding: 0 12px;
    gap: 8px;
    flex-wrap: wrap;
  }

  .ck-tabs__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    width: 100%;
    overflow: visible;
  }

  .ck-tabs__tab {
    width: 100%;
    height: 48px;
    margin-right: 0;
  }

  /* Drop the interlocked-notch overlap on mobile — full pill per cell reads better */
  .ck-tabs__tab--active {
    z-index: 1;
  }

  .ck-tabs__content {
    padding: 0 14px;
  }

  .ck-tabs__logo {
    height: 26px;
    width: 26px;
  }

  .ck-tabs__label {
    font-size: 11px;
    letter-spacing: 0.10em;
  }

  /* Cart icon pinned to top-right corner of the tab section so the 2x2 tab grid
     can use the full mobile width without losing the cart-affordance. */
  .ck-tabs__inner {
    position: relative;
    padding-top: 28px; /* room for the absolute-positioned icon row */
  }
  .ck-tabs__icons {
    position: absolute;
    top: 4px;
    right: 12px;
    width: auto;
    padding: 0;
    gap: 12px;
  }

  /* Hide account icon on mobile — only cart */
  .ck-tabs__icon:not(.ck-tabs__icon--cart) {
    display: none;
  }

  .ck-tabs__icon-svg {
    width: 22px;
    height: 22px;
  }

  .ck-tabs__icon--cart .ck-tabs__icon-svg {
    width: 26px;
    height: 26px;
  }
}

/* --- Collection Heading Bar --- */
.collection-heading-bar {
  width: 100%;
  padding: 14px 0;
  /* Sticky stack: sits BELOW tab bar (~90px) + marquee (~36px) */
  position: sticky;
  top: 126px;
  z-index: 80;
}

@media screen and (max-width: 749px) {
  .collection-heading-bar {
    /* New mobile chrome (audit P1-7): tabs (~140px) + marquee (~32px) = ~172px */
    top: 172px;
  }
}

/* Auto text color based on bar background brightness */
.ck-heading-bar--light-bg .collection-heading-bar__title,
.ck-heading-bar--light-bg .collection-heading-bar__brand strong {
  color: #1a1a1a !important;
}
.ck-heading-bar--light-bg .collection-heading-bar__brand-label {
  color: rgba(0, 0, 0, 0.55) !important;
}
.ck-heading-bar--dark-bg .collection-heading-bar__title,
.ck-heading-bar--dark-bg .collection-heading-bar__brand strong {
  color: #ffffff !important;
}
.ck-heading-bar--dark-bg .collection-heading-bar__brand-label {
  color: rgba(255, 255, 255, 0.7) !important;
}

.collection-heading-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.collection-heading-bar__title {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
}

.collection-heading-bar__brand {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  text-align: right;
  line-height: 1.2;
}

.collection-heading-bar__brand-label {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
}

.collection-heading-bar__brand strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.06em;
}

@media screen and (max-width: 749px) {
  .collection-heading-bar__title {
    font-size: 16px;
  }

  .collection-heading-bar__brand-label {
    font-size: 8px;
  }

  .collection-heading-bar__brand strong {
    font-size: 10px;
  }

  .collection-heading-bar {
    padding: 10px 0;
  }
}

/* --- Header Overrides --- */
.header-wrapper {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.header {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.header__heading-logo-image {
  max-width: 40px !important;
}

.header__heading-link {
  text-decoration: none;
}

.header__inline-menu .list-menu__item {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000000;
  text-decoration: none;
  padding: 8px 16px;
  transition: color 0.2s ease;
}

.header__inline-menu .list-menu__item:hover {
  color: #E11D2A;
}

.header__icon {
  color: #000000;
  transition: color 0.2s ease;
}

.header__icon:hover {
  color: #E11D2A;
}

/* Hide country/language selectors */
.header-localization,
.localization-wrapper {
  display: none !important;
}

/* --- Product Card Styles (BloodySunday-style: title on top of price, centered, $XX only) --- */
.card-information,
.card__information,
.card-information__wrapper {
  text-align: center !important;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.card__heading,
.card__heading a,
.card__information .card__heading {
  text-align: center !important;
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif !important;
  font-weight: 800 !important;
  font-size: 26px !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  margin-bottom: 2px !important;
  display: block !important;
  color: #000000 !important;
  line-height: 1.2 !important;
}

/* Kill the hover underline Dawn injects via .underline-links-hover */
.card-wrapper .card__heading a,
.card-wrapper .card__heading a:hover,
.card-wrapper:hover .card__heading a,
.card .card__heading a,
.card .card__heading a:hover,
.card:hover .card__heading a {
  text-decoration: none !important;
  background-image: none !important;
  border-bottom: none !important;
}

/* Price block — centered, $XX only, no "USD", no "from" */
.card .price,
.card .price__container {
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: nowrap !important;
}

.card .price__regular,
.card .price__sale {
  margin: 0 auto !important;
  text-align: center !important;
  /* Let Dawn's component-price.css handle which one shows (sale vs regular) */
}

/* When NOT on sale, hide the sale block; when ON sale, hide the regular block */
.card .price:not(.price--on-sale) .price__sale {
  display: none !important;
}
.card .price.price--on-sale .price__regular {
  display: none !important;
}

/* Hide any extra duplicate price-item siblings */
.card .price__regular .price-item--regular ~ .price-item,
.card .price__container > .price-item ~ .price-item,
.card .price-item--last,
.card span[class*="price"][class*="last"] {
  display: none !important;
}

.card .price-item,
.card .price-item--regular,
.card .price-item--sale {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif !important;
  font-weight: 800 !important;
  font-size: 24px !important;
  color: #000000 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

/* Tighten gap between title and price */
.card-information,
.card__information,
.card-information__wrapper {
  padding-top: 10px !important;
  padding-bottom: 12px !important;
}

.card .price {
  margin-top: 0 !important;
}

/* Hide "From", "Sale", "Regular price" labels and currency code suffixes */
.card .price__regular .price__sale--label,
.card .price__regular .visually-hidden,
.card .price__sale--single .price__regular,
.card span.visually-hidden:has-text("From"),
.card .price__last,
.card .price-item--last,
.card [data-currency],
.card .price__currency,
.card .price__notice {
  display: none !important;
}

/* Strip "from " prefix that Dawn injects */
.card .price--end .price-item--regular::before,
.card .price__regular .price-item--regular::before {
  content: none !important;
}
.card .price--from .price-item--regular {
  /* visually treat as standard, the "From" label stays hidden */
}

/* Hover image swap — only fades the first image when a second image actually exists */
.card-wrapper .media--hover-effect > img:nth-child(2),
.card .media--hover-effect > img:nth-child(2) {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.card-wrapper:hover .media--hover-effect > img:nth-child(2),
.card:hover .media--hover-effect > img:nth-child(2) {
  opacity: 1;
}
/* Only fade the first image if it has an immediately following <img> sibling (i.e. there's a 2nd image to swap to) */
.card-wrapper:hover .media--hover-effect > img:first-child:has(+ img),
.card:hover .media--hover-effect > img:first-child:has(+ img) {
  opacity: 0;
}

/* --- Original card overrides --- */
.card--media {
  border: none !important;
  box-shadow: none !important;
}

.card__inner {
  border: none !important;
  border-radius: 0 !important;
}

.card__media .media {
  border-radius: 0 !important;
}

.card__heading {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000000;
}

.card__heading a {
  color: #000000;
  text-decoration: none;
}

.card__heading a:hover {
  color: #E11D2A;
}

.price-item {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #000000;
}

.card-information__wrapper {
  padding-top: 8px;
}

/* Product card hover effect - show second image */
.card .media--hover-effect > img + img {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover .media--hover-effect > img + img {
  opacity: 1;
}

.card:hover .media--hover-effect > img:first-child {
  opacity: 0;
}

/* Badge styles */
.badge {
  border-radius: 0 !important;
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* --- Collection / Section Headings --- */
.collection__title .title {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000000;
}

/* Old section-heading-bar removed — replaced by .collection-heading-bar */

/* --- Featured Collection Grid --- */
.featured-collection .grid {
  /* Use 1px gap + sibling borders to create a continuous hairline grid (bloodysunday-style) */
  gap: 0 !important;
  background: rgba(0, 0, 0, 0.08);
  padding: 1px 0;
}

/* Each card sits on white inside the gridded background — gap shows as 1px line */
.featured-collection .grid__item,
.collection .grid__item,
.product-grid .grid__item {
  background: #ffffff;
  /* Right + bottom hairline so the grid lines show even at end-of-row */
  box-shadow:
    1px 0 0 rgba(0, 0, 0, 0.08),
    0 1px 0 rgba(0, 0, 0, 0.08);
}

/* Mobile too — applies to the same grid */
@media screen and (max-width: 749px) {
  .featured-collection .grid,
  .collection .grid,
  .product-grid {
    gap: 0 !important;
  }
}

/* Remove default section padding for seamless look */
.section-featured-collection-padding {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* --- Minimal Footer: Instagram + 2 pill links --- */
.ck-footer {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 32px 20px 40px;
}

.ck-footer__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 100%;
  margin: 0 auto;
  flex-wrap: wrap;
}

.ck-footer__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #E11D2A;
  border: 1.5px solid #E11D2A;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
  flex: 0 0 auto;
}

.ck-footer__icon:hover {
  background: #B81725;
  border-color: #B81725;
  color: #ffffff;
  transform: translateY(-1px);
}

.ck-footer__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: #E11D2A;
  border: 1.5px solid #E11D2A;
  border-radius: 999px;
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
  flex: 0 0 auto;
  white-space: nowrap;
}

.ck-footer__pill:hover {
  background: #B81725;
  border-color: #B81725;
  color: #ffffff;
  transform: translateY(-1px);
}

/* --- Buttons --- */
.button,
.shopify-challenge__button,
button.shopify-payment-button__button--unbranded {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0 !important;
}

/* Primary button style */
.button--primary {
  background-color: #000000;
  color: #ffffff;
  border: 2px solid #000000;
}

.button--primary:hover {
  background-color: #E11D2A;
  border-color: #E11D2A;
  color: #ffffff;
}

/* Secondary button style */
.button--secondary {
  background-color: transparent;
  color: #000000;
  border: 2px solid #000000;
}

.button--secondary:hover {
  background-color: #000000;
  color: #ffffff;
}

/* === PRODUCT PAGE — Bloodysunday-style minimal layout === */

/* Hide everything Popeye's screenshot doesn't show */
.product__pickup-availabilities,
.product__sku,
.product__vendor,
.product__rating,
.product__share-wrapper,
.product .quantity__rules,
.product .product-form__quantity,
.product__tax,
.product__inventory,
.product__view-details,
.shopify-payment-button__more-options,
.complementary-products,
.product .quantity-popover-wrapper,
.shopify-payment-button,
/* "View full details" link Dawn injects */
a[href*="?variant"][class*="view-details"],
.product__view-details,
/* Tables (size charts) inside description */
.product__description table,
/* Generic dl that some apps inject */
.product__description dl {
  display: none !important;
}

/* === MEDIA GALLERY — slider layout on all breakpoints, arrows + magnifier active === */
/* Hide thumbnail strip so look stays clean, but keep slider + zoom working */
.thumbnail-list,
.thumbnail-slider {
  display: none !important;
}

/* Force slider behavior on desktop too (Dawn defaults to stacked grid >=990) */
@media screen and (min-width: 750px) {
  .product__media-list {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }
  .product__media-list::-webkit-scrollbar { display: none !important; }
  .product__media-list .product__media-item,
  .product__media-list .grid__item {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    scroll-snap-align: start !important;
  }
}

/* Make the prev/next arrows visible & tappable on every breakpoint */
.product__media-list ~ .slider-buttons,
slider-component .slider-buttons {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
slider-component .slider-button {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* Magnifier (lightbox toggle) — visible on every image, also on mobile */
.product__media-list .product__media-toggle,
.product__media-icon-wrapper,
.product__media-zoom-icon,
.product-media-modal__toggle {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
.product__media-icon {
  opacity: 1 !important;
  display: inline-flex !important;
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  z-index: 3 !important;
  background: rgba(255,255,255,0.92) !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 999px !important;
}
@media screen and (max-width: 749px) {
  .product__media-icon {
    width: 44px !important;
    height: 44px !important;
    top: 10px !important;
    right: 10px !important;
  }
}

/* Title — big, bold, uppercase, left-aligned */
.product__title,
.product__title h1 {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif !important;
  font-weight: 900 !important;
  font-size: 38px !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
  color: #000000 !important;
  line-height: 1.1 !important;
  margin: 0 0 14px 0 !important;
}

/* Price — clean dollar amount, weight 700 */
.product .price,
.product .price__container,
.product .price__regular {
  text-align: left !important;
  display: block !important;
}
.product .price-item,
.product .price__regular .price-item--regular {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif !important;
  font-weight: 800 !important;
  font-size: 26px !important;
  color: #000000 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
.product .price__notice,
.product .price__last,
.product .price-item--last,
.product .price__currency {
  display: none !important;
}

.product__text {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
}

/* Size variant pills */
.variant-input .form__label,
.product-form__input .form__label {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* === Force consistent variant-picker order: COLOR first, SIZE second ===
   2026-05-06: dropped !important from `display` so Dawn's viewTransition can
   still hide the old <variant-selects> via inline `style="display: none"`
   during section re-render (otherwise the OLD picker stayed visible for the
   full 500ms double-buffer window, producing Popeye's "another line of sizes
   pops up" bug AND keeping the [hidden] error wrapper visible — the
   persistent red ! icon was also caused by this same !important). The
   :not(.product-form__error-message-wrapper) exclusion remains as a second
   line of defense in case the inline-style-wins specificity rule changes. */
variant-selects,
variant-radios,
.product-form__input-wrapper,
.product__info-container .product-form > div:first-of-type:not(.product-form__buttons):not(.product-form__error-message-wrapper) {
  display: flex;
  flex-direction: column !important;
}

.product-form__input[data-option-name="Color" i],
.product-form__input[data-option-name="Colour" i] {
  order: 1 !important;
}

.product-form__input[data-option-name="Size" i],
.product-form__input[data-option-name="Sizes" i] {
  order: 2 !important;
}

/* Any other option falls between (rare) */
.product-form__input:not([data-option-name="Color" i]):not([data-option-name="Colour" i]):not([data-option-name="Size" i]):not([data-option-name="Sizes" i]) {
  order: 3 !important;
}

/* === COLOR SWATCHES — vertical stack inside the info panel (top-left), NOT overlapping image === */
.product-form__input[data-option-name="Color" i],
.product-form__input[data-option-name="Colour" i],
fieldset.product-form__input[data-option-name="Color" i],
fieldset.product-form__input[data-option-name="Colour" i] {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  z-index: auto !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 18px 0 8px 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  width: auto !important;
}

.product-form__input[data-option-name="Color" i] .form__label,
.product-form__input[data-option-name="Colour" i] .form__label,
.product-form__input[data-option-name="Color" i] legend,
.product-form__input[data-option-name="Colour" i] legend {
  display: none !important;
}

/* Hide native radio, style the label as the visible swatch circle */
.product-form__input[data-option-name="Color" i] input[type="radio"] {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.product-form__input[data-option-name="Color" i] label,
.product-form__input[data-option-name="Color" i] .product-form__input-button {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px !important;
  min-height: 28px !important;
  max-width: 28px !important;
  max-height: 28px !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  padding: 0 !important;
  margin: 0 !important;
  /* hide the option text inside the label */
  font-size: 0 !important;
  color: transparent !important;
  text-indent: -9999px !important;
  overflow: hidden !important;
  /* Default neutral fill if JS hasn't painted yet */
  background-color: #ccc;
  /* White inner ring + thin outer black border */
  box-shadow:
    inset 0 0 0 2px #ffffff,
    0 0 0 1px rgba(0, 0, 0, 0.55);
  transition: box-shadow 0.18s ease, transform 0.12s ease;
  position: relative;
  display: block !important;
  border: none !important;
}

.product-form__input[data-option-name="Color" i] label:hover {
  transform: scale(1.08);
}

/* Selected — thick ring around the swatch */
.product-form__input[data-option-name="Color" i] input[type="radio"]:checked + label,
.product-form__input[data-option-name="Color" i] input[type="radio"]:checked + .product-form__input-button {
  box-shadow:
    inset 0 0 0 3px #ffffff,
    0 0 0 2px #000000 !important;
}

/* === Mobile: stack horizontally above the size selector === */
@media screen and (max-width: 749px) {
  .product-form__input[data-option-name="Color" i],
  .product-form__input[data-option-name="Colour" i] {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    flex-direction: row !important;
    justify-content: center !important;
    margin: 14px auto !important;
  }
}

/* === SIZE PILL SELECTOR (text pills, not swatches) === */
.product-form__input--pill,
.product-form__input[data-option-name="Size" i],
.product-form__input[data-option-name="Sizes" i] {
  margin-top: 24px !important;
  margin-bottom: 0 !important;
}

.product-form__input--pill .form__label,
.product-form__input[data-option-name="Size" i] .form__label,
.product-form__input[data-option-name="Size" i] legend {
  display: none !important;
}

/* Force size SWATCHES to render as text pills */
.product-form__input[data-option-name="Size" i] label,
.product-form__input[data-option-name="Sizes" i] label {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-width: 48px !important;
  max-width: none !important;
  height: 40px !important;
  padding: 0 14px !important;
  margin: 0 6px 8px 0 !important;
  border: 1px solid rgba(0, 0, 0, 0.18) !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  color: #000000 !important;
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
  text-indent: 0 !important;
  cursor: pointer !important;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease !important;
  box-shadow: none !important;
  overflow: visible !important;
  position: relative !important;
}

/* Hide ALL inner spans (color circles + extras) in size labels — only the size text shows */
.product-form__input[data-option-name="Size" i] label .swatch,
.product-form__input[data-option-name="Size" i] label .ck-swatch,
.product-form__input[data-option-name="Size" i] label .ck-swatch--no-color,
.product-form__input[data-option-name="Sizes" i] label .swatch,
.product-form__input[data-option-name="Sizes" i] label .ck-swatch {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  visibility: hidden !important;
  position: absolute !important;
}

/* Hide ALL inner text/spans inside size labels (visually-hidden, label-text, etc.) */
.product-form__input[data-option-name="Size" i] label,
.product-form__input[data-option-name="Sizes" i] label {
  font-size: 0 !important;
  color: transparent !important;
}

.product-form__input[data-option-name="Size" i] label *,
.product-form__input[data-option-name="Sizes" i] label * {
  display: none !important;
}

/* Render ONLY the size letter from the label's title attribute */
.product-form__input[data-option-name="Size" i] label::after,
.product-form__input[data-option-name="Sizes" i] label::after {
  content: attr(title);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  color: #000000 !important;
  letter-spacing: 0.04em !important;
  line-height: 1 !important;
}

.product-form__input[data-option-name="Size" i] input[type="radio"]:checked + label::after,
.product-form__input[data-option-name="Sizes" i] input[type="radio"]:checked + label::after {
  color: #ffffff !important;
}

.product-form__input[data-option-name="Size" i] input[type="radio"]:checked + label,
.product-form__input[data-option-name="Sizes" i] input[type="radio"]:checked + label {
  background: #000000 !important;
  background-color: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
}

.product-form__input[data-option-name="Size" i] label:hover {
  border-color: #000000 !important;
}

/* For COLOR swatches — hide the text label (color name) so only the circle shows */
.product-form__input[data-option-name="Color" i] label .swatch-input__label-text,
.product-form__input[data-option-name="Colour" i] label .swatch-input__label-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
}

/* Make sure the inner .swatch span IS the colored circle for color options */
.product-form__input[data-option-name="Color" i] label .swatch,
.product-form__input[data-option-name="Color" i] label .ck-swatch,
.product-form__input[data-option-name="Colour" i] label .swatch {
  display: block !important;
  position: absolute !important;
  inset: 2px !important;
  width: calc(100% - 4px) !important;
  height: calc(100% - 4px) !important;
  border-radius: 50% !important;
  background: var(--swatch--background, transparent) !important;
  background-image: none !important;
  /* Kill Dawn's diagonal-stripe "unavailable" pattern */
  mask-image: none !important;
  -webkit-mask-image: none !important;
}

/* Override Dawn's .swatch--unavailable styling that adds a diagonal stripe */
.product-form__input[data-option-name="Color" i] .swatch--unavailable {
  background: var(--swatch--background, #ccc) !important;
  background-image: none !important;
}

/* Each size pill */
.product-form__input--pill input[type="radio"] + label,
.product-form__input--pill .product-form__input-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 48px !important;
  height: 40px !important;
  padding: 0 14px !important;
  margin: 0 6px 8px 0 !important;
  border: 1px solid rgba(0, 0, 0, 0.18) !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  color: #000000 !important;
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  letter-spacing: 0.04em !important;
  cursor: pointer !important;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease !important;
}

.product-form__input--pill input[type="radio"]:checked + label,
.product-form__input--pill input[type="radio"]:checked + .product-form__input-button,
.product-form__input--pill input[type="radio"]:checked ~ label {
  background: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
}

.product-form__input--pill input[type="radio"] + label:hover {
  border-color: #000000 !important;
}

/* "Size Chart" link above CTA — small gray text */
.product .product__view-details {
  display: inline-block !important;
  margin-top: 4px !important;
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: rgba(0, 0, 0, 0.55) !important;
  text-decoration: underline !important;
}

/* === ADD TO CART — big black filled, uppercase === */
.product-form__buttons,
.product-form {
  margin-top: 24px !important;
}

.product-form__submit,
.product-form button[type="submit"] {
  width: auto !important;
  min-width: 320px !important;
  height: 68px !important;
  padding: 0 48px !important;
  background: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 14px !important;
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif !important;
  font-weight: 900 !important;
  font-size: 26px !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background 0.2s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.product-form__submit:hover {
  background: #1a1a1a !important;
}

.product-form__submit:disabled,
.product-form__submit[aria-disabled="true"] {
  background: rgba(0, 0, 0, 0.55) !important;
  color: #ffffff !important;
  cursor: not-allowed !important;
}

/* "Free shipping over $XXX" — live progress bar, pulsates green */
.ck-shipping-note {
  display: block;
  margin: 16px 0 0;
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #000000;
  text-align: left;
  max-width: 360px;
}

.ck-shipping-note__text {
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.ck-shipping-note__bar {
  display: block;
  position: relative;
  width: 100%;
  height: 8px;
  background: rgba(0, 0, 0, 0.07);
  border-radius: 99px;
  overflow: hidden;
}

.ck-shipping-note__bar-fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #16C172 0%, #1FAE5C 50%, #0E9F4D 100%);
  background-size: 200% 100%;
  border-radius: 99px;
  transition: width 0.6s var(--ck-ease-out-quart);
  /* Perpetual shimmer removed per audit P1-3 — emil rule: animations on
     things the user sees often = drop. The fill width itself is the signal.
     Unlocked-state celebration glow below is a one-time event so it stays. */
}

/* When goal reached, lock to solid bright green with one-time glow celebration */
.ck-shipping-note--unlocked .ck-shipping-note__bar-fill {
  background: #1FAE5C;
  box-shadow: 0 0 14px rgba(31, 174, 92, 0.55);
}

.ck-shipping-note--unlocked .ck-shipping-note__text {
  color: #0E9F4D;
}

/* @keyframes ck-shipping-bar-pulse removed per audit P1-3 (2026-05-06) */

/* === DETAILS — minimal, curated, aesthetic === */
.ck-product-details-header {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif !important;
  font-weight: 800 !important;
  font-size: 18px !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: #000000 !important;
  margin: 40px 0 14px !important;
  padding-bottom: 10px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12) !important;
}

.ck-product-details-body,
.product__description {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: rgba(0, 0, 0, 0.78) !important;
  font-weight: 500 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.product__description p {
  margin: 0 0 12px !important;
  font-size: 14px !important;
  font-style: italic !important;
  color: rgba(0, 0, 0, 0.65) !important;
}

.product__description ul,
.product__description ol {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.product__description ul li,
.product__description ol li {
  padding: 8px 0 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: rgba(0, 0, 0, 0.85) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
  letter-spacing: 0.01em !important;
}

.product__description ul li:last-child,
.product__description ol li:last-child {
  border-bottom: none !important;
}

.product__description strong,
.product__description b {
  font-weight: 800 !important;
  color: #000000 !important;
}

/* Hide leftover Dawn collapsibles if any still render from old block_orders */
.product__accordion {
  display: none !important;
}

/* === Two-column product layout — image left, info right with sticky === */
@media screen and (min-width: 990px) {
  .product--medium .product__media-wrapper,
  .product--large .product__media-wrapper {
    width: 58% !important;
  }
  .product--medium .product__info-wrapper,
  .product--large .product__info-wrapper {
    width: 38% !important;
    padding-left: 48px !important;
  }
}

/* --- Page Templates (About, Contact, FAQ) --- */
.page-header__heading {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Accordion / Collapsible for FAQ */
.accordion .accordion__title {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 14px;
}

/* === CART DRAWER — sleek slide-in panel anchored to RIGHT edge === */
/* Outer custom element acts as the fixed-position fullscreen container */
cart-drawer {
  display: block !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1000 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  background: transparent !important;
  transform: none !important;
  opacity: 0;
  transition: opacity 0.25s ease;
}

/* Force ALL descendants non-interactive when closed */
cart-drawer:not(.active) * {
  pointer-events: none !important;
}

cart-drawer.active {
  visibility: visible !important;
  pointer-events: auto !important;
  opacity: 1;
}

cart-drawer.active * {
  pointer-events: auto;
}

/* Overlay covers entire viewport */
cart-drawer #CartDrawer-Overlay,
cart-drawer .cart-drawer__overlay {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.45) !important;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: auto;
  cursor: pointer;
}

cart-drawer.active #CartDrawer-Overlay,
cart-drawer.active .cart-drawer__overlay {
  opacity: 1;
}

/* #CartDrawer is the fullscreen container holding both overlay + sliding panel */
cart-drawer #CartDrawer,
cart-drawer .cart-drawer {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
  display: block !important;
  border: none !important;
  padding: 0 !important;
}

/* The inner sliding panel — anchored right, slides in/out */
cart-drawer .drawer__inner {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: auto !important;
  width: 100% !important;
  max-width: 440px !important;
  height: 100% !important;
  background: #ffffff !important;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15) !important;
  transform: translateX(100%) !important;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
  display: flex !important;
  flex-direction: column !important;
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif !important;
  border: none !important;
  padding: 0 !important;
  z-index: 2 !important;
}

cart-drawer.active .drawer__inner {
  transform: translateX(0) !important;
}

.cart-drawer__inner,
cart-drawer .drawer__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  overflow: hidden;
}

/* Header bar */
.cart-drawer__header,
cart-drawer .drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  flex: 0 0 auto;
}

.cart-drawer__heading,
cart-drawer .drawer__heading,
cart-drawer h2 {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif !important;
  font-weight: 900 !important;
  font-size: 20px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #000000 !important;
  margin: 0 !important;
}

.cart-drawer__close,
cart-drawer .drawer__close {
  background: transparent !important;
  border: none !important;
  color: #000000 !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: background 0.18s ease !important;
}

.cart-drawer__close:hover,
cart-drawer .drawer__close:hover {
  background: rgba(0, 0, 0, 0.06) !important;
}

/* Items area scrolls */
.cart-drawer__form,
cart-drawer form,
cart-drawer .cart-drawer__items {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 16px 24px;
  background: #ffffff;
}

cart-drawer .cart-items,
cart-drawer .cart-items__row {
  border: none !important;
  background: transparent !important;
}

cart-drawer .cart-item {
  display: grid !important;
  grid-template-columns: 80px 1fr auto !important;
  gap: 14px !important;
  padding: 18px 0 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
  align-items: center !important;
}

cart-drawer .cart-item__media,
cart-drawer .cart-item__image-container {
  width: 80px !important;
  max-width: 80px !important;
  height: 80px !important;
  overflow: hidden !important;
  background: #f8f8f8 !important;
  border-radius: 0 !important;
}

cart-drawer .cart-item__image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 0 !important;
}

cart-drawer .cart-item__name {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: #000000 !important;
  text-decoration: none !important;
  line-height: 1.25 !important;
  display: block !important;
  margin-bottom: 6px !important;
}

cart-drawer .cart-item__details .product-option,
cart-drawer .cart-item__details dt,
cart-drawer .cart-item__details dd {
  font-size: 11px !important;
  font-weight: 600 !important;
  color: rgba(0, 0, 0, 0.55) !important;
  letter-spacing: 0.02em !important;
}

cart-drawer .cart-item__price-wrapper .price,
cart-drawer .cart-item__totals .price,
cart-drawer .cart-item__final-price,
cart-drawer .price--end {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif !important;
  font-weight: 800 !important;
  font-size: 14px !important;
  color: #000000 !important;
}

/* Quantity in drawer — small pill */
cart-drawer .cart-item .quantity {
  border: 1px solid rgba(0, 0, 0, 0.18) !important;
  border-radius: 999px !important;
  height: 28px !important;
  min-width: 80px !important;
  display: inline-flex !important;
  align-items: center !important;
  margin-top: 6px !important;
}

cart-drawer .cart-item .quantity__button {
  width: 26px !important;
  font-size: 13px !important;
  background: transparent !important;
  border: none !important;
  color: #000000 !important;
  cursor: pointer !important;
}

cart-drawer .cart-item .quantity__button:hover {
  color: #1FAE5C !important;
}

cart-drawer .cart-item .quantity__input {
  width: 28px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-align: center !important;
  border: none !important;
  background: transparent !important;
}

/* Trash button — red */
cart-drawer .cart-remove-button,
cart-drawer cart-remove-button .button {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: transparent !important;
  border: none !important;
  color: #E11D2A !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  min-width: 0 !important;
  min-height: 0 !important;
}

cart-drawer .cart-remove-button svg {
  width: 16px !important;
  height: 16px !important;
  color: #E11D2A !important;
}

cart-drawer .cart-remove-button:hover {
  background: rgba(211, 45, 79, 0.1) !important;
}

/* Footer with totals + checkout */
.cart-drawer__footer,
cart-drawer .drawer__footer {
  flex: 0 0 auto;
  padding: 20px 24px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
}

.cart-drawer__footer .totals,
cart-drawer .totals {
  display: flex !important;
  justify-content: space-between !important;
  align-items: baseline !important;
  margin-bottom: 12px !important;
  padding: 0 !important;
}

cart-drawer .totals__total {
  font-weight: 800 !important;
  font-size: 13px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: rgba(0, 0, 0, 0.65) !important;
  margin: 0 !important;
}

cart-drawer .totals__total-value {
  font-weight: 900 !important;
  font-size: 22px !important;
  color: #000000 !important;
}

cart-drawer .tax-note,
cart-drawer .cart__dynamic-checkout-buttons {
  font-size: 11px !important;
  color: rgba(0, 0, 0, 0.5) !important;
  margin-bottom: 12px !important;
  text-align: left !important;
}

/* Checkout button in drawer */
cart-drawer #CartDrawer-Checkout,
cart-drawer .cart__checkout-button {
  width: 100% !important;
  background: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 12px !important;
  height: 56px !important;
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif !important;
  font-weight: 900 !important;
  font-size: 16px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background 0.18s ease !important;
}

cart-drawer #CartDrawer-Checkout:hover,
cart-drawer .cart__checkout-button:hover {
  background: #1FAE5C !important;
}

/* Empty drawer state */
cart-drawer .drawer__inner-empty,
cart-drawer .cart-drawer__empty-content {
  text-align: center;
  padding: 60px 24px;
}

cart-drawer .cart-drawer__empty-content h2 {
  font-size: 18px !important;
  letter-spacing: 0.06em !important;
  color: rgba(0, 0, 0, 0.5) !important;
}

/* Mobile — full width */
@media screen and (max-width: 749px) {
  cart-drawer {
    max-width: 100%;
  }
}

/* === CART PAGE — sleek minimal === */
#main-cart-items,
.cart__contents,
.cart__items,
.cart__footer {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif !important;
}

.main-page-title,
.cart__warnings .cart__empty-text,
.cart__title,
.title-wrapper-with-link h1 {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif !important;
  font-weight: 900 !important;
  font-size: 34px !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: #000000 !important;
  margin: 32px 0 24px !important;
}

/* Cart line items — clean rows */
.cart-items {
  border-collapse: separate !important;
  border-spacing: 0 !important;
}

.cart-items th {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif !important;
  font-weight: 800 !important;
  font-size: 11px !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: rgba(0, 0, 0, 0.55) !important;
  padding: 16px 12px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12) !important;
}

.cart-item {
  padding: 28px 0 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.cart-item__media {
  border-radius: 0 !important;
}

.cart-item__image {
  border-radius: 0 !important;
}

.cart-item__name {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif !important;
  font-weight: 800 !important;
  font-size: 22px !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: #000000 !important;
  text-decoration: none !important;
  line-height: 1.25 !important;
}

/* Bigger product image in cart line item */
.cart-item__media,
.cart-item__image-container {
  width: 140px !important;
  max-width: 140px !important;
}

.cart-item__image {
  width: 100% !important;
  height: auto !important;
}

@media screen and (max-width: 749px) {
  .cart-item__media,
  .cart-item__image-container {
    width: 96px !important;
    max-width: 96px !important;
  }
}

.cart-item__name:hover {
  color: #000000 !important;
}

.cart-item__details .product-option,
.cart-item__details dt,
.cart-item__details dd {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: rgba(0, 0, 0, 0.65) !important;
  letter-spacing: 0.02em !important;
}

.cart-item__price-wrapper .price,
.cart-item__totals .price,
.cart-item__final-price {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif !important;
  font-weight: 800 !important;
  font-size: 18px !important;
  color: #000000 !important;
  letter-spacing: 0 !important;
}

/* Quantity selector — small, tight pill */
.cart-item .quantity {
  border: 1px solid rgba(0, 0, 0, 0.18) !important;
  border-radius: 999px !important;
  height: 30px !important;
  width: auto !important;
  min-width: 92px !important;
  overflow: hidden !important;
  display: inline-flex !important;
  align-items: center !important;
}

.cart-item .quantity__button {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  color: #000000 !important;
  background: transparent !important;
  border: none !important;
  width: 28px !important;
  min-width: 28px !important;
  height: 100% !important;
  cursor: pointer !important;
  padding: 0 !important;
  transition: color 0.15s ease !important;
}

.cart-item .quantity__button:hover {
  color: #1FAE5C !important;
}

.cart-item .quantity__input {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  color: #000000 !important;
  border: none !important;
  background: transparent !important;
  text-align: center !important;
  width: 32px !important;
  padding: 0 !important;
  height: 100% !important;
}

/* Trash / remove button — RED */
.cart-remove-button,
cart-remove-button .button,
.cart-remove-button .button {
  background: transparent !important;
  border: none !important;
  color: #E11D2A !important;
  width: 36px !important;
  height: 36px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  transition: background 0.18s ease, color 0.18s ease !important;
  padding: 0 !important;
  min-width: 0 !important;
  min-height: 0 !important;
}

.cart-remove-button svg,
.cart-remove-button .icon,
.cart-remove-button .icon-remove {
  color: #E11D2A !important;
  fill: #E11D2A !important;
  stroke: #E11D2A !important;
  width: 18px !important;
  height: 18px !important;
}

.cart-remove-button:hover {
  background: rgba(211, 45, 79, 0.1) !important;
  color: #B11935 !important;
}

.cart-remove-button:hover svg {
  color: #B11935 !important;
  fill: #B11935 !important;
  stroke: #B11935 !important;
}

/* Cart footer — totals + checkout */
.cart__footer {
  padding: 24px 0 !important;
  border-top: 2px solid #000000 !important;
  margin-top: 24px !important;
}

.totals,
.totals h2,
.totals__total,
.totals__total-value {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif !important;
}

.totals__total {
  font-weight: 800 !important;
  font-size: 16px !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: #000000 !important;
}

.totals__total-value {
  font-weight: 900 !important;
  font-size: 28px !important;
  color: #000000 !important;
}

.tax-note {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif !important;
  font-size: 12px !important;
  color: rgba(0, 0, 0, 0.5) !important;
  letter-spacing: 0.02em !important;
}

/* Checkout button — big black pill */
#checkout,
.cart__checkout-button {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif !important;
  font-weight: 900 !important;
  font-size: 18px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  background: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 12px !important;
  height: 60px !important;
  padding: 0 36px !important;
  width: 100% !important;
  cursor: pointer !important;
  transition: background 0.18s ease !important;
}

#checkout:hover,
.cart__checkout-button:hover {
  background: #1FAE5C !important;
}

/* Empty cart */
.cart__empty-text {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif !important;
  font-weight: 700 !important;
  font-size: 22px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  color: rgba(0, 0, 0, 0.5) !important;
}

/* Mobile cart */
@media screen and (max-width: 749px) {
  .main-page-title {
    font-size: 24px !important;
  }
  .cart-item__name {
    font-size: 15px !important;
  }
  .cart-item__price-wrapper .price,
  .cart-item__totals .price {
    font-size: 16px !important;
  }
  .totals__total-value {
    font-size: 22px !important;
  }
}

/* --- Global Overrides --- */

/* Remove all border radius */
* {
  --media-radius: 0px !important;
  --product-card-corner-radius: 0rem !important;
  --badge-corner-radius: 0rem !important;
}

/* Zero section spacing */
.section-{{ section.id }}-padding {
  padding-top: 0;
  padding-bottom: 0;
}

/* Headings */
h1, h2, h3, h4, h5, h6,
.h0, .h1, .h2, .h3, .h4, .h5 {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  color: #000000;
}

/* Links */
a {
  color: #000000;
}

a:hover {
  color: #E11D2A;
}

/* Remove default Dawn announcement bar styles since we're using marquee */
.announcement-bar-section {
  display: none !important;
}

/* --- Mobile Menu Drawer --- */
.menu-drawer {
  background-color: #ffffff;
}

.menu-drawer__menu-item {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000;
}

.menu-drawer__menu-item:hover {
  color: #E11D2A;
}

/* --- Mobile Responsive --- */
@media screen and (max-width: 749px) {
  .header {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  .header__heading-logo-image {
    max-width: 32px !important;
  }

  .collection__title .title {
    font-size: 20px;
  }

  .product__title {
    font-size: 22px;
  }

  .section-heading-bar__title {
    font-size: 16px;
  }

  .card__heading {
    font-size: 11px;
  }

  .price-item {
    font-size: 12px;
  }
}

@media screen and (max-width: 989px) {
  /* Ensure 2 col grid on tablet */
  .featured-collection .grid--3-col-desktop {
    --grid-columns: 2;
  }
}

/* --- Policy Pages --- */
.policy-page {
  padding: 48px 0 64px;
}

.policy-page__inner {
  max-width: 760px;
  margin: 0 auto;
}

.policy-page__title {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000000;
  margin: 0 0 8px;
}

.policy-page__updated {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 40px;
}

.policy-page__content h2 {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000000;
  margin: 36px 0 12px;
}

.policy-page__content h3 {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.03em;
  color: #000000;
  margin: 24px 0 8px;
}

.policy-page__content p {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #333333;
  margin: 0 0 14px;
}

.policy-page__content ul {
  margin: 0 0 14px;
  padding-left: 20px;
}

.policy-page__content li {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 6px;
}

.policy-page__content a {
  color: #E11D2A;
  font-weight: 600;
  font-size: inherit;
  letter-spacing: normal;
  text-transform: none;
  text-decoration: underline;
}

.policy-page__content a:hover {
  color: #000000;
}

.policy-page__content strong {
  color: #000000;
  font-weight: 700;
}

.policy-page__content em {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
}

/* Policy page table (shipping) */
.policy-page__table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 20px;
}

.policy-page__table th,
.policy-page__table td {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  font-size: 13px;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.policy-page__table th {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #000000;
  background-color: #f8f8f8;
}

.policy-page__table td {
  color: #333333;
}

/* Footer policy links */
.policies--custom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 16px;
  margin-top: 8px;
}

.policies--custom a {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.5);
  transition: color 0.2s ease;
}

.policies--custom a:hover {
  color: #E11D2A;
}

@media screen and (max-width: 749px) {
  .policy-page {
    padding: 32px 0 48px;
  }

  .policy-page__title {
    font-size: 24px;
  }

  .policy-page__content h2 {
    font-size: 16px;
    margin: 28px 0 10px;
  }

  .policy-page__content p,
  .policy-page__content li {
    font-size: 13px;
  }

  .policy-page__table th,
  .policy-page__table td {
    font-size: 12px;
    padding: 10px 12px;
  }

  .policies--custom {
    gap: 4px 12px;
  }
}

/* --- Newsletter Section (sleeker, with consent disclosure) --- */
.ck-newsletter {
  background: #ffffff;
  padding: 36px 0 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.ck-newsletter__inner {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.ck-newsletter__heading {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000000;
  margin: 0 0 6px;
  line-height: 1.2;
}

.ck-newsletter__subtext {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.55);
  margin: 0 0 16px;
  line-height: 1.4;
}

.ck-newsletter__form {
  width: 100%;
}

.ck-newsletter__field-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 380px;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  background: #ffffff;
  overflow: hidden;
}

.ck-newsletter__input {
  flex: 1 1 auto;
  border: none;
  outline: none;
  padding: 10px 16px;
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #000000;
  background: transparent;
  min-width: 0;
}

.ck-newsletter__input::placeholder {
  color: rgba(0, 0, 0, 0.45);
}

.ck-newsletter__button {
  border: none;
  background: #000000;
  color: #ffffff;
  padding: 10px 22px;
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
  flex: 0 0 auto;
}

.ck-newsletter__button:hover {
  background: #E11D2A;
}

.ck-newsletter__disclosure {
  margin: 14px auto 0;
  max-width: 440px;
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.45);
  text-transform: none;
  letter-spacing: 0.01em;
}

.ck-newsletter__disclosure a {
  color: rgba(0, 0, 0, 0.7);
  text-decoration: underline;
}

.ck-newsletter__disclosure a:hover {
  color: #000000;
}

.ck-newsletter__message {
  margin-top: 16px;
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.ck-newsletter__message--error {
  color: #c0392b;
}

.ck-newsletter__message--success {
  color: #1e8e3e;
}

@media screen and (max-width: 749px) {
  .ck-newsletter {
    padding: 44px 0;
  }
  .ck-newsletter__heading {
    font-size: 24px;
  }
  .ck-newsletter__subtext {
    font-size: 14px;
  }
  .ck-newsletter__field-row {
    flex-direction: column;
  }
  .ck-newsletter__button {
    border-top: 1.5px solid #000000;
  }
}

/* --- Utility --- */
.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  word-wrap: normal !important;
}

/* ==========================================================================
   2026-05-06 audit additions
   - Footer brand-voice line + meta + ghost shipping pill (audit P1-1)
   - Empty-collection drop-coming tile (audit P0-1)
   - Universal :active scale(0.97) press states (audit P2-1, emil rule)
   - Reduced-motion overrides
   ========================================================================== */

/* --- Footer voice + meta (P1-1) --- */
.ck-footer__voice {
  margin: 0 auto 14px;
  padding: 0 20px;
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #E11D2A;
  text-align: center;
  max-width: 520px;
}

.ck-footer__meta {
  margin: 18px auto 0;
  padding: 0 20px;
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.42);
  text-align: center;
}

/* Ghost shipping pill in footer — looks like the others but inert (no link) */
.ck-footer__pill--ghost {
  background: transparent;
  color: #E11D2A;
  border-color: #E11D2A;
  cursor: default;
}
.ck-footer__pill--ghost:hover {
  background: transparent;
  color: #E11D2A;
  border-color: #E11D2A;
  transform: none;
}

@media screen and (max-width: 749px) {
  .ck-footer__voice {
    font-size: 14px;
  }
  .ck-footer__meta {
    font-size: 9px;
    letter-spacing: 0.14em;
  }
}

/* --- Empty-collection "Drop coming" tile (P0-1) --- */
.ck-drop-coming__item {
  /* Take the full width of the grid row even when grid is multi-col */
  grid-column: 1 / -1;
  background: #ffffff !important;
  box-shadow: none !important; /* override the hairline grid bg/shadow */
}

.ck-drop-coming {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  padding: 80px 32px;
  background: #0a0a0a;
  color: #ffffff;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.ck-drop-coming::before {
  /* Subtle inner top-edge highlight — emil-style "physical edge" detail.
     Tinted shadow per impeccable color rule, not a generic glow. */
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06),
              inset 0 -1px 0 rgba(225, 29, 42, 0.18);
}

.ck-drop-coming__eyebrow {
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #E11D2A;
}

.ck-drop-coming__heading {
  margin: 0;
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  font-weight: 900;
  font-size: 38px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.05;
  color: #ffffff;
}

.ck-drop-coming__body {
  margin: 0;
  max-width: 56ch;
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  font-style: italic;
}

.ck-drop-coming__cta {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 26px;
  background: #E11D2A;
  color: #ffffff;
  font-family: 'Hanken Grotesk', Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  transition: background 180ms var(--ck-ease-out),
              transform 160ms var(--ck-ease-out);
}

.ck-drop-coming__cta:hover {
  background: #B81725;
  color: #ffffff;
}

.ck-drop-coming__cta:active {
  transform: scale(0.97);
}

@media screen and (max-width: 749px) {
  .ck-drop-coming {
    padding: 56px 22px;
    min-height: 260px;
  }
  .ck-drop-coming__heading {
    font-size: 28px;
  }
  .ck-drop-coming__body {
    font-size: 14px;
  }
}

/* --- Universal :active scale(0.97) press feedback (P2-1, emil rule).
       Buttons must feel responsive on press. Subtle scale (97%) confirms
       the interface heard the tap. Hardware-accelerated via transform.   */
.button,
.ck-footer__pill,
.ck-footer__icon,
.ck-newsletter__button,
.product-form__submit,
.product-form button[type="submit"],
.cart__checkout-button,
cart-drawer #CartDrawer-Checkout,
.ck-drop-coming__cta,
#checkout {
  transition-property: transform, background, color, border-color, box-shadow;
  transition-duration: 180ms;
  transition-timing-function: var(--ck-ease-out);
}

.button:active,
.ck-footer__pill:not(.ck-footer__pill--ghost):active,
.ck-footer__icon:active,
.ck-newsletter__button:active,
.product-form__submit:active,
.product-form button[type="submit"]:active,
.cart__checkout-button:active,
cart-drawer #CartDrawer-Checkout:active,
.ck-drop-coming__cta:active,
#checkout:active {
  transform: scale(0.97);
}

/* Slightly stronger press for the giant ADD TO CART pill */
.product-form__submit:active,
.product-form button[type="submit"]:active {
  transform: scale(0.985);
}

/* --- 2026-05-06 LIVE BUG FIXES ---------------------------------------------

   Three bugs surfaced post-deploy:
     1. Persistent red ! icon between size pills and ADD TO CART. Caused by
        Dawn's `.product-form__error-message-wrapper:not([hidden])` rule
        being defeated somehow — the [hidden] HTML attribute exists but the
        wrapper still computes display: flex. Force-respect [hidden].
     2. Clicking a size pill or quantity +/- button hits the inner SVG/span
        instead of the button, which (a) makes Dawn's quantity-input
        misread event.target.name (already fixed in global.js) and
        (b) caused transient rendering glitches on size click. Suppress
        click-target on inner children so every click lands on the button.
     3. Cart drawer / cart page quantity reverts to 0 on increment. Same
        root cause as (2) — fixed in global.js + reinforced here. */

.product-form__error-message-wrapper[hidden] {
  display: none !important;
}

/* All quantity-button inner SVG/spans pass clicks through to the button itself */
.quantity__button > *,
.quantity__button svg,
.quantity__button .svg-wrapper {
  pointer-events: none !important;
}

/* Size + color swatch label inner content passes clicks through to the label */
.product-form__input--swatch label > *,
.product-form__input--swatch label svg,
.product-form__input[data-option-name="Size" i] label > *,
.product-form__input[data-option-name="Sizes" i] label > *,
.product-form__input[data-option-name="Color" i] label > *,
.product-form__input[data-option-name="Colour" i] label > * {
  pointer-events: none !important;
}

/* When the user clicks a size pill, Shopify re-renders the variant section.
   Focus can stay on the OLD label while the NEW label is :checked, which
   makes both labels visually-selected at once (Popeye's "size doubling" bug —
   stale focus-visible ring on the previous pill while the new one is filled
   black). Suppress the ring on any non-checked size pill so only the
   currently-checked label carries selection state. Audit fix 2026-05-06. */
.product-form__input[data-option-name="Size" i] input[type="radio"]:not(:checked):focus-visible + label,
.product-form__input[data-option-name="Sizes" i] input[type="radio"]:not(:checked):focus-visible + label,
.product-form__input[data-option-name="Color" i] input[type="radio"]:not(:checked):focus-visible + label,
.product-form__input[data-option-name="Colour" i] input[type="radio"]:not(:checked):focus-visible + label,
.product-form__input--pill input[type="radio"]:not(:checked):focus-visible + label,
.product-form__input--swatch input[type="radio"]:not(:checked):focus-visible + label {
  outline: none !important;
  box-shadow: none !important;
}

/* And: when checked + focus-visible, ensure the ring is the brand-neutral
   black (not whatever inherited --color-foreground happens to compute to).
   This stops any accidental red ring from a hex-bumped color scheme. */
.product-form__input[data-option-name="Size" i] input[type="radio"]:checked:focus-visible + label,
.product-form__input[data-option-name="Sizes" i] input[type="radio"]:checked:focus-visible + label,
.product-form__input[data-option-name="Color" i] input[type="radio"]:checked:focus-visible + label,
.product-form__input[data-option-name="Colour" i] input[type="radio"]:checked:focus-visible + label,
.product-form__input--pill input[type="radio"]:checked:focus-visible + label,
.product-form__input--swatch input[type="radio"]:checked:focus-visible + label {
  outline: 1.5px solid #000000 !important;
  outline-offset: 2px !important;
  box-shadow: none !important;
}

/* --- Reduced-motion override (emil + a11y).
       Marquee + hover scale + transitions must respect prefers-reduced-motion. */
@media (prefers-reduced-motion: reduce) {
  .marquee-bar__track {
    animation: none;
  }
  .ck-tabs__tab,
  .button,
  .ck-footer__pill,
  .ck-footer__icon,
  .ck-newsletter__button,
  .product-form__submit,
  .cart__checkout-button,
  .ck-drop-coming__cta {
    transition: none;
  }
  *:active {
    transform: none !important;
  }
}
