/* ============================================================================
   VERDA — base.css
   Reconstructed from the original VERDA design (inline-styled markup lifted into
   reusable classes). Reset + type + chrome (announcement / header / mega-menu /
   footer) + interactive overlays (scrim / cart drawer / quick view / toast).

   Color comes from the --color-background / --color-foreground RGB triples in
   color-schemes.liquid; design tokens come from css-variables.liquid. VERDA's
   literal palette (--accent / --ink / --cream) is kept alongside so the original
   design's references resolve unchanged.
   ============================================================================ */

/* ---- Reset --------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  position: relative;
  font-family: var(--font-sans--family);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.3;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--accent);
  color: var(--on-accent);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

input,
textarea,
select {
  font-family: inherit;
  color: inherit;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(var(--focus-ring-color), 0.7);
}

main {
  display: block;
}

/* ---- Keyframes (lifted from the source <style> block) -------------------- */
@keyframes vmarq {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes vqv {
  from { opacity: 0; transform: translateY(18px) scale(.985); }
  to   { opacity: 1; transform: none; }
}
@keyframes vmega {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: none; }
}

/* ---- Container ----------------------------------------------------------- */
.page-width {
  max-width: var(--page-width);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
  width: 100%;
}

/* ---- Reusable type helpers (mirror the source's repeated inline styles) --- */
.mono-eyebrow {
  font-family: var(--font-mono--family);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(var(--ink-rgb), .55);
}
.serif-italic {
  font-family: var(--font-serif--family);
  font-style: italic;
}

/* ---- Buttons (pill system) ----------------------------------------------- */
.btn {
  font-family: var(--font-sans--family);
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  padding: 16px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  line-height: 1;
  white-space: nowrap;
}
.btn--ink     { background: var(--ink); color: var(--cream); }
.btn--accent  { background: var(--accent); color: var(--on-accent); }
.btn--outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }

/* ============================================================================
   ANNOUNCEMENT MARQUEE
   Dark ink bar, Space Mono uppercase, lime dot separators, CSS-driven scroll.
   ============================================================================ */
