/* ==========================================================================
   Efplasti — main stylesheet
   Built from Figma file M7EQhURVpo0VOeOwayPWwn (1700px canvas, 50px gutters).
   All sizes in px to match the design 1:1.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Tokens
   -------------------------------------------------------------------------- */

:root {
  --text: #6d6e71;
  /* Muted, but still ≥4.5:1 on white — it carries real copy (form hints, the
     inactive product tabs, the shipping note). */
  --text-mute: #767779;
  --rule: #6d6e71;
  --bg: #fff;
  --menu-bg: #c0cac9;

  /* Noto Serif Display self-hosted; helvetica-neue-lt-pro from Typekit tyi6olf. */
  --font-serif: 'Noto Serif Display', 'Times New Roman', Times, serif;
  --font-sans: 'helvetica-neue-lt-pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --canvas: 1700px;
  --gutter: 50px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}


/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  /* Contain full-bleed elements without breaking position: sticky. */
  overflow-x: clip;
}

body {
  margin: 0;
  /* Floor for the whole site: below this the layout stops compressing. */
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 200;
  letter-spacing: 1px;
  font-size: 20px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

[hidden] {
  display: none !important;
}

/* Visitors who ask their device for less motion get no transitions, animation
   or smooth scrolling (the hero clips and sliders also stop themselves). */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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

button,
input,
select,
textarea {
  letter-spacing: inherit;
}

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

/* The design sets display type in Noto Serif Display Light at normal leading. */
h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 300;
  margin: 0;
  line-height: normal;
  letter-spacing: normal;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* The skip link must be visible once it takes focus. */
a.screen-reader-text:focus {
  position: fixed !important;
  top: 12px;
  left: 12px;
  z-index: 200;
  width: auto;
  height: auto;
  margin: 0;
  padding: 12px 18px;
  clip: auto;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  box-shadow: 0 0 0 1px var(--rule);
}

/* Keyboard focus stays visible everywhere, including on the fields whose
   default outline is removed for the hairline styling. */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.wc-page input:focus-visible,
.wc-page select:focus-visible,
.wc-page textarea:focus-visible,
.wpcf7 input:focus-visible,
.wpcf7 select:focus-visible,
.wpcf7 textarea:focus-visible,
.search-overlay input:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 3px;
}


/* --------------------------------------------------------------------------
   Layout helpers
   -------------------------------------------------------------------------- */

.wrap {
  max-width: var(--canvas);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* Full-bleed image bands (hero, wide bands, collection banner) run edge to
   edge of the viewport — they are direct children of <main>, which is full
   width, so removing the content cap is all that's needed. */
.band {
  width: 100%;
  max-width: none;
  margin: 0;
}

.band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: relative;
  z-index: 20;
  padding: 76px var(--gutter) 65px;
  max-width: var(--canvas);
  margin: 0 auto;
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

/* Burger + MENU label — exported Figma asset (node 6001:10) beside a 16px
   Helvetica Neue label, per the updated header. */
.burger {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 17px;
  transition: opacity 0.2s var(--ease);
}

.burger:hover {
  opacity: 0.6;
}

.burger__icon {
  display: block;
  width: 64px;
  height: 22.26px;
}

.burger__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.burger__label {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text);
  line-height: 1;
}

.site-logo {
  justify-self: center;
  display: block;
  width: 256px;
}

.site-logo img {
  width: 100%;
}

.header-tools {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  letter-spacing: 1px;
}

.header-tools a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.2s var(--ease);
}

.header-tools a:hover {
  opacity: 0.6;
}

.header-tools svg {
  display: block;
  flex: none;
}

/* Desktop shows the tools as text only; the icons take over at ≤900px. */
.header-tools .cart-icon,
.header-tools .icon-search svg {
  display: none;
}

.header-tools .cart-icon {
  position: relative;
  width: 16px;
  height: 20px;
}

/* Count in a small grey circle on the icon's top-right corner (the corner
   beside the handle is empty, so it sits partly over the icon's box). */
.cart-badge {
  position: absolute;
  top: -6px;
  left: calc(100% - 6px);
  min-width: 14px;
  height: 14px;
  padding: 0 3px;
  border-radius: 7px;
  background: var(--text);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  pointer-events: none;
}

.cart-badge.is-empty {
  display: none;
}

.header-tools .icon-cart svg {
  width: 16px;
  height: 20px;
}

.header-tools .icon-search svg {
  width: 20px;
  height: 20px;
}

/* Inner pages carry a hairline under the header at y=222; the home hero starts
   3px higher at y=219, so only the ruled header takes the extra padding. */
.site-header--ruled {
  padding-bottom: 68px;
}

.site-header--ruled::after {
  content: '';
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 0;
  height: 1px;
  background: var(--rule);
}


/* --------------------------------------------------------------------------
   Slide-out menu (Figma frame 6001:123)
   -------------------------------------------------------------------------- */

.menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 640px;
  max-width: 90vw;
  height: 1132px;
  max-height: 100vh;
  background: var(--menu-bg);
  z-index: 100;
  padding: 68px 50px 50px 185px;
  overflow-y: auto;
  transform: translateX(-100%);
  visibility: hidden;
  transition: transform 0.45s var(--ease), visibility 0s linear 0.45s;
}

body.menu-open .menu-panel {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.45s var(--ease), visibility 0s linear 0s;
}

/* X hangs left of the nav column (design x=108); CLOSE aligns with the items. */
.menu-panel__close {
  position: absolute;
  top: 68px;
  left: 108px;
  display: flex;
  align-items: center;
  gap: 31px;
}

.menu-panel__close .x {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 64px;
  line-height: 1;
  letter-spacing: normal;
}

.menu-panel__close .label {
  font-size: 20px;
}

/* First item sits at y=252 in the design; panel padding-top is 68. */
.menu-nav {
  margin-top: 184px;
}

.menu-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-nav > ul > li {
  margin-bottom: 30px;
}

/* The wordmark only appears in the mobile panel's top bar. */
.menu-panel__logo {
  display: none;
}

.menu-nav > ul > li > a,
.menu-nav__heading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.375;
  /* block (not inline-block) so no descender gap offsets the sub-menu */
  display: block;
  width: fit-content;
  transition: opacity 0.2s var(--ease);
  letter-spacing: normal;
}

.menu-nav > ul > li > a:hover {
  opacity: 0.6;
}

.menu-nav .sub-menu {
  margin-top: 20px;
}

.menu-nav .sub-menu a {
  font-family: var(--font-sans);
  font-size: 20px;
  line-height: 1.65;
  transition: opacity 0.2s var(--ease);
}

.menu-nav .sub-menu a:hover {
  opacity: 0.6;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  z-index: 90;
  transition: opacity 0.45s var(--ease), visibility 0s linear 0.45s;
}

body.menu-open .menu-backdrop {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s var(--ease), visibility 0s linear 0s;
}


/* --------------------------------------------------------------------------
   Mini cart panel — the menu panel's mirror image, sliding in from the right.
   -------------------------------------------------------------------------- */

body.mini-cart-open {
  overflow: hidden;
}

.mini-cart {
  position: fixed;
  top: 0;
  right: 0;
  width: 570px;
  max-width: 90vw;
  height: 100vh;
  height: 100dvh;
  background: var(--bg);
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 68px 50px 50px;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.45s var(--ease), visibility 0s linear 0.45s;
}

body.mini-cart-open .mini-cart {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.45s var(--ease), visibility 0s linear 0s;
}

.mini-cart__head {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--rule);
}

.mini-cart__title {
  font-size: 32px;
  font-weight: 300;
  text-transform: uppercase;
}

.mini-cart__close {
  display: flex;
  align-items: center;
  gap: 24px;
  transition: opacity 0.2s var(--ease);
}

.mini-cart__close:hover {
  opacity: 0.6;
}

.mini-cart__close .x {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 64px;
  line-height: 1;
  letter-spacing: normal;
}

.mini-cart__close .label {
  font-size: 20px;
}

/* The list scrolls; subtotal and CTAs stay pinned to the bottom. */
.mini-cart__body {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.mini-cart__items {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mini-cart__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--rule);
  transition: opacity 0.2s var(--ease);
}

.mini-cart__item.is-removing {
  opacity: 0.4;
  pointer-events: none;
}

.mini-cart__media {
  display: block;
  aspect-ratio: 4 / 5;
  background: #f4f4f4;
  overflow: hidden;
}

.mini-cart__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-cart__info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.mini-cart__name {
  font-size: 20px;
  font-weight: 300;
  text-transform: uppercase;
}

.mini-cart__name a {
  transition: opacity 0.2s var(--ease);
}

.mini-cart__name a:hover {
  opacity: 0.6;
}

.mini-cart__subtitle,
.mini-cart__info .variation {
  margin: 2px 0 0;
  font-size: 14px;
}

.mini-cart__info .variation dt,
.mini-cart__info .variation dd {
  display: inline;
  margin: 0;
}

.mini-cart__info .variation dd p {
  display: inline;
}

.mini-cart__meta {
  display: flex;
  gap: 12px;
  margin: auto 0 0;
  padding-top: 16px;
  font-size: 14px;
  letter-spacing: 1px;
}