.announcement {
  background: var(--ink);
  color: var(--cream);
  height: var(--announce-height);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.announcement__track {
  display: flex;
  white-space: nowrap;
  animation: vmarq 26s linear infinite;
  font-family: var(--font-mono--family);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.announcement__group {
  display: flex;
  gap: 46px;
  padding-right: 46px;
}
.announcement__dot { color: var(--accent); }
@media (prefers-reduced-motion: reduce) {
  .announcement__track { animation: none; }
}

/* ============================================================================
   HEADER + NAV
   Cream blurred bar: VERDA wordmark + lime dot, text nav, search/account icons,
   dark Cart pill. Mega-menu panel revealed on hover (pure CSS).
   ============================================================================ */
/* Header group sticks to the top as a unit. The engine emits per-section classes
   (.announcement-bar-section, .header-section), NOT a single wrapper — the old
   .shopify-section-group-header selector never matched, so the header had no
   z-index and the mega-menu panel rendered BEHIND the next section (the hero).
   Stagger the sticky tops so the two stack, and keep z-index above page content
   so the hover mega-menu drops OVER the hero. */
.announcement-bar-section {
  position: sticky;
  top: 0;
  z-index: 71;
}
.header-section {
  position: sticky;
  top: var(--announce-height, 38px);
  z-index: 70;
}
.header {
  position: relative;
  background: rgba(246, 244, 237, .86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(var(--ink-rgb), .1);
}
.header__inner {
  max-width: var(--page-width);
  margin: 0 auto;
  height: var(--header-height);
  padding: 0 var(--page-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.header__wordmark {
  font-weight: 900;
  font-size: 25px;
  letter-spacing: -.02em;
}
.header__logo-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
}
.header__nav {
  display: flex;
  /* Items fill the full header height (links stay centered) so there is no
     hover dead-zone between a nav link and the mega panel below it — moving the
     mouse down to the panel keeps :hover continuous instead of closing it. */
  align-items: stretch;
  align-self: stretch;
  gap: 6px;
}
.header__nav-item {
  position: static;
  display: flex;
  align-items: center;
}
.header__nav-link {
  display: inline-block;
  font-family: var(--font-sans--family);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  padding: 10px 14px;
  letter-spacing: -.01em;
}
.header__nav-link--sale {
  font-weight: 700;
  color: var(--sale);
}
.header__utils {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.header__icon-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border-radius: 50%;
}
.header__cart {
  position: relative;
  height: 42px;
  padding: 0 16px 0 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 999px;
  font-family: var(--font-sans--family);
  font-weight: 600;
  font-size: 14px;
}
.header__cart-count {
  background: var(--accent);
  color: var(--on-accent);
  font-size: 12px;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  padding: 0 5px;
}

/* ---- MEGA MENU (CSS hover) ---------------------------------------------- */
.header__mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--cream);
  border-top: 1px solid rgba(var(--ink-rgb), .1);
  box-shadow: 0 30px 60px -28px rgba(var(--ink-rgb), .4);
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s var(--easing-default), visibility .2s;
}
.header__nav-item--has-mega:hover .header__mega,
.header__nav-item--has-mega:focus-within .header__mega,
.header__mega:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  animation: vmega .22s var(--easing-default) both;
}
.header__mega-inner {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 38px var(--page-gutter) 44px;
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1.5fr 2.4fr;
  gap: 40px;
}
.header__mega-col-title {
  font-family: var(--font-mono--family);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(var(--ink-rgb), .5);
  margin-bottom: 16px;
}
.header__mega-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.header__mega-link {
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -.01em;
  width: fit-content;
  border-bottom: 1.5px solid transparent;
}
.header__mega-link:hover {
  border-bottom-color: var(--ink);
}
.header__mega-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.header__mega-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #E7E1D6;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: #fff;
  transition: transform .25s var(--easing-default);
}
.header__mega-card:hover { transform: scale(1.015); }
.header__mega-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-mono--family);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 4px 8px;
  border-radius: 6px;
  z-index: 1;
}
.header__mega-card-scrim {
  background: linear-gradient(transparent, rgba(0, 0, 0, .4));
  position: absolute;
  inset: 0;
}
.header__mega-card-body { position: relative; }
.header__mega-card-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.05;
}
.header__mega-card-sub {
  font-size: 13px;
  opacity: .92;
  margin-top: 3px;
}

/* ============================================================================
   FOOTER
   Dark ink band: VERDA wordmark + tagline, link columns, legal row.
   ============================================================================ */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 72px var(--page-gutter) 36px;
}
.footer__inner {
  max-width: var(--page-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 36px;
}
.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__wordmark {
  font-weight: 900;
  font-size: 30px;
  letter-spacing: -.02em;
}
.footer__brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 10px;
}
.footer__tagline {
  font-family: var(--font-serif--family);
  font-style: italic;
  font-size: 19px;
  opacity: .8;
  margin: 16px 0 0;
  max-width: 30ch;
}
.footer__col-title {
  font-family: var(--font-mono--family);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .55;
  margin-bottom: 16px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
  opacity: .88;
}
.footer__link { color: inherit; }
.footer__link:hover { opacity: 1; text-decoration: underline; }
.footer__legal {
  max-width: var(--page-width);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-mono--family);
  font-size: 12px;
  letter-spacing: .06em;
  opacity: .6;
}

/* ============================================================================
   INTERACTIVE CHROME — scrim / cart drawer / quick view / toast
   Driven by assets/theme.js (vanilla, no framework). Open state = body classes
   / aria attributes toggled in JS.
   ============================================================================ */
.scrim {
  position: fixed;
  inset: 0;
  background: rgba(23, 14, 30, .5);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
  z-index: 80;
}
.scrim.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ---- Cart drawer --------------------------------------------------------- */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(420px, 92vw);
  background: var(--cream);
  z-index: 90;
  transform: translateX(106%);
  transition: transform .42s cubic-bezier(.5, .05, .2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -30px 0 60px -30px rgba(0, 0, 0, .5);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 26px;
  border-bottom: 1px solid rgba(var(--ink-rgb), .1);
}
.cart-drawer__title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.cart-drawer__title-count {
  font-family: var(--font-mono--family);
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--ink-rgb), .5);
}
.cart-drawer__close,
.icon-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(var(--ink-rgb), .07);
  display: grid;
  place-items: center;
  color: var(--ink);
}
.cart-drawer__empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  gap: 14px;
}
.cart-drawer__empty-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(var(--ink-rgb), .06);
  display: grid;
  place-items: center;
  color: rgba(var(--ink-rgb), .4);
}
.cart-drawer__empty-title { font-weight: 700; font-size: 17px; }
.cart-drawer__empty-sub {
  font-family: var(--font-serif--family);
  font-style: italic;
  color: rgba(var(--ink-rgb), .6);
  margin: 0;
}

/* ---- Quick view modal ---------------------------------------------------- */
.quick-view {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.quick-view.is-open {
  opacity: 1;
  pointer-events: auto;
}
.quick-view__panel {
  background: var(--cream);
  border-radius: calc(var(--radius) + 6px);
  width: min(820px, 100%);
  max-height: 88vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  animation: vqv .3s var(--easing-default) both;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .6);
}
.quick-view__media {
  background: #E7E1D6;
  min-height: 440px;
  position: relative;
}
.quick-view__body {
  padding: 34px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.quick-view__close {
  position: absolute;
  top: 18px;
  right: 18px;
}

/* ---- Toast --------------------------------------------------------------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%) translateY(12px);
  z-index: 120;
  background: var(--ink);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  opacity: 0;
  transition: opacity .3s, transform .3s;
  box-shadow: 0 16px 34px -12px rgba(0, 0, 0, .5);
  pointer-events: none;
}
.toast.is-open {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================================================
   PRODUCT CARD (carousel / grid)
   Portrait media tile, mono category caption, title, price, lime add button.
   ============================================================================ */
.card-product { display: flex; flex-direction: column; }
.card-product__media {
  position: relative;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #E7E1D6;
}
.card-product__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--easing-default);
}
.card-product__media:hover .card-product__image { transform: scale(1.05); }
.card-product__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-mono--family);
  font-size: 10px;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .92);
  background: rgba(0, 0, 0, .24);
  padding: 4px 7px;
  border-radius: 5px;
  z-index: 1;
}
.card-product__quick {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  font-family: var(--font-sans--family);
  font-weight: 700;
  font-size: 13px;
  background: rgba(255, 255, 255, .95);
  color: var(--ink);
  padding: 11px;
  border-radius: 999px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.card-product__body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
}
.card-product__cat {
  font-family: var(--font-mono--family);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(var(--ink-rgb), .5);
}
.card-product__title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-top: 3px;
}
.card-product__price {
  font-weight: 700;
  color: var(--ink);
  margin-top: 2px;
}
.card-product__add {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  display: grid;
  place-items: center;
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
.hero > .page-width > [data-reveal] {
  min-width: 0;
  max-width: 100%;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr) !important;
}
.newsletter__copy,
.newsletter__form,
.newsletter__input { min-width: 0; }