.mini-cart__price {
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1;
  font-weight: 300;
}

.mini-cart__remove {
  align-self: flex-start;
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s var(--ease);
}

.mini-cart__remove:hover {
  opacity: 0.6;
}

.mini-cart__foot {
  flex: none;
  padding-top: 30px;
}

.mini-cart__subtotal {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  font-size: 14px;
  letter-spacing: 1px;
}

.mini-cart__subtotal-value {
  font-family: var(--font-serif);
  font-size: 24px;
  letter-spacing: 0;
  font-weight: 300;
}

.mini-cart__note {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--text-mute);
}

.mini-cart__actions {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  margin-top: 36px;
}

.mini-cart__cta {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 24px;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
  transition: opacity 0.2s var(--ease);
  letter-spacing: normal;
}

.mini-cart__cta:hover {
  opacity: 0.6;
}

.mini-cart__empty {
  padding-top: 40px;
  font-size: 14px;
}

.mini-cart__empty p {
  margin-bottom: 28px;
}

.mini-cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  z-index: 90;
  transition: opacity 0.45s var(--ease), visibility 0s linear 0.45s;
}

body.mini-cart-open .mini-cart-backdrop {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s var(--ease), visibility 0s linear 0s;
}


/* --------------------------------------------------------------------------
   Search overlay
   -------------------------------------------------------------------------- */

.search-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0s linear 0.3s;
}

body.search-open .search-overlay {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s var(--ease), visibility 0s linear 0s;
}

/* Side space as margin (not padding) so the hairline stops short of the
   screen edges; up to 900px wide, centred. */
.search-overlay form {
  flex: 0 1 900px;
  min-width: 0;
  margin: 0 var(--gutter);
  padding: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--rule);
}

.search-overlay input[type='search'] {
  flex: 1;
  /* inputs won't shrink past their intrinsic size without this */
  min-width: 0;
  border: 0;
  background: none;
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--text);
  padding: 0 0 16px;
  outline: none;
  letter-spacing: normal;
  font-weight: 400;
}

.search-overlay input::placeholder {
  color: var(--text-mute);
}

.search-overlay__close {
  position: absolute;
  top: 60px;
  right: 60px;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 48px;
  line-height: 1;
  letter-spacing: normal;
}


/* --------------------------------------------------------------------------
   Home
   -------------------------------------------------------------------------- */

/* Hero band — 1700 x 1200 in the design. Video or image fills it, centred. */
.home-hero {
  aspect-ratio: 1700 / 1200;
  overflow: hidden;
}

.home-hero img,
.home-hero__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Playlist: the two clip elements sit on top of each other and crossfade. */
.home-hero--video {
  position: relative;
}

.home-hero--video .home-hero__video {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}

.home-hero--video .home-hero__video.is-active {
  opacity: 1;
}

/* Below the canvas the hero keeps more height than width: 1200px at 1700 →
   550px at 440 (a 4:5 portrait on phones), one straight line. */
@media (max-width: 1699px) {
  .home-hero {
    aspect-ratio: auto;
    height: clamp(440px, calc(323px + 51.59vw), 1200px);
  }
}

/* Intro statement — 48px Light, 1330 wide, centred. */
.home-intro {
  max-width: 1330px;
  margin: 125px auto;
  padding: 0 var(--gutter);
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 48px;
  line-height: 1.19;
  letter-spacing: normal;
}

/* Wide image bands — 1700 x 700. Images fill the band, centred. */
.home-band {
  aspect-ratio: 1700 / 700;
}

.home-band img {
  object-fit: cover;
  object-position: center;
}

/* Below the 1700 canvas the height eases down more slowly than the width, so
   the band grows relatively taller: 700px at 1700 → 440px (square) at 440,
   one straight line, no steps. */
@media (max-width: 1699px) {
  .home-band {
    aspect-ratio: auto;
    height: clamp(320px, calc(349.2px + 20.63vw), 700px);
  }
}

/* Phones: hold the band near its 900px height instead of shrinking further —
   535px at 900 → 550px at 440 (4:5), so it reads as a tall portrait. */
@media (max-width: 900px) {
  .home-band {
    height: calc(564.3px - 3.26vw);
  }
}

/* "More Creations" — two-image slider. The left column is the visible slider
   (small creation on white + dots + link); the right image bleeds to the right
   viewport edge and changes in sync. The section runs full-bleed so the right
   image can reach the edge; the left column is inset by the gutter. */
.editorial {
  width: 100%;
}

/* Equal left/right squares: two 1fr tracks, a leading gutter spacer inset the
   left, the right runs to the edge. Tops aligned so the left's dots + link sit
   below its square. */
.creations-slider {
  display: grid;
  grid-template-columns: var(--gutter) 1fr 40px 1fr;
  align-items: start;
}

.creations-slider__col {
  min-width: 0;
}

/* The whole left column is a square: image (flexes to fill) + dots + link all
   sit inside it, so nothing hangs below the square. */
.creations-slider__col--left {
  /* White space above the image = space below the link. Smaller = a larger
     photo, with the dots and EXPLORE further down the square. */
  --creations-edge: 40px;
  grid-column: 2;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 0;
  overflow: hidden;
}

.creations-slider__col--right {
  grid-column: 4;
}

.creations-slider__viewport {
  overflow: hidden;
}

.creations-slider__track {
  display: flex;
  will-change: transform;
  transition: transform 0.5s var(--ease);
}

.creations-slider__slide {
  flex: 0 0 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

/* Image viewport flexes to fill the space above the dots + link; the image is
   contained on white so the whole piece shows. */
.creations-slider__col--left .creations-slider__viewport {
  width: 100%;
  flex: 1 1 0%;
  min-height: 0;
  margin-top: var(--creations-edge);
}

.creations-slider__col--left .creations-slider__track {
  height: 100%;
}

.creations-slider__col--left .creations-slider__slide {
  height: 100%;
}

/* Each photo links to its slide's URL; the link fills the slide so the image
   sizing (percentages of the slide) is unchanged. */
.creations-slider__link {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-user-drag: none;
}

/* The left photo is a square box, centred: as tall as the image area on
   desktop (which is wider than tall), the full square on mobile. Photos fill
   it, so a non-square upload is cropped rather than shown narrow. */
.creations-slider__col--left .creations-slider__img {
  margin: 0 auto;
  height: 100%;
  width: auto;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.creations-slider__col--left .creations-slider__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Right column crossfades: the viewport is the square, slides stack and fade. */
.creations-slider__col--right .creations-slider__viewport {
  position: relative;
  aspect-ratio: 1 / 1;
}

.creations-slider__track--fade {
  position: absolute;
  inset: 0;
  display: block;
  transition: none;
}

.creations-slider__track--fade .creations-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}

.creations-slider__track--fade .creations-slider__slide.is-active {
  opacity: 1;
}

.creations-slider__col--right .creations-slider__img {
  margin: 0;
  width: 100%;
  height: 100%;
}

.creations-slider__col--right .creations-slider__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Dots + link sit inside the square, under the image. */
.creations-slider__dots {
  flex: none;
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 45px;
}

.creations-slider__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rule);
  opacity: 0.35;
  padding: 0;
  transition: opacity 0.2s var(--ease);
}

.creations-slider__dot.is-active {
  opacity: 1;
}

.editorial__link {
  flex: none;
  text-align: center;
  margin-top: 50px;
  margin-bottom: var(--creations-edge, 75px);
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: normal;
  font-weight: 400;
}

.editorial__link a {
  text-decoration: underline;
  text-underline-offset: 4px;
  white-space: nowrap;
}

/* "Our Creations" — centred title flanked by rules, then a 3-column grid. */
.creations {
  padding-top: 125px;
  padding-bottom: 62px;
}

/* Rules share the title's grid row and centre on it; the subtitle sits in a
   second row, so its size never moves the rules. */
.creations__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  column-gap: 46px;
  row-gap: 0;
}

.creations__head::before,
.creations__head::after {
  content: '';
  grid-row: 1;
  align-self: center;
  height: 1px;
  background: var(--rule);
}

.creations__head::before {
  grid-column: 1;
}

.creations__head::after {
  grid-column: 3;
}

.creations__head-text {
  display: contents;
}

.creations__title {
  grid-column: 2;
  grid-row: 1;
  text-align: center;
  font-size: 32px;
}

.creations__subtitle {
  grid-column: 2;
  grid-row: 2;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 20px;
  margin-top: 5px;
  letter-spacing: normal;
  font-weight: 300;
}

.creations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 46px;
}

.creations__cell {
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  min-height: 400px;
  padding: 0 30px;
  text-align: center;
}

.creations__cell + .creations__cell {
  border-left: 1px solid var(--rule);
}

.creations__cell-media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.creations__cell-media img {
  max-height: 350px;
  width: auto;
  object-fit: contain;
}

/* The main image sets the box; the hover image fills the same box and
   cross-fades in, as in the product grid. */
.creations__cell-images {
  position: relative;
  display: block;
}

.creations__cell-images img {
  display: block;
  transition: opacity 0.4s var(--ease);
}

.creations__cell-media .creations__img--hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  opacity: 0;
}

.creations__cell.has-hover:hover .creations__img--main {
  opacity: 0;
}

.creations__cell.has-hover:hover .creations__img--hover {
  opacity: 1;
}

.creations__cell-title {
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: normal;
  font-weight: 300;
}


/* --------------------------------------------------------------------------
   Archive: category / collection
   -------------------------------------------------------------------------- */

.page-head {
  text-align: center;
  padding-top: 97px;
}

.page-head__title {
  font-size: 48px;
  text-transform: uppercase;
}

.page-head__intro {
  max-width: 984px;
  margin: 32px auto 0;
  font-size: 20px;
  line-height: 1.2;
}

.page-head__intro--wide {
  max-width: 1157px;
}

/* Collection pages open with a full-bleed image under the intro. The collection
   frame uses slightly different head spacing than the category frame. */
.collection-band {
  margin-top: 62px;
  aspect-ratio: 1700 / 1224;
}

.tax-collection .page-head {
  padding-top: 85px;
}

.tax-collection .page-head__intro {
  margin-top: 46px;
}

.tax-collection .product-grid {
  margin-top: 100px;
}

/* Product grid — widened from the design's 1283 block / 246px images to a
   1400 block with three 300px images (250px between them), centred. */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 300px));
  justify-content: space-between;
  max-width: 1400px;
  column-gap: 20px;
  row-gap: 100px;
  margin: 150px auto 0;
  padding: 0 0 150px;
  list-style: none;
}

.product-card {
  text-align: center;
}

/* Portrait media box — 4:5, matching the single-product gallery. */
.product-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-width: 300px;
  margin: 0 auto;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s var(--ease);
}

/* Cards with a gallery image: stack the two and cross-fade to the next image
   on hover. */
.product-card.has-hover .product-card__img {
  position: absolute;
  inset: 0;
}

.product-card.has-hover .product-card__img--hover {
  opacity: 0;
}

.product-card.has-hover:hover .product-card__img--main {
  opacity: 0;
}

.product-card.has-hover:hover .product-card__img--hover {
  opacity: 1;
}

/* Single-image cards keep the subtle fade. */
.product-card:not(.has-hover):hover .product-card__media img {
  opacity: 0.75;
}

.product-card__media--empty {
  background: rgba(109, 110, 113, 0.06);
}

.product-card__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 32px;
  margin-top: 28px;
  text-transform: uppercase;
  letter-spacing: normal;
}

.product-card__subtitle {
  font-size: 14px;
  margin-top: 10px;
}

.product-card__price {
  font-family: var(--font-serif);
  font-size: 20px;
  margin-top: 8px;
  letter-spacing: normal;
  font-weight: 300;
}

.archive-empty {
  text-align: center;
  padding: 150px 0;
  font-size: 20px;
}


/* --------------------------------------------------------------------------
   Single product
   -------------------------------------------------------------------------- */

.product-single {
  display: grid;
  grid-template-columns: 544px 1fr;
  column-gap: 258px;
  padding-top: 84px;
  padding-bottom: 150px;
  align-items: start;
}

/* Wide desktops: the space left of the gallery is half the space right of the
   text column (1fr : 2fr), with the design's 544 / 258 / 599 in between. */
@media (min-width: 1401px) {
  .product-single {
    grid-template-columns: minmax(0, 1fr) 544px 258px minmax(0, 599px) minmax(0, 2fr);
    column-gap: 0;
  }

  .product-gallery {
    grid-column: 2;
    grid-row: 1;
  }

  .product-info {
    grid-column: 4;
    grid-row: 1;
  }
}

/* Left: stacked gallery. Every image is a uniform 4:5 box, matching the
   product cards; the image fills it, so zooming scales the picture inside a
   box that never changes shape. */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.product-gallery__item {
  cursor: zoom-in;
  background: none;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.product-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Carousel pagination — only used in the one-column layout. */
.product-gallery__dots {
  display: none;
}

.product-gallery__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rule);
  opacity: 0.35;
  padding: 0;
  transition: opacity 0.2s var(--ease);
}

.product-gallery__dot.is-active {
  opacity: 1;
}

/* Right: sticky info column, 599px wide. The design drops it 45px below the
   gallery top (gallery y=306, title y=351). */
.product-info {
  position: sticky;
  top: 60px;
  margin-top: 45px;
  width: 599px;
  max-width: 100%;
  text-align: center;
}

.product-info__title {
  font-size: 48px;
  text-transform: uppercase;
}

.product-info__cat {
  font-size: 20px;
  line-height: 1.2;
  margin-top: 10px;
}

/* Collection link — looks like the plain subtitle, greys on hover like the
   other links. */
.product-info__cat a:hover {
  opacity: 0.6;
}

.product-info__price {
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.375;
  margin-top: 30px;
  letter-spacing: normal;
  font-weight: 300;
}

.product-info__price .woocommerce-Price-amount {
  font-family: inherit;
}

.product-info__price del {
  opacity: 0.4;
  margin-right: 10px;
}

.product-info__desc {
  font-size: 20px;
  line-height: 1.2;
  margin-top: 50px;
}

.product-info__note {
  font-size: 13px;
  line-height: 1.25;
  margin-top: 25px;
}

.product-info__form {
  margin-top: 43px;
}

/* Pieces are one of a kind (sold individually) — WooCommerce still prints an
   empty .quantity wrapper around a hidden input. */
.product-info__form .quantity {
  display: none;
}

.button,
button.single_add_to_cart_button,
.product-info__form button[type='submit'] {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 24px;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-transform: uppercase;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.2s var(--ease);
  letter-spacing: normal;
}

.button:hover,
button.single_add_to_cart_button:hover {
  opacity: 0.6;
}

/* Details / Delivery & Returns / Payment — Figma 6008:200: a 481px block
   centred under the info column, labels 96px below ADD TO CART's top. */
.product-tabs {
  max-width: 481px;
  margin: 38px auto 0;
}

.product-tabs__nav {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 16px;
  line-height: normal;
  letter-spacing: normal;
}

.product-tabs__nav button {
  color: var(--text-mute);
  transition: color 0.2s var(--ease);
}

.product-tabs__nav button.is-active,
.product-tabs__nav button:hover {
  color: var(--text);
}

.product-tabs__panel {
  display: none;
  font-size: 14px;
  line-height: normal;
  margin-top: 15px;
  text-align: left;
}

.product-tabs__panel.is-active {
  display: block;
}


/* Zoom overlay — Figma frame 6008:202.
   A 73%-white lightbox with the product images stacked vertically; scrolling
   moves through them, and each image clicks to a texture-level magnifier. */
.zoom-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(255, 255, 255, 0.73);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0s linear 0.3s;
}

body.zoom-open {
  overflow: hidden;
}

body.zoom-open .zoom-overlay {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s var(--ease), visibility 0s linear 0s;
}

/* The scroll track — vertical gallery, one large image per screen. */
.zoom-overlay__scroll {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  padding: 6vh var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6vh;
}

/* Each figure shrinks to the image; the image never exceeds the screen height
   (mock image is 1196 x 1829 — portrait, so height is the binding limit). */
.zoom-figure {
  margin: 0;
  flex: none;
  max-width: min(1196px, 92vw);
  max-height: 88vh;
  min-height: 40vh;
  overflow: hidden;
  cursor: zoom-in;
  scroll-snap-align: center;
}

.zoom-figure__img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 88vh;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.25s var(--ease);
  will-change: transform;
}

/* Texture magnifier: click scales the image up; JS sets transform-origin to
   the cursor so the point under the pointer stays put while you pan. */
.zoom-figure.is-zoomed {
  cursor: zoom-out;
}

.zoom-figure.is-zoomed .zoom-figure__img {
  transform: scale(2.4);
  transition: transform 0.25s var(--ease);
}

.zoom-figure.is-zoomed.is-panning .zoom-figure__img {
  transition: none;
}

.zoom-overlay__close {
  position: fixed;
  top: 42px;
  right: 55px;
  z-index: 2;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 96px;
  line-height: 1;
  letter-spacing: normal;
}


/* --------------------------------------------------------------------------
   Generic pages, cart, checkout, account
   -------------------------------------------------------------------------- */

.page-content {
  max-width: 984px;
  margin: 0 auto;
  padding: 97px 0 150px;
  font-size: 20px;
  line-height: 1.4;
}

.page-content h1,
.page-content h2 {
  font-size: 48px;
  margin-bottom: 30px;
}

.page-content h3 {
  font-size: 32px;
  margin: 40px 0 16px;
}

.page-content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* --------------------------------------------------------------------------
   Policy pages (template-policy.php) — shipping, returns, terms, privacy.
   A narrow reading column; serif section headings like the rest of the site.
   -------------------------------------------------------------------------- */

.policy-updated {
  margin: 20px 0 0;
  font-size: 14px;
  color: var(--text-mute);
}

.policy {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 0 150px;
  font-size: 18px;
  line-height: 1.6;
}

.policy h2 {
  font-size: 28px;
  margin: 60px 0 20px;
}

.policy h2:first-child {
  margin-top: 0;
}

.policy h3 {
  font-size: 22px;
  margin: 36px 0 12px;
}