@media (max-width: 749px) {
  .hero > .page-width > [data-reveal][style*="grid-template-columns:1.05fr 1fr"] {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .hero > .page-width > [data-reveal][style*="grid-template-columns:1.05fr 1fr"] > :nth-child(2) {
    padding: 44px 28px 48px !important;
  }
  .hero > .page-width > [data-reveal][style*="grid-template-columns:1.05fr 1fr"] h1 {
    font-size: 44px !important;
    overflow-wrap: anywhere;
  }
  .hero > .page-width > [data-reveal][style*="grid-template-columns:1.05fr 1fr"] > :last-child {
    min-height: 420px;
  }
}

@media (max-width: 1024px) {
  .header__nav { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .quick-view__panel { grid-template-columns: 1fr; }
  .header__mega-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  :root { --sec-pad: 74px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .header__inner { gap: 8px; padding-inline: 12px; }
  .header__logo { gap: 4px; }
  .header__wordmark { font-size: 20px; }
  .header__logo-dot { width: 7px; height: 7px; margin-top: 5px; }
  .header__utils { gap: 3px; }
  .header__icon-btn { width: 34px; height: 34px; }
  .header__cart { height: 38px; padding-inline: 12px; }
  .header__cart span:not(.header__cart-count) { display: none; }
}

/* ============================================================================
   PRODUCT PAGE (PDP)
   Appended from the VERDA product-page design: two-column buy layout — sticky
   media gallery + thumbnails on the left, the buy column on the right (mono
   eyebrow, big title, price, serif lede, color/size swatches, quantity stepper,
   sticky add-to-cart, trust/reassurance row, details accordion, full
   description), plus the "You may also like" recommendations carousel. Selectors
   not already in base.css above; class names mirror the section markup.
   ============================================================================ */

/* ---- Gallery fade (source keyframe used by the active image) ------------- */
@keyframes vfade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.product { padding: calc(var(--sec-pad) * .42) 0 0; }

.product__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: start;
}

/* ---- Media gallery / thumbnails ----------------------------------------- */
/* Pin below the full sticky chrome (announcement bar + header), not just the
   header — otherwise the gallery slides under the header on scroll. ~120px,
   matching the design's sticky offset. */
.product__media { position: sticky; top: calc(var(--announce-height) + var(--header-height) + 8px); }
.product__media-main {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #E7E1D6;
}
.product__media-image,
.product__media-field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product__media-field { background: linear-gradient(150deg, #CDB096, #A9835F); }
.product__media-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-mono--family);
  font-size: 11px;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .92);
  background: rgba(0, 0, 0, .24);
  padding: 5px 9px;
  border-radius: 6px;
}
.product__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.product__thumb {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #E7E1D6;
  border: 1.5px solid transparent;
  padding: 0;
  transition: border-color .2s var(--easing-default);
}
.product__thumb:hover { border-color: var(--ink); }
.product__thumb-image { width: 100%; height: 100%; object-fit: cover; }
.product__thumb--field { display: block; }
.product__thumb--1 { background: linear-gradient(150deg, #CDB096, #A9835F); }
.product__thumb--2 { background: linear-gradient(150deg, #E6C9C0, #C99B86); }
.product__thumb--3 { background: linear-gradient(150deg, #CFCABD, #A39C88); }
.product__thumb--4 { background: linear-gradient(150deg, #BAC1A6, #8E9778); }

/* ---- Buy column -------------------------------------------------------- */
.product__info { padding-top: 6px; }
.product__cat {
  font-family: var(--font-mono--family);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(var(--ink-rgb), .5);
}
.product__title {
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1;
  margin: 10px 0 14px;
}
.product__price {
  font-size: 22px;
  font-weight: 700;
}
.product__price .price { font-size: 22px; }
.product__lede {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.5;
  color: rgba(var(--ink-rgb), .72);
  margin: 18px 0 0;
  max-width: 46ch;
}

/* ---- Options / color + size swatches ----------------------------------- */
.product__form { margin-top: 30px; }
.product__option { margin-bottom: 22px; }
.product__option-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}
.product__option-name {
  font-family: var(--font-mono--family);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(var(--ink-rgb), .5);
}
.product__size-guide {
  font-family: var(--font-mono--family);
  font-size: 11px;
  letter-spacing: .04em;
  color: rgba(var(--ink-rgb), .6);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.product__swatches { display: flex; gap: 9px; flex-wrap: wrap; }
.product__swatch--pill {
  min-width: 50px;
  height: 46px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1.5px solid rgba(var(--ink-rgb), .18);
  background: rgb(var(--color-background));
  color: var(--ink);
  font-family: var(--font-sans--family);
  font-weight: 700;
  font-size: 15px;
  transition: border-color .15s var(--easing-default), background .15s var(--easing-default);
}
.product__swatch--pill:hover { border-color: var(--ink); }
.product__swatch--pill.is-selected {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.product__swatch--color {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(var(--ink-rgb), .18);
  background: var(--swatch);
  box-shadow: inset 0 0 0 3px rgb(var(--color-background));
}
.product__swatch--color.is-selected { border-color: var(--ink); }
.product__swatch.is-soldout {
  opacity: .4;
  text-decoration: line-through;
  cursor: not-allowed;
}

/* ---- Quantity stepper + add-to-cart (sticky buy box) ------------------- */
.product__buy {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin-top: 28px;
}
.product__qty {
  display: flex;
  align-items: center;
  border: 1.5px solid rgba(var(--ink-rgb), .18);
  border-radius: 999px;
  padding: 0 6px;
  flex-shrink: 0;
}
.product__qty-btn {
  width: 40px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--ink);
}
.product__qty-input {
  width: 38px;
  height: 52px;
  text-align: center;
  border: none;
  background: transparent;
  font-family: var(--font-sans--family);
  font-weight: 700;
  font-size: 16px;
  -moz-appearance: textfield;
  appearance: textfield;
}
.product__qty-input::-webkit-outer-spin-button,
.product__qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.product__add {
  flex: 1;
  padding: 18px 26px;
  font-size: 16px;
  font-weight: 800;
  justify-content: space-between;
}
.product__add[disabled] { opacity: .55; cursor: not-allowed; }
.product__add-price { opacity: .8; font-weight: 700; }

/* ---- Trust / reassurance strip ----------------------------------------- */
.product__reassure {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 22px;
  font-family: var(--font-mono--family);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(var(--ink-rgb), .55);
}
.product__reassure li { position: relative; padding-left: 16px; }
.product__reassure li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

/* ---- Details accordion ------------------------------------------------- */
.product__accordion {
  margin-top: 34px;
  border-top: 1px solid rgba(var(--ink-rgb), .12);
}
.product__detail { border-bottom: 1px solid rgba(var(--ink-rgb), .12); }
.product__detail-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 2px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -.01em;
}
.product__detail-summary::-webkit-details-marker { display: none; }
.product__detail-icon { transition: transform .25s var(--easing-default); flex-shrink: 0; }
.product__detail[open] .product__detail-icon { transform: rotate(180deg); }
.product__detail-body {
  padding: 0 2px 20px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(var(--ink-rgb), .72);
}

/* ---- Full description -------------------------------------------------- */
.product__description {
  margin-top: var(--sec-pad);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}
.product__description-eyebrow { padding-top: 6px; }
.product__description-body {
  font-family: var(--font-serif--family);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.5;
  color: var(--ink);
  max-width: 40ch;
}
.product__description-body p { margin: 0 0 1em; }
.product__description-body p:last-child { margin-bottom: 0; }

/* ---- You may also like (recommendations carousel) ---------------------- */
.recommendations { padding: var(--sec-pad) 0 0; }
.recommendations__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}
.recommendations__eyebrow { margin-bottom: 12px; }
.recommendations__heading {
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: .95;
  margin: 0;
}
.recommendations__nav { display: flex; gap: 10px; }
.recommendations__arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.recommendations__arrow--prev {
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
}
.recommendations__arrow--next {
  border: none;
  background: var(--ink);
  color: var(--cream);
}
.recommendations__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px var(--page-gutter) 8px;
  scrollbar-width: none;
}
.recommendations__track::-webkit-scrollbar { display: none; }
.recommendations__slide {
  flex: 0 0 300px;
  scroll-snap-align: start;
}

/* ---- PDP responsive ---------------------------------------------------- */
@media (max-width: 900px) {
  .product__grid { grid-template-columns: 1fr; gap: 30px; }
  .product__media { position: static; }
  .product__buy { flex-wrap: wrap; }
  .product__add { width: 100%; flex: 1 0 100%; }
  .product__description { grid-template-columns: 1fr; gap: 16px; }
}