.policy ul,
.policy ol {
  margin: 0 0 1em;
  padding-left: 1.2em;
}

.policy li {
  margin-bottom: 0.4em;
}

.policy a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy a:hover {
  opacity: 0.6;
}

.policy figure {
  margin: 0 0 1em;
  overflow-x: auto;
}

.policy table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85em;
}

.policy th,
.policy td {
  text-align: left;
  vertical-align: top;
  padding: 10px 16px 10px 0;
  border-bottom: 1px solid var(--rule);
}

.policy th {
  font-weight: 400;
  text-transform: uppercase;
}

/* Details the shop still has to fill in, e.g. [shipping cost]. */
.policy mark {
  background: #f3ecd9;
  color: inherit;
  padding: 0 3px;
}

@media (max-width: 900px) {
  .policy {
    padding: 50px 0 80px;
    font-size: 14px;
  }

  .policy h2 {
    font-size: 22px;
    margin-top: 40px;
  }

  .policy h3 {
    font-size: 18px;
  }
}


/* --------------------------------------------------------------------------
   Forms — Contact Form 7 (Contact Us, Submit a Return). Same language as the
   checkout: hairline fields, small uppercase labels, serif text-style CTA.
   -------------------------------------------------------------------------- */

.page-intro {
  text-align: center;
  margin: -40px auto 70px;
  max-width: 720px;
}

.efp-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.efp-field {
  display: block;
  min-width: 0;
}

.efp-field--full {
  grid-column: 1 / -1;
}

.efp-field__label {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  text-transform: uppercase;
}

.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7 input[type='text'],
.wpcf7 input[type='email'],
.wpcf7 input[type='tel'],
.wpcf7 select,
.wpcf7 textarea {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 10px 0;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  transition: box-shadow 0.2s var(--ease);
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  box-shadow: inset 0 -1px 0 var(--text);
}

.wpcf7 textarea {
  border: 1px solid var(--rule);
  padding: 12px 14px;
  min-height: 160px;
  resize: vertical;
}

.wpcf7 textarea:focus {
  box-shadow: inset 0 0 0 1px var(--text);
}

/* Select: hairline with a thin chevron, placeholder option muted. */
.wpcf7 select {
  padding-right: 24px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' fill='none' stroke='%236d6e71' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  background-size: 12px 8px;
}

.wpcf7 select:invalid,
.wpcf7 select option[value=''] {
  color: var(--text-mute);
}

.wpcf7 select option {
  color: var(--text);
}

/* Acceptance: square hairline box, filled when ticked. */
.efp-field--check {
  font-size: 14px;
}

.efp-field--check label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.wpcf7 input[type='checkbox'] {
  -webkit-appearance: none;
  appearance: none;
  flex: none;
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  border: 1px solid var(--rule);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.wpcf7 input[type='checkbox']:checked {
  background: var(--text);
  box-shadow: inset 0 0 0 3px var(--bg);
}

/* SEND — the same text-style CTA as ADD TO CART / CHECKOUT. */
.efp-form__actions {
  margin-top: 50px;
  text-align: center;
}

.wpcf7 input[type='submit'] {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: normal;
  color: var(--text);
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: opacity 0.2s var(--ease);
}

.wpcf7 input[type='submit']:hover,
.wpcf7 input[type='submit']:disabled {
  opacity: 0.6;
}

.wpcf7 .wpcf7-spinner {
  display: block;
  margin: 16px auto 0;
  background-color: var(--text);
}

/* Validation + response messages in the brand red / text grey. */
.wpcf7 .wpcf7-form-control.wpcf7-not-valid {
  border-color: #b50216;
}

.wpcf7 .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 12px;
  color: #b50216;
}

.wpcf7 form .wpcf7-response-output {
  margin: 40px 0 0;
  padding: 16px 0;
  border: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-size: 14px;
  text-align: center;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output {
  color: #b50216;
  border-color: #b50216;
}


/* --------------------------------------------------------------------------
   About — Figma frame 6032:2.
   Two makers in an asymmetric editorial layout, with a large red pull quote.
   -------------------------------------------------------------------------- */

.about {
  padding-top: 100px;
  /* Design: last image ends 100px above the footer rule. */
  padding-bottom: 100px;
}

/* Name box 54 (normal leading), role 59 below the name's top, bio 50 below. */
.about-name {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 40px;
  line-height: normal;
  letter-spacing: normal;
}

.about-role {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 24px;
  line-height: 1.375;
  margin-top: 4px;
  letter-spacing: normal;
}

.about-text {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.35;
  margin-top: 50px;
  letter-spacing: normal;
}

.about-text p {
  margin: 0 0 1em;
}

.about-figure {
  margin: 0;
}

.about-figure img {
  width: 100%;
  height: auto;
  display: block;
}

/* Two free-flowing columns (frame x50–841 and x949–1650). minmax lets both
   shrink below their design widths on smaller screens instead of overflowing. */
.about-columns {
  display: grid;
  grid-template-columns: minmax(0, 791px) minmax(0, 701px);
  justify-content: space-between;
  align-items: start;
  column-gap: 60px;
}

.about-col {
  min-width: 0;
}

.about-bio {
  max-width: 654px;
}

/* Left: Flavia → necklace (bleeds to the viewport's left edge, 871 wide, 4
   below the bio) → hands 49 below, with the bracelet overlapping. */
.about-figure--necklace {
  margin-top: 4px;
  margin-left: calc(-1 * (var(--gutter) + max(0px, (100vw - var(--canvas)) / 2)));
  width: calc(100% + var(--gutter) + max(0px, (100vw - var(--canvas)) / 2) + 30px);
  max-width: none;
}

.about-figures {
  position: relative;
  margin-top: 49px;
}

.about-figure--hands {
  width: 100%;
  aspect-ratio: 791 / 899;
  overflow: hidden;
}

.about-figure--hands img {
  height: 100%;
  object-fit: cover;
}

/* Frame: 644×660 bracelet at hands +613/+554, reaching into the right column
   below Tina's bio. All in proportion to the 791px hands image: the padding
   reserves the 315 that hangs below it, so the box is 899 + 315 = 1214 tall
   and top is 554/1214; left and width are 613/791 and 644/791. */
.about-figures--pair {
  padding-bottom: 39.82%;
}

.about-figures--pair .about-figure--bracelet {
  position: absolute;
  left: 77.5%;
  top: 45.635%;
  width: 81.42%;
  z-index: 2;
}

/* Right: portrait → quote 45 below → Tina 100 below, one continuous column. */
.about-figure--portrait {
  aspect-ratio: 701 / 1052;
  overflow: hidden;
}

.about-figure--portrait img {
  height: 100%;
  object-fit: cover;
}

.about-quote {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 64px;
  line-height: normal;
  color: #b50216;
  margin: 45px 0 0;
  letter-spacing: normal;
}

.about-bio--second {
  margin-top: 100px;
}

/* Narrower than ~1660 the columns shrink and Tina's bio grows taller, so the
   crossing bracelet would cover its last lines (measured: overlap from ~1620).
   It tucks under the hands image inside the left column instead. */
@media (max-width: 1659px) {
  .about-figures--pair {
    padding-bottom: 0;
  }

  .about-figures--pair .about-figure--bracelet {
    position: relative;
    left: auto;
    top: auto;
    width: 62%;
    margin: -60px 0 0 auto;
  }
}


.wc-page {
  padding: 97px 0 150px;
}

.wc-page h1 {
  font-size: 48px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 60px;
}

.wc-page table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.wc-page table th,
.wc-page table td {
  padding: 20px 10px;
  border-bottom: 1px solid var(--rule);
  text-align: left;
}

.wc-page input[type='text'],
.wc-page input[type='email'],
.wc-page input[type='tel'],
.wc-page input[type='password'],
.wc-page input[type='number'],
.wc-page select,
.wc-page textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--rule);
  background: none;
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: 14px;
  color: var(--text);
  padding: 10px 0;
  outline: none;
}

.wc-page label {
  font-size: 14px;
  display: block;
  margin-bottom: 4px;
}


/* --------------------------------------------------------------------------
   My account (WooCommerce's classic templates) — a hairline nav column beside
   the content, forms in the checkout's language, text-style buttons.
   -------------------------------------------------------------------------- */

/* Signed in: nav column beside the content. Signed out (login / register /
   lost password) there is no nav, so that view is a single centred column. */
.woocommerce-account.logged-in .woocommerce {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  column-gap: 100px;
  align-items: start;
}

.woocommerce-account:not(.logged-in) .woocommerce {
  max-width: 1080px;
  margin: 0 auto;
}

/* Login beside Register when registration is on; a single centred column when
   it is off (WooCommerce then prints the login form on its own). */
.woocommerce-account #customer_login.col2-set {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 120px;
}

.woocommerce-account:not(.logged-in) .woocommerce > h2,
.woocommerce-account #customer_login h2 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 24px;
  letter-spacing: normal;
  margin: 0 0 30px;
}

.woocommerce-account:not(.logged-in) .woocommerce > form:only-of-type {
  max-width: 480px;
  margin: 0 auto;
}

.woocommerce-account #customer_login .woocommerce-form-login,
.woocommerce-account #customer_login .woocommerce-form-register {
  max-width: none;
}

/* WooCommerce's note about what it does with your data. */
.wc-page .woocommerce-privacy-policy-text {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-mute);
}

.wc-page .woocommerce-privacy-policy-text a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Nav: one link per row, separated by hairlines; current page underlined. */
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}

.woocommerce-MyAccount-navigation li {
  border-bottom: 1px solid var(--rule);
}

.woocommerce-MyAccount-navigation a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 18px;
  letter-spacing: normal;
  text-transform: uppercase;
  transition: opacity 0.2s var(--ease);
}

.woocommerce-MyAccount-navigation a:hover {
  opacity: 0.6;
}

.woocommerce-MyAccount-navigation li.is-active a {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.woocommerce-MyAccount-content > :first-child {
  margin-top: 0;
}

.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3,
.woocommerce-MyAccount-content legend {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 24px;
  letter-spacing: normal;
  padding: 0;
  margin: 0 0 20px;
}

.woocommerce-MyAccount-content p {
  margin: 0 0 1em;
}

/* WooCommerce bolds names in its copy; the site has no bold type. */
.wc-page strong,
.wc-page b {
  font-weight: 400;
}

/* Account forms: two columns, with wide rows and fieldsets spanning both. */
.woocommerce-EditAccountForm,
.woocommerce-address-fields__field-wrapper,
.woocommerce-form-login,
.woocommerce-form-register {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 40px;
}

.woocommerce-form-login,
.woocommerce-form-register {
  grid-template-columns: minmax(0, 1fr);
  max-width: 480px;
}

.wc-page .form-row {
  margin: 0;
  min-width: 0;
}

.wc-page .form-row--wide,
.wc-page .woocommerce-EditAccountForm fieldset,
.wc-page .woocommerce-EditAccountForm > p:last-of-type,
.wc-page .woocommerce-address-fields__field-wrapper > p:last-child,
.wc-page .woocommerce-form-row--wide {
  grid-column: 1 / -1;
}

/* WooCommerce's float clears have no job in a grid. */
.wc-page .woocommerce .clear {
  display: none;
}

.wc-page .form-row label {
  text-transform: uppercase;
}

.wc-page .required {
  text-decoration: none;
  color: inherit;
}

.wc-page .form-row em,
.wc-page .woocommerce-input-wrapper span em {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-style: normal;
  color: var(--text-mute);
}

/* A legend sits *in* the fieldset's top border, so the hairline would strike
   through it — float the legend out and give it the rule instead. */
.wc-page fieldset {
  border: 0;
  padding: 0;
  margin: 10px 0 0;
}

.wc-page fieldset::after {
  content: '';
  display: table;
  clear: both;
}

.woocommerce-MyAccount-content legend {
  float: left;
  width: 100%;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
  margin-bottom: 24px;
}

/* Buttons keep the site's text-style CTA (see .button), just spaced. */
.wc-page .woocommerce-MyAccount-content .button,
.wc-page .woocommerce-form-login .button,
.wc-page .woocommerce-form-register .button {
  margin-top: 10px;
}

.wc-page .woocommerce-form-login__rememberme,
.wc-page .woocommerce-form__label-for-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  text-transform: none;
}

/* Classic forms only — the Cart/Checkout blocks position their own checkbox
   inside .wc-block-components-checkbox (styled further down). */
.wc-page .woocommerce input[type='checkbox'] {
  -webkit-appearance: none;
  appearance: none;
  flex: none;
  width: 16px;
  height: 16px;
  margin: 0;
  border: 1px solid var(--rule);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.wc-page .woocommerce input[type='checkbox']:checked {
  background: var(--text);
  box-shadow: inset 0 0 0 3px var(--bg);
}

.wc-page .woocommerce-LostPassword {
  margin: 20px 0 0;
  font-size: 14px;
}

.wc-page .woocommerce-LostPassword a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Orders / downloads tables: hairline rows, uppercase headings. */
.wc-page .woocommerce-orders-table th,
.wc-page .woocommerce-table--order-details th,
.wc-page .woocommerce-table--order-downloads th {
  padding: 0 10px 16px 0;
  font-size: 14px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--rule);
}

.wc-page .woocommerce-orders-table td,
.wc-page .woocommerce-table--order-details td,
.wc-page .woocommerce-table--order-downloads td {
  padding: 20px 10px 20px 0;
}

.wc-page .woocommerce-orders-table .button,
.wc-page .woocommerce-table--order-downloads .button {
  font-size: 14px;
  text-underline-offset: 3px;
}

/* Saved addresses side by side. */
.wc-page .woocommerce-Addresses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
}

.wc-page .woocommerce-Address-title {
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.wc-page .woocommerce-Address-title .edit {
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wc-page address {
  font-style: normal;
  line-height: 1.6;
}

/* Notices ("No order has been made yet", "Account details changed") as a
   hairline band rather than WooCommerce's grey box. */
.wc-page .woocommerce-info,
.wc-page .woocommerce-message,
.wc-page .woocommerce-error,
.wc-page .woocommerce-notice {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin: 0 0 40px;
  padding: 16px 0;
  border: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: none;
  font-size: 14px;
  list-style: none;
}

.wc-page .woocommerce-error {
  color: #b50216;
  border-color: #b50216;
}

.wc-page .woocommerce-info .button,
.wc-page .woocommerce-message .button {
  margin: 0 0 0 auto;
  font-size: 16px;
  text-underline-offset: 4px;
}


/* --------------------------------------------------------------------------
   Cart (WooCommerce Cart block) — aligned with the rest of the site: a single
   #6d6e71 hairline system, no heavy weights, serif for names and totals, and
   a text-style CTA matching ADD TO CART.
   -------------------------------------------------------------------------- */

/* Borders: WooCommerce draws faint 20–30% lines and the generic .wc-page table
   rule adds dark lines per cell (cells differ in height, so those broke into
   offset segments). Strip both and draw one hairline per row instead. */
.wc-page .wc-block-cart table.wc-block-cart-items,
.wc-page .wc-block-cart .wc-block-cart-items th,
.wc-page .wc-block-cart .wc-block-cart-items td {
  border: 0;
}

.wc-page .wc-block-cart .wc-block-cart-items__header,
.wc-page .wc-block-cart .wc-block-cart-items__row {
  border-bottom: 1px solid var(--rule);
}

.wc-page .wc-block-cart .wc-block-cart-items th {
  padding: 0 0 16px;
}

.wc-page .wc-block-cart .wc-block-cart-items td {
  padding: 28px 0;
  vertical-align: top;
}

.wc-page .wc-block-cart .wc-block-cart-items .wc-block-cart-item__product {
  padding-left: 24px;
}

.wc-page .wc-block-cart .wc-block-cart-items .wc-block-cart-items__header-total,
.wc-page .wc-block-cart .wc-block-cart-items .wc-block-cart-item__total {
  text-align: right;
}

/* Sidebar dividers keep their places, in the brand colour. */
.wc-page .wc-block-cart .wc-block-components-totals-wrapper,
.wc-page .wc-block-cart .wp-block-woocommerce-cart-order-summary-block,
.wc-page .wc-block-cart .wp-block-woocommerce-cart-order-summary-coupon-form-block,
.wc-page .wc-block-cart .wp-block-woocommerce-cart-order-summary-totals-block {
  border-color: var(--rule);
}

/* When WooCommerce stacks the totals under the items (it flags this on the
   container, not via a media query), the last row's line and the coupon
   block's top line sit back-to-back — keep just one. */
.wc-page .wc-block-cart.is-mobile .wp-block-woocommerce-cart-order-summary-coupon-form-block,
.wc-page .wc-block-cart.is-small .wp-block-woocommerce-cart-order-summary-coupon-form-block {
  border-top: 0;
}

/* Small uppercase labels — light, never bold. */
.wc-page .wc-block-cart .wc-block-cart-items th,
.wc-page .wc-block-cart .wc-block-cart-items__header span,
.wc-page .wc-block-cart .wc-block-cart__totals-title,
.wc-page .wc-block-cart .wc-block-components-panel__button {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
}

/* Product name in the serif, like the product cards. (Needs the table/row
   context: WooCommerce's own rule here scores 0,3,1.) */
.wc-page .wc-block-cart table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 20px;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  letter-spacing: normal;
}

.wc-page .wc-block-cart .wc-block-cart-item__prices,
.wc-page .wc-block-cart .wc-block-components-product-price,
.wc-page .wc-block-cart .wc-block-components-product-metadata {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: 14px;
  color: var(--text);
}

/* WooCommerce shrinks the description paragraph to ~11px; match the price. */
.wc-page .wc-block-cart table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-metadata p {
  font-size: 14px;
  line-height: 1.4;
  margin: 2px 0 0;
}

.wc-page .wc-block-cart .wc-block-cart-item__total,
.wc-page .wc-block-cart .wc-block-cart-item__total .wc-block-components-product-price {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 20px;
  letter-spacing: normal;
}

/* One of a kind — never a quantity selector, even if a product slips through. */
.wc-page .wc-block-cart .wc-block-components-quantity-selector {
  display: none;
}

.wc-page .wc-block-cart .wc-block-cart-item__remove-link {
  color: var(--text);
}

/* Estimated total in the serif at the product-price size. */
.wc-page .wc-block-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-page .wc-block-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 24px;
  color: var(--text);
  letter-spacing: normal;
}

/* CTA — text style, identical to ADD TO CART, replacing WooCommerce's charcoal fill. */
.wc-page .wc-block-cart .wc-block-cart__submit-button,
.wc-page .wc-block-cart .wc-block-cart__submit-button:hover,
.wc-page .wc-block-cart .wc-block-cart__submit-button:focus,
.wc-page .wc-block-cart .wc-block-cart__submit-button:active {
  background: none;
  color: var(--text);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  outline-offset: 4px;
}

.wc-page .wc-block-cart .wc-block-cart__submit-button {
  min-height: 0;
  padding: 24px 0 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: opacity 0.2s var(--ease);
  letter-spacing: normal;
}

.wc-page .wc-block-cart .wc-block-cart__submit-button:hover {
  opacity: 0.6;
}

.wc-page .wc-block-cart .wc-block-cart__submit-button .wc-block-components-button__text {
  font: inherit;
  text-transform: inherit;
  text-decoration: inherit;
}


/* --------------------------------------------------------------------------
   Checkout (WooCommerce Checkout block) — same language as the cart:
   underlined fields instead of boxes, #6d6e71 hairlines, light weights,
   serif headings and totals, text-style CTA. Selectors carry enough context
   to beat WooCommerce's own (up to 0,3,1).
   -------------------------------------------------------------------------- */

/* Section headings — Contact information / Billing address / Payment options. */
.wc-page .wc-block-checkout .wc-block-components-title.wc-block-components-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 24px;
  line-height: normal;
  color: var(--text);
  letter-spacing: normal;
}

.wc-page .wc-block-checkout .wc-block-components-checkout-step__description,
.wc-page .wc-block-checkout .wc-block-checkout__guest-checkout-notice,
.wc-page .wc-block-checkout .wc-block-components-address-form__address_2-toggle,
.wc-page .wc-block-checkout .wc-block-checkout__terms,
.wc-page .wc-block-checkout .wc-block-components-checkbox__label {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: 14px;
  color: var(--text);
}

/* Text fields: bottom hairline only. Only the horizontal padding and label
   offset change — WooCommerce's vertical padding drives the floating label. */
.wc-page .wc-block-checkout .wc-block-components-form .wc-block-components-text-input input,
.wc-page .wc-block-checkout .wc-block-components-form .wc-blocks-components-select .wc-blocks-components-select__select {
  border: 0;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: 14px;
  color: var(--text);
}

/* Floating labels follow the fields' 14px (select labels always sit raised
   at WooCommerce's smaller size). */
.wc-page .wc-block-checkout .wc-block-components-form .wc-block-components-text-input label {
  font-size: 14px;
}

.wc-page .wc-block-checkout .wc-block-components-form .wc-block-components-text-input input:focus,
.wc-page .wc-block-checkout .wc-block-components-form .wc-blocks-components-select .wc-blocks-components-select__select:focus {
  outline: none;
  /* visible focus: the hairline thickens */
  box-shadow: inset 0 -1px 0 var(--text);
}

.wc-page .wc-block-checkout .wc-block-components-form .wc-block-components-text-input label,
.wc-page .wc-block-checkout .wc-block-components-form .wc-blocks-components-select .wc-blocks-components-select__label {
  left: 0;
  font-weight: 200;
  color: var(--text);
}

.wc-page .wc-block-checkout .wc-block-components-form .wc-blocks-components-select .wc-blocks-components-select__container {
  background: transparent;
  border-radius: 0;
}

.wc-page .wc-block-checkout .wc-block-components-form .wc-blocks-components-select .wc-blocks-components-select__expand {
  right: 0;
  fill: var(--text);
}

/* Validation stays red — it's information, not decoration. */
.wc-page .wc-block-checkout .wc-block-components-form .wc-block-components-text-input.has-error input,
.wc-page .wc-block-checkout .wc-block-components-form .wc-blocks-components-select.has-error .wc-blocks-components-select__select {
  border-bottom-color: #cc1818;
}

.wc-page .wc-block-checkout .wc-block-components-form .wc-block-components-text-input.has-error input:focus {
  box-shadow: inset 0 -1px 0 #cc1818;
}

/* Order note textarea keeps a box (a lone underline reads oddly for a
   multi-line field) but in the brand hairline. */
.wc-page .wc-block-checkout .wc-block-components-textarea {
  border: 1px solid var(--rule);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: 14px;
  color: var(--text);
}

/* Saved-address card. */
.wc-page .wc-block-checkout .wc-block-components-address-card {
  border: 1px solid var(--rule);
  border-radius: 0;
  font-size: 14px;
  font-weight: 200;
}

.wc-page .wc-block-checkout .wc-block-components-address-card__edit {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 14px;
}

/* Checkboxes: square hairline. The block lays its label out as a flex row
   (box + 12px gap + text); the theme's generic `.wc-page label { display:
   block }` would collapse the two on top of each other. */
.wc-page .wc-block-components-checkbox label {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0;
}

.wc-page .wc-block-checkout .wc-block-components-checkbox .wc-block-components-checkbox__input[type="checkbox"] {
  border: 1px solid var(--rule);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.wc-page .wc-block-checkout .wc-block-components-checkbox .wc-block-components-checkbox__mark {
  fill: var(--text);
}

/* Radios (payment / shipping options, when enabled): hairline circle and
   option boxes without the rounded, tinted highlight. */
.wc-page .wc-block-checkout .wc-block-components-radio-control .wc-block-components-radio-control__input {
  border: 1px solid var(--rule);
  background: transparent;
  box-shadow: none;
}

.wc-page .wc-block-checkout .wc-block-components-radio-control .wc-block-components-radio-control__input:checked::before {
  background: var(--text);
}

.wc-page .wc-block-checkout .wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option,
.wc-page .wc-block-checkout .wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control__option {
  border-radius: 0;
}

.wc-page .wc-block-checkout .wc-block-components-radio-control--highlight-checked::after,
.wc-page .wc-block-checkout .wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted,
.wc-page .wc-block-checkout .wc-block-components-radio-control--highlight-checked label.wc-block-components-radio-control__option--checked-option-highlighted {
  border-radius: 0;
  box-shadow: inset 0 0 0 1px var(--rule);
}

.wc-page .wc-block-checkout .wc-block-components-radio-control__label,
.wc-page .wc-block-checkout .wc-block-components-radio-control__description,
.wc-page .wc-block-checkout .wc-block-components-radio-control__secondary-label {
  font-family: var(--font-sans);
  font-weight: 200;
  color: var(--text);
}

/* Notices keep their colour meaning; just square off. */
.wc-page .wc-block-checkout .wc-block-components-notice-banner {
  border-radius: 0;
  font-size: 14px;
  font-weight: 200;
}

/* All remaining dividers in the brand colour. */
.wc-page .wc-block-checkout .wc-block-checkout__terms,
.wc-page .wc-block-checkout .wc-block-components-totals-wrapper,
.wc-page .wc-block-checkout .wp-block-woocommerce-checkout-order-summary-coupon-form-block,
.wc-page .wc-block-checkout .wp-block-woocommerce-checkout-order-summary-totals-block {
  border-color: var(--rule);
}

/* Order summary: no rounded box — heading over a hairline, like CART TOTALS. */
.wc-page .wc-block-checkout .wp-block-woocommerce-checkout-order-summary-block {
  border: 0;
  border-radius: 0;
}

/* Mobile: the collapsible summary bar above the form. */
.wc-page .checkout-order-summary-block-fill,
.wc-page .checkout-order-summary-block-fill .wc-block-components-checkout-order-summary__title {
  border-color: var(--rule);
  border-radius: 0;
}

/* Without the box, WooCommerce's 16px side insets leave the text floating
   in from its divider lines — sit it flush, as in the cart. */
.wc-page .wc-block-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-order-summary,
.wc-page .wc-block-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-coupon,
.wc-page .wc-block-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-item {
  padding-left: 0;
  padding-right: 0;
}

.wc-page .wc-block-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title-text {
  margin-left: 0;
}

.wc-page .wc-block-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title .wc-block-components-checkout-order-summary__title-text {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
}

.wc-page .wc-block-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-product-name {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 16px;
  line-height: normal;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: normal;
}

.wc-page .wc-block-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-product-metadata p,
.wc-page .wc-block-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-product-price,
.wc-page .wc-block-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-order-summary-item__total-price,
.wc-page .wc-block-checkout .wc-block-components-totals-item__label,
.wc-page .wc-block-checkout .wc-block-components-totals-item__value,
.wc-page .wc-block-checkout .wc-block-components-panel__button {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: 14px;
  color: var(--text);
}

.wc-page .wc-block-checkout .wc-block-components-panel__button {
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Every piece is unique, so the "1" badge on the thumbnail says nothing. */
.wc-page .wc-block-checkout .wc-block-components-order-summary-item__quantity {
  display: none;
}

/* Total in the serif, same as the cart's Estimated total. */
.wc-page .wc-block-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wc-page .wc-block-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__value,
.wc-page .wc-block-checkout .wc-block-components-totals-footer-item .wc-block-formatted-money-amount {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 24px;
  letter-spacing: normal;
}

/* Place Order — text style, identical to ADD TO CART / PROCEED TO CHECKOUT. */
.wc-page .wc-block-checkout .wc-block-components-checkout-place-order-button,
.wc-page .wc-block-checkout .wc-block-components-checkout-place-order-button:hover,
.wc-page .wc-block-checkout .wc-block-components-checkout-place-order-button:focus,
.wc-page .wc-block-checkout .wc-block-components-checkout-place-order-button:active {
  background: none;
  color: var(--text);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  outline-offset: 4px;
}

.wc-page .wc-block-checkout .wc-block-components-checkout-place-order-button {
  min-height: 0;
  padding: 16px 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 24px;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: opacity 0.2s var(--ease);
  letter-spacing: normal;
}

.wc-page .wc-block-checkout .wc-block-components-checkout-place-order-button:hover {
  opacity: 0.6;
}

.wc-page .wc-block-checkout .wc-block-components-checkout-place-order-button .wc-block-components-checkout-place-order-button__text,
.wc-page .wc-block-checkout .wc-block-components-checkout-place-order-button .wc-block-components-button__text {
  font: inherit;
  text-transform: inherit;
  text-decoration: inherit;
}

.wc-page .wc-block-checkout .wc-block-components-checkout-return-to-cart-button {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text);
}


/* --------------------------------------------------------------------------
   Footer — Figma frame group 6038.
   Top rule → centred wordmark → CONTACT US / SUBMIT A RETURN / COLLECTIONS →
   INSTAGRAM / FACEBOOK / TIKTOK stack → bottom rule → legal + credit row.
   -------------------------------------------------------------------------- */

.site-footer {
  margin-top: 0;
}

/* Top rule is inset to the content width (design: x=50, w=1600), so it lives
   inside .wrap rather than on the full-width footer element. */
/* Figma group 6038, measured from the top rule: logo +100, links 50 under the
   logo, socials 120 under the links (54 apart), bottom rule 109 under TIKTOK,
   legal line 14 under the rule, 28 to the page end. */
.site-footer__top {
  border-top: 1px solid var(--rule);
  padding: 100px 0 108px;
  text-align: center;
}

/* block (not inline-block) so no descender gap offsets everything below */
.site-footer__logo {
  display: block;
  width: 256px;
  max-width: 60%;
  margin: 0 auto;
}

.site-footer__logo img {
  width: 100%;
  height: auto;
}

/* Three links across a 944px row (Figma x378 → 1322). Equal side columns keep
   SUBMIT A RETURN on the exact centre line, over the social stack. */
/* Five equal columns, each link centred in its own: even spacing, and the
   middle link (CONTACT US) on the exact centre line over the social stack. */
.site-footer__links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: 20px;
  max-width: 1180px;
  margin: 50px auto 0;
  text-align: center;
}

.site-footer__links a {
  justify-self: center;
  font-size: 14px;
  line-height: 1.2;
  transition: opacity 0.2s var(--ease);
}

.site-footer__links a:hover {
  opacity: 0.6;
}

/* Same 1180px box as the link row above, so both share its side margins. */
.site-footer__social {
  list-style: none;
  max-width: 1180px;
  margin: 120px auto 0;
  padding: 0;
  text-align: center;
}

.site-footer__social li + li {
  margin-top: 35px;
}

.site-footer__social a {
  font-size: 14px;
  line-height: 1.2;
  display: block;
  transition: opacity 0.2s var(--ease);
}

.site-footer__social a:hover {
  opacity: 0.6;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--rule);
  padding: 14px 0 28px;
  font-size: 14px;
  line-height: 1.2;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__legal a:hover {
  opacity: 0.6;
}


/* --------------------------------------------------------------------------
   WooCommerce notices
   -------------------------------------------------------------------------- */

.woocommerce-notices-wrapper ul {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}

/* Notices printed straight under the header (product pages, archives) keep
   clear of its bottom rule. */
.wrap > .woocommerce-notices-wrapper > :first-child {
  margin-top: 40px;
}

@media (max-width: 900px) {
  .wrap > .woocommerce-notices-wrapper > :first-child {
    margin-top: 24px;
  }
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error li {
  border: 1px solid var(--rule);
  padding: 16px 20px;
  font-size: 14px;
  margin-bottom: 10px;
}

.woocommerce-message a {
  text-decoration: underline;
}


/* --------------------------------------------------------------------------
   Responsive — the design is desktop-only so far (the mobile frame in Figma
   is still empty); these are sensible reductions of the same system.
   -------------------------------------------------------------------------- */

@media (max-width: 1400px) {
  .home-intro {
    font-size: 40px;
  }

  .product-single {
    column-gap: 100px;
  }

  .product-info {
    width: 100%;
  }

  /* The square shrinks with the viewport, so ease the 45/50/75 stack below the
     image (kept exact above 1400) or it crushes the picture. */
  .creations-slider__dots {
    margin-top: 35px;
  }

  .editorial__link {
    margin-top: 38px;
  }

  .creations-slider__col--left {
    --creations-edge: 55px;
  }
}

@media (max-width: 1100px) {
  .product-single {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }

  /* One column: gallery on top as a swipeable carousel, text below. */
  .product-gallery {
    order: 1;
    flex-direction: row;
    gap: 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .product-gallery::-webkit-scrollbar {
    display: none;
  }

  /* The full-screen lightbox is desktop-only; here the image zooms in place. */
  .zoom-overlay {
    display: none;
  }

  /* Same 4:5 box as desktop, so the ratio is constant everywhere. */
  .product-gallery__item {
    flex: 0 0 100%;
    width: 100%;
    display: block;
    scroll-snap-align: center;
    overflow: hidden;
    cursor: zoom-in;
    /* Allow the carousel swipe and page scroll, but keep pinch and double-tap
       for our own zoom instead of the browser's page zoom. */
    touch-action: pan-x pan-y;
  }

  .product-gallery__item.is-zoomed {
    cursor: zoom-out;
  }

  .product-gallery__item img {
    transition: transform 0.25s var(--ease);
    will-change: transform;
  }

  .product-gallery__item.is-zoomed img {
    transition: none;
  }

  .product-gallery__dots {
    order: 2;
    display: flex;
    justify-content: center;
    gap: 9px;
    margin-top: 4px;
  }

  .product-info {
    position: static;
    order: 3;
    margin: 0 auto;
    margin-top: 50px;
  }

  .creations-slider__dots {
    margin-top: 25px;
  }

  .editorial__link {
    margin-top: 28px;
  }

  .creations-slider__col--left {
    --creations-edge: 24px;
  }
}

@media (max-width: 900px) {
  :root {
    --gutter: 20px;
  }

  body {
    font-size: 14px;
  }

  /* Typed text stays 16px on phones: iOS Safari zooms the page into any field
     smaller than that. Labels stay at 14px. */
  .wc-page input[type='text'],
  .wc-page input[type='email'],
  .wc-page input[type='tel'],
  .wc-page input[type='password'],
  .wc-page input[type='number'],
  .wc-page select,
  .wc-page textarea,
  .wc-page .wc-block-checkout .wc-block-components-form .wc-block-components-text-input input,
  .wc-page .wc-block-checkout .wc-block-components-form .wc-blocks-components-select .wc-blocks-components-select__select,
  .wc-page .wc-block-checkout .wc-block-components-textarea {
    font-size: 16px;
  }

  /* Mobile header — frame 4042:2: logo 123x38 at y22, MENU 12px, hero at y79. */
  .site-header {
    padding: 22px var(--gutter) 19px;
  }

  .site-logo {
    width: 123px;
  }

  /* Mobile header shows just the MENU label (frame 4042:2). */
  .burger__icon {
    display: none;
  }

  .burger__label {
    font-size: 12px;
  }

  /* Room for the cart count that sits beside the icon's top-right corner. */
  .header-tools {
    gap: 20px;
  }

  /* Icons only: the labels leave the layout but stay readable to screen
     readers, so the links keep their names (including the cart count). */
  .header-tools .cart-icon,
  .header-tools .icon-search svg {
    display: block;
  }

  .header-tools .label {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .mini-cart {
    width: 100%;
    max-width: 100%;
    padding: 30px var(--gutter) 30px;
  }

  .mini-cart__head {
    padding-bottom: 20px;
  }

  .mini-cart__title {
    font-size: 24px;
  }

  .mini-cart__close {
    gap: 16px;
  }

  .mini-cart__close .x {
    font-size: 44px;
  }

  .mini-cart__close .label {
    font-size: 14px;
  }

  .mini-cart__item {
    grid-template-columns: 96px 1fr;
    gap: 16px;
    padding: 20px 0;
  }

  .mini-cart__name,
  .mini-cart__price {
    font-size: 16px;
  }

  .mini-cart__subtitle,
  .mini-cart__meta {
    font-size: 12px;
  }

  .mini-cart__foot {
    padding-top: 20px;
  }

  .mini-cart__subtotal-value {
    font-size: 20px;
  }

  .mini-cart__note {
    font-size: 12px;
  }

  .mini-cart__actions {
    margin-top: 24px;
  }

  .mini-cart__cta {
    font-size: 18px;
    text-underline-offset: 4px;
  }

  /* Top bar mirrors the mobile header: 123×38 wordmark at y22 on the left,
     a small X on the right, centred on the wordmark. */
  .menu-panel {
    width: 100%;
    max-width: 100%;
    height: 100vh;
    padding: 22px var(--gutter) 40px;
  }

  .menu-panel__logo {
    display: block;
    width: 123px;
  }

  .menu-panel__logo img {
    display: block;
    width: 100%;
    height: auto;
  }

  .menu-panel__close {
    top: 22px;
    left: auto;
    right: var(--gutter);
    height: 38px;
    gap: 0;
  }

  .menu-panel__close .x {
    font-size: 24px;
  }

  .menu-panel__close .label {
    display: none;
  }

  .menu-nav {
    margin-top: 60px;
  }

  .menu-nav > ul > li > a,
  .menu-nav__heading {
    font-size: 26px;
  }

  .menu-nav .sub-menu a {
    font-size: 14px;
  }

  .home-intro {
    font-size: 24px;
    margin: 60px auto;
  }

  /* Stack the two columns: product slider (with dots) first, large image below. */
  .creations-slider {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 24px;
  }

  .creations-slider__col--left {
    grid-column: 1;
    order: 1;
    aspect-ratio: auto;
  }

  /* Left image stays square (matching the right); dots + link sit below it. */
  .creations-slider__col--left .creations-slider__viewport {
    flex: none;
    aspect-ratio: 1 / 1;
  }

  /* The product photo breathes inside its square instead of touching the
     screen edges (the square itself keeps its size). */
  .creations-slider__col--left .creations-slider__img {
    padding: var(--gutter);
  }

  /* Tighter than the desktop 45 / 50 / 40 — the photo's own padding already
     leaves space above the dots. */
  .creations-slider__dots {
    margin-top: 5px;
  }

  .editorial__link {
    margin-top: 25px;
  }

  .creations-slider__col--left {
    --creations-edge: 0px;
  }

  .creations-slider__col--right {
    grid-column: 1;
    order: 2;
  }

  .creations {
    padding-top: 60px;
    padding-bottom: 0;
  }

  /* Longer rules either side: tighter gaps, and the subtitle (the widest line
     of the text block) at the mobile body size. */
  .creations__head {
    column-gap: 12px;
  }

  .creations__title {
    font-size: 24px;
  }

  .creations__subtitle {
    font-size: 16px;
  }

  .creations__grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .creations__cell {
    min-height: 0;
    padding: 40px 0;
  }

  .creations__cell + .creations__cell {
    border-left: 0;
    border-top: 1px solid var(--rule);
  }

  .page-head {
    padding-top: 50px;
  }

  .page-head__title {
    font-size: 30px;
  }

  .page-head__intro {
    font-size: 14px;
  }

  /* Two columns, full width — reset the desktop 300px/1400px constraints. */
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    max-width: none;
    column-gap: 20px;
    row-gap: 60px;
    margin: 60px auto 0;
    padding: 0 0 80px;
  }

  /* Media keeps its portrait aspect-ratio from the base rules. */

  /* Phones: one product per row, photo at full width. */
  @media (max-width: 600px) {
    .product-grid {
      grid-template-columns: minmax(0, 1fr);
    }

    .product-card__media {
      max-width: none;
    }
  }

  .product-card__title {
    font-size: 20px;
    margin-top: 18px;
  }

  .product-card__subtitle {
    font-size: 13px;
  }

  .product-single {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .product-gallery {
    gap: 40px;
  }

  .product-info__title {
    font-size: 30px;
  }

  .product-info__desc {
    font-size: 14px;
    margin-top: 30px;
  }

  /* ADD TO CART — smaller on mobile (24px on desktop). */
  .product-info__form button.single_add_to_cart_button {
    font-size: 18px;
    text-underline-offset: 4px;
  }

  /* Cart CTA and total follow the same mobile scale. */
  .wc-page .wc-block-cart .wc-block-cart__submit-button {
    font-size: 18px;
    text-underline-offset: 4px;
  }

  .wc-page .wc-block-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
  .wc-page .wc-block-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-size: 20px;
  }

  /* Checkout follows the same mobile scale. */
  .wc-page .wc-block-checkout .wc-block-components-checkout-place-order-button {
    font-size: 18px;
    text-underline-offset: 4px;
  }

  .wc-page .wc-block-checkout .wc-block-components-title.wc-block-components-title {
    font-size: 20px;
  }

  .wc-page .wc-block-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
  .wc-page .wc-block-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__value,
  .wc-page .wc-block-checkout .wc-block-components-totals-footer-item .wc-block-formatted-money-amount {
    font-size: 20px;
  }

  .product-tabs {
    margin-top: 60px;
  }

  .product-tabs__nav {
    font-size: 14px;
  }

  .page-content {
    padding: 50px 0 80px;
    font-size: 14px;
  }

  /* Forms: one column; typed text stays 16px so iOS doesn't zoom in. */
  .page-intro {
    margin: -20px auto 40px;
  }

  .efp-form__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .wpcf7 input[type='text'],
  .wpcf7 input[type='email'],
  .wpcf7 input[type='tel'],
  .wpcf7 select,
  .wpcf7 textarea {
    font-size: 16px;
  }

  .efp-form__actions {
    margin-top: 40px;
  }

  .wpcf7 input[type='submit'] {
    font-size: 18px;
    text-underline-offset: 4px;
  }

  .page-content h1,
  .page-content h2,
  .wc-page h1 {
    font-size: 30px;
  }

  /* WooCommerce's h2s (e.g. "Login") are 1.5em — keep them 24px now that
     mobile body text is 14px. */
  .wc-page h2 {
    font-size: 24px;
  }

  /* My account stacks: nav above the content, forms in one column. */
  .woocommerce-account .woocommerce {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 40px;
  }

  .woocommerce-MyAccount-navigation a {
    font-size: 16px;
    padding: 12px 0;
  }

  .woocommerce-EditAccountForm,
  .woocommerce-address-fields__field-wrapper,
  .wc-page .woocommerce-Addresses {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  /* Login above Register. */
  .woocommerce-account #customer_login.col2-set {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 50px;
  }

  .woocommerce-MyAccount-content h2,
  .woocommerce-MyAccount-content h3,
  .woocommerce-MyAccount-content legend {
    font-size: 20px;
  }

  .search-overlay input[type='search'] {
    font-size: 26px;
  }

  .search-overlay__close {
    top: 24px;
    right: 24px;
    font-size: 32px;
  }

  .zoom-overlay__close {
    top: 20px;
    right: 20px;
    font-size: 48px;
  }

  .zoom-overlay__scroll {
    padding: 70px var(--gutter) 40px;
    gap: 30px;
  }

  .zoom-figure {
    width: 100%;
  }

  /* About — single column, images full width. */
  .about {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  /* One column: dissolve the two columns and interleave the pieces —
     portrait, Flavia, necklace, quote, hands + bracelet, Tina. */
  .about-columns {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .about-col {
    display: contents;
  }

  .about-figure--portrait { order: 1; }
  .about-bio--first       { order: 2; }
  .about-figure--necklace { order: 3; }
  .about-quote            { order: 4; }
  .about-figures          { order: 5; }
  .about-bio--second      { order: 6; }

  .about-figure--necklace,
  .about-figures,
  .about-quote,
  .about-bio--second {
    margin: 0;
  }

  .about-figure--necklace {
    width: 100%;
  }

  .about-name {
    font-size: 30px;
  }

  .about-role {
    font-size: 18px;
  }

  .about-text {
    font-size: 16px;
    margin-top: 20px;
  }

  .about-quote {
    font-size: 34px;
  }

  .about-figures--pair .about-figure--bracelet {
    width: 70%;
    margin-top: -40px;
  }

  /* Mobile footer — frame 4042:2: rule → 60 → logo 123 → 41 → links, all 12px,
     grouped [contact, return] · [collections] · [socials] with 10/30 gaps. */
  .site-footer__top {
    padding: 60px 0 59px;
  }

  .site-footer__logo {
    width: 123px;
  }

  .site-footer__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 41px;
    max-width: none;
  }

  /* Grouped like the frame's 10 / 30 rhythm: [necklaces, bracelets] ·
     [contact us, submit a return] · [my account]. */
  .site-footer__links a:nth-child(3),
  .site-footer__links a:nth-child(5) {
    margin-top: 20px;
  }

  /* 15px rows, as in the frame — 12px at 1.2 (14.4) drifted the stack. */
  .site-footer__links a,
  .site-footer__social a,
  .site-footer__bottom {
    font-size: 12px;
    line-height: 15px;
  }

  .site-footer__social {
    margin-top: 30px;
    max-width: none;
  }

  .site-footer__social li + li {
    margin-top: 10px;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 21px 0 28px;
  }
}
