@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* ==========================================================================
   BudgetPerfume — design tokens (measured from the Figma export)
   ========================================================================== */
:root {
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ink: #0A0A0A;
  --ink-2: #4A4A4A;
  --ink-muted: #6E6E6E;
  --white: #FFFFFF;
  --surface: #F7F6F5;
  --line: #E6E5E3;
  --line-2: #DCDBD8;
  --footer-bg: #0F0F0F;
  --footer-text: #C9C8C5;

  --badge-fresh: #D4EEA4;
  --badge-floral: #FCDFD1;
  --badge-oriental: #FEDE7A;
  --badge-woody: #FABC8A;
  --sale: #E0452C;
  --star: #D9A441;

  --container: 1200px;
  --gutter: 20px;
  --header-h: 56px;
  --radius: 8px;
  --radius-pill: 999px;
}

/* ==========================================================================
   Reset / base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4, p, figure { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px;
  overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap;
}
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus {
  left: 8px; top: 8px; z-index: 200; background: var(--ink); color: #fff;
  padding: 10px 16px; border-radius: 6px;
}

/* ==========================================================================
   Typography scale
   ========================================================================== */
.h-display { font-size: 46px; line-height: 50px; font-weight: 800; letter-spacing: -0.01em; }
.h-section { font-size: 36px; line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; }
.h-eyebrow { font-size: 14px; line-height: 1.4; font-weight: 400; color: var(--ink-muted); margin-bottom: 7px; }
.text-muted { color: var(--ink-muted); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 36px; padding: 0 22px;
  border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  transition: opacity .18s ease, background-color .18s ease;
}
.btn--light { background: var(--white); color: var(--ink); }
.btn--dark  { background: var(--ink); color: var(--white); }
.btn--block { width: 100%; }
.btn--lg    { height: 48px; font-size: 14px; }
.btn:hover  { opacity: .86; }

.link-underline {
  font-size: 14px; text-decoration: underline; text-underline-offset: 3px;
}

.icon-round {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line-2);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color .18s ease, border-color .18s ease;
}
.icon-round:hover { background: var(--surface); }
.icon-round[disabled] { opacity: .35; cursor: default; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--white);
}
/* box-shadow rather than a border so the header stays exactly 56px tall */
.site-header.is-stuck { box-shadow: 0 1px 0 var(--line); }
.header-inner {
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.header-left { display: flex; align-items: center; gap: 26px; }
.nav-left { display: flex; align-items: center; gap: 26px; }
.nav-left > li > a,
.nav-left > li > .nav-toggle {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 14px; font-weight: 500; color: var(--ink);
}
.nav-left .has-children > .nav-toggle svg { transition: transform .2s ease; }
.nav-left .has-children.is-open > .nav-toggle svg { transform: rotate(180deg); }

.site-logo { justify-self: center; }
/* Width is fixed; height follows the image. The animated logo is taller than the
   wordmark (headroom for the dot) but centred on it, so both sit in the same place. */
.site-logo picture, .site-logo img { display: block; }
.site-logo img { width: 86px; height: auto; }

.header-right { justify-self: end; display: flex; align-items: center; gap: 26px; }

.header-search { position: relative; }
.header-search input {
  width: 197px; height: 36px;
  padding: 0 38px 0 16px;
  background: var(--surface);
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 14px;
  outline: none;
  transition: border-color .18s ease;
}
.header-search input::placeholder { color: var(--ink-muted); }
.header-search input:focus { border-color: var(--line-2); }
.header-search button {
  position: absolute; right: 4px; top: 4px;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
}

/* Attention-grabbing sale CTA: gradient pill, slow glow, sweeping highlight. */
.deal-btn {
  position: relative; overflow: hidden; flex: none;
  display: inline-flex; align-items: center; gap: 7px;
  height: 36px; padding: 0 18px;
  border-radius: var(--radius-pill);
  background: linear-gradient(100deg, #E0452C 0%, #F0682F 46%, #F5A623 100%);
  color: var(--white);
  font-size: 12px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(224, 69, 44, .34);
  animation: bp-deal-glow 2.8s ease-in-out infinite;
  transition: transform .18s ease, box-shadow .18s ease;
}
.deal-btn__icon, .deal-btn__label { position: relative; z-index: 1; display: inline-flex; }
.deal-btn__icon svg { animation: bp-deal-spark 2.8s ease-in-out infinite; }
/* highlight that slides across the pill every few seconds */
.deal-btn::after {
  content: '';
  position: absolute; top: 0; bottom: 0; left: -70%; width: 40%;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.55), rgba(255,255,255,0));
  transform: skewX(-18deg);
  animation: bp-deal-shine 3.6s ease-in-out infinite;
}
.deal-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(224, 69, 44, .48);
  animation-play-state: paused;
}
.deal-btn:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }

@keyframes bp-deal-glow {
  0%, 100% { box-shadow: 0 2px 10px rgba(224, 69, 44, .30); }
  50%      { box-shadow: 0 2px 20px rgba(224, 69, 44, .65); }
}
@keyframes bp-deal-shine {
  0%, 58%  { left: -70%; }
  100%     { left: 130%; }
}
@keyframes bp-deal-spark {
  0%, 70%, 100% { transform: scale(1) rotate(0deg); }
  80%           { transform: scale(1.22) rotate(14deg); }
}

.account-btn { position: relative; display: flex; }
.account-btn:hover, .cart-btn:hover { opacity: .7; }

.cart-btn { position: relative; display: flex; }
.bp-cart-count {
  position: absolute; top: -6px; right: -8px;
  min-width: 16px; height: 16px; padding: 0 4px;
  border-radius: var(--radius-pill);
  background: var(--ink); color: var(--white);
  font-size: 10px; font-weight: 700; line-height: 16px; text-align: center;
}
.bp-cart-count[hidden] { display: none; }

.nav-burger, .search-toggle { display: none; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; height: var(--hero-h, 546px); overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: var(--hero-pos, 50% 50%); }
/* Scrim so the white headline holds up over the artwork. Weighted to the
   left, where the copy sits, so the bottles stay clean on the right. */
.hero__media::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--hero-scrim,
    linear-gradient(90deg, rgba(0,0,0,.70) 0%, rgba(0,0,0,.55) 40%, rgba(0,0,0,.20) 66%, rgba(0,0,0,0) 86%),
    linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,0) 38%));
}
.hero__inner { position: relative; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.hero__title {
  max-width: var(--hero-title-w, 560px); color: var(--white); text-transform: uppercase;
  text-shadow: 0 1px 18px rgba(0,0,0,.35);
}
.hero__text  {
  margin-top: 18px; max-width: var(--hero-text-w, 380px); color: var(--white);
  font-size: 16px; line-height: 1.35;
  text-shadow: 0 1px 12px rgba(0,0,0,.45);
}
.hero__cta   { margin-top: 30px; align-self: flex-start; }

/* ==========================================================================
   Trust bar
   ========================================================================== */
.trust { padding-top: var(--sec-pt, 70px); padding-bottom: var(--sec-pb, 70px); }
.trust__grid { display: grid; grid-template-columns: repeat(var(--trust-cols, 3), 1fr); }
.trust__item { display: flex; gap: 14px; padding-right: 40px; }
.trust__item + .trust__item { border-left: 1px solid var(--line); padding-left: 40px; }
/* the second set only exists for the mobile loop */
.trust__item--dupe { display: none; }
.trust__icon { flex: none; margin-top: 2px; }
.trust__title { font-size: 17px; font-weight: 700; line-height: 1.3; }
.trust__desc  { margin-top: 5px; font-size: 14px; line-height: 1.3; color: var(--ink-muted); max-width: 300px; }

/* ==========================================================================
   Section header (eyebrow + title + controls)
   ========================================================================== */
/* `clip` (not hidden) contains the bleeding carousel track without creating a
   scroll container, so the sticky header keeps working. */
.section { padding-top: var(--sec-pt, 0); padding-bottom: var(--sec-pb, 70px); overflow-x: clip; }
.section__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 34px;
}
.section__controls { display: flex; align-items: center; gap: 14px; }

/* Per-section rhythm, measured off the Figma frame. */
.section--best     { --sec-pb: 89px; }
.section--trending { --sec-pt: 83px; --sec-pb: 107px; }
.section--seasons  { --sec-pb: 99px; }
.section--brands   { --sec-pb: 114px; }
.section--reviews  { --sec-pb: 75px; }
.section--best .section__head,
.section--trending .section__head { margin-bottom: 78px; }
.section--brands .section__head   { margin-bottom: 44px; }

/* ==========================================================================
   Product carousel + card
   ========================================================================== */
.carousel { position: relative; }
.carousel__track {
  display: flex; gap: 24px;
  overflow-x: auto; scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  /* bleed past the container so the next card peeks at the viewport edge */
  margin-right: calc((100vw - min(var(--container), 100vw - var(--gutter) * 2)) / -2);
  padding-right: 24px;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track > * { scroll-snap-align: start; flex: none; }
/* the viewport nudge lands between snap points, so snapping steps aside for it */
.carousel__track.is-hinting { scroll-snap-type: none; }
/* rails driven frame-by-frame need raw scrolling, not snapping or CSS smoothing */
.carousel__track[data-autoscroll] {
  scroll-snap-type: none;
  scroll-behavior: auto;
  overscroll-behavior-x: contain;
}

.product-card { width: 268px; }
.product-card__media {
  position: relative;
  height: 220px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  overflow: hidden;
}
.product-card__media img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform .35s ease;
}
.product-card:hover .product-card__media img { transform: scale(1.04); }
.product-card__meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; margin-top: 34px;
}
.product-card__brand {
  font-size: 11px; font-weight: 500; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--ink-muted);
}
.product-card__title { margin-top: 8px; font-size: 16px; font-weight: 700; line-height: 1.25; }
.product-card__price { margin-top: 8px; font-size: 14px; color: var(--ink); }
.product-card__price del { color: var(--ink-muted); margin-right: 6px; }
.product-card__price ins { text-decoration: none; }

.badge {
  display: inline-flex; align-items: center; justify-content: center;
  height: 20px; padding: 0 10px;
  border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 600; color: var(--ink);
  white-space: nowrap;
}
.badge--fresh    { background: var(--badge-fresh); }
.badge--floral   { background: var(--badge-floral); }
.badge--oriental { background: var(--badge-oriental); }
.badge--woody    { background: var(--badge-woody); }

.badge-sale {
  position: absolute; top: 10px; right: 10px;
  height: 20px; padding: 0 8px; border-radius: var(--radius-pill);
  background: var(--sale); color: #fff; font-size: 11px; font-weight: 700;
  display: inline-flex; align-items: center;
}

/* ==========================================================================
   Split category tiles (full-bleed)
   ========================================================================== */
.split-tiles { display: grid; grid-template-columns: repeat(var(--tile-cols, 2), 1fr); gap: var(--tile-gap, 8px); }
.split-tile { position: relative; height: var(--tile-h, 531px); overflow: hidden; }
.split-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.split-tile:hover img { transform: scale(1.03); }
.split-tile__body {
  position: absolute; left: 64px; bottom: 68px; color: var(--white);
}
.split-tile__title { font-size: 32px; font-weight: 700; line-height: 1.1; }
.split-tile__link { display: inline-block; margin-top: 8px; font-size: 15px; text-decoration: underline; text-underline-offset: 4px; }
.split-tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.45), rgba(0,0,0,0) 45%);
  pointer-events: none;
}

/* ==========================================================================
   Season cards
   ========================================================================== */
.season-grid { display: grid; grid-template-columns: repeat(var(--season-cols, 4), 1fr); gap: 16px; }
.season-card {
  position: relative; height: var(--season-h, 342px); border-radius: var(--radius); overflow: hidden;
}
.season-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.season-card:hover img { transform: scale(1.04); }
.season-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,0) 50%);
}
.season-card__body { position: absolute; left: 24px; bottom: 22px; z-index: 1; color: var(--white); }
.season-card__title { font-size: 19px; font-weight: 700; }
.season-card__link { font-size: 14px; text-decoration: underline; text-underline-offset: 3px; }

/* ==========================================================================
   Brand tiles
   ========================================================================== */
.brand-grid { display: grid; grid-template-columns: repeat(var(--brand-cols, 6), 1fr); gap: 17px; }
.brand-tile {
  height: var(--brand-h, 174px); border-radius: var(--radius); background: var(--brand-bg, var(--surface));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
  padding: 16px; transition: background-color .18s ease;
}
.brand-tile:hover { background: #F1F0EE; }
/* logos size themselves from their width/height attributes (design px, 3x source) */
.brand-tile img { max-width: 60%; object-fit: contain; }
.brand-tile__name { font-size: 14px; }

/* ==========================================================================
   Review video carousel
   ========================================================================== */
.video-card {
  position: relative; width: var(--video-w, 277px); height: var(--video-h, 492px);
  border-radius: var(--radius); overflow: hidden; background: var(--surface);
}
.video-card img { width: 100%; height: 100%; object-fit: cover; }
.video-card__play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(0,0,0,.42); backdrop-filter: blur(2px);
  display: flex; align-items: center; justify-content: center;
  transition: background-color .2s ease;
}
.video-card:hover .video-card__play { background: rgba(0,0,0,.62); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials { background: var(--surface); padding-top: var(--sec-pt, 79px); padding-bottom: var(--sec-pb, 80px); overflow-x: clip; }
.testimonials .section__head { margin-bottom: 55px; }
/* two rails, offset from each other as in the design */
.testimonial-rows { display: flex; flex-direction: column; gap: 24px; }
.testimonial-rows .carousel__track { padding-right: 0; }
.testimonial-rows .carousel:nth-child(1) .carousel__track { margin-left: -209px; }
.testimonial-rows .carousel:nth-child(2) .carousel__track { margin-left: -119px; }
.testimonial-card {
  width: var(--testimonial-w, 386px); height: 304px;
  background: var(--white); border-radius: var(--radius);
  padding: 24px 22px 20px;
  display: flex; flex-direction: column;
}
.testimonial-card__head { display: flex; align-items: center; gap: 14px; }
.testimonial-card__avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex: none; }
.testimonial-card__name { font-size: 15px; font-weight: 700; }
.testimonial-card__stars { margin-top: 3px; }
/* svg is display:block in the reset, so the star row needs its own flow */
.stars { display: inline-flex; align-items: center; gap: 3px; }
.testimonial-card__text { margin-top: 22px; font-size: 15px; line-height: 1.45; }
.testimonial-card__src {
  margin-top: auto; padding-top: 20px;
  display: flex; align-items: center; gap: 9px;
  font-size: 14px; color: var(--ink-2);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { padding-top: var(--sec-pt, 75px); padding-bottom: var(--sec-pb, 0px); }
.faq__inner { max-width: var(--faq-w, 780px); margin-inline: auto; }
.faq__title { font-size: 40px; margin-bottom: 23px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 15px 0; text-align: left;
  font-size: 16px; font-weight: 600;
}
.faq__q svg { flex: none; transition: transform .25s ease; }
.faq__item.is-open .faq__q svg { transform: rotate(180deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p {
  padding-bottom: 22px; font-size: 15px; line-height: 1.55; color: var(--ink-2);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--footer-bg); color: var(--white); padding: 85px 0 0; margin-top: 63px; }
.site-footer__logo img { width: 104px; height: auto; }
.site-footer__cols { display: flex; gap: 105px; margin-top: 84px; }
.site-footer__heading { font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.site-footer__cols a { display: block; padding: 6px 0; font-size: 15px; color: var(--footer-text); }
.site-footer__cols a:hover { color: var(--white); }
.site-footer__social {
  display: flex; align-items: center; gap: 12px;
  padding: 32px 0; margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.site-footer__social span { font-size: 15px; color: var(--footer-text); margin-right: 4px; }
.social-icon {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .18s ease;
}
.social-icon:hover { opacity: .75; }
.site-footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 0 25px;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: 14px; color: var(--footer-text);
}
.site-footer__bottom nav { display: flex; gap: 34px; }

/* ==========================================================================
   Mobile — 375px reference
   ========================================================================== */
@media (max-width: 1023px) {
  :root { --gutter: 16px; --header-h: 56px; }

  .h-display { font-size: 34px; line-height: 38px; }
  .h-section { font-size: 26px; }

  .header-inner { position: relative; grid-template-columns: auto 1fr auto; }
  .nav-left, .header-search { display: none; }
  .nav-burger { display: inline-flex; }
  /* three icons on the right outweigh the lone burger, so the logo is centred
     against the header rather than against the leftover column */
  .site-logo { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
  .header-right { gap: 14px; }
  .header-right .search-toggle { display: inline-flex; }
  /* the CTA lives in the nav drawer on mobile, so the header row stays clean */
  .header-right .deal-btn { display: none; }

  .hero { height: var(--hero-h-m, 480px); }
  .hero__title { max-width: 300px; }

  /* one row that drifts on its own; the duplicated set makes the wrap seamless */
  .trust {
    padding-top: var(--sec-pt-m, 28px); padding-bottom: var(--sec-pb-m, 30px); overflow: hidden;
    /* soften where items enter and leave the row */
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
  }
  .trust__grid {
    display: flex; width: max-content; gap: 0;
    max-width: none; margin-inline: 0; padding-inline: 0;
    animation: bp-trust-scroll 30s linear infinite;
  }
  .trust__item--dupe { display: flex; }
  .trust__item, .trust__item + .trust__item {
    flex: none; width: 272px;
    border-left: 0; border-top: 0;
    padding: 0 20px;
    border-right: 1px solid var(--line);
  }
  .trust__title { font-size: 15px; }
  .trust__desc { margin-top: 4px; font-size: 13px; }
  /* the two halves are identical, so -50% lands exactly one set along */
  @keyframes bp-trust-scroll { to { transform: translateX(-50%); } }

  .section { padding-top: var(--sec-pt-m, var(--sec-pt, 0)); padding-bottom: var(--sec-pb-m, 44px); }
  .section__head { margin-bottom: 20px; }
  .section__controls .icon-round { display: none; }

  .product-card { width: 172px; }
  .product-card__media { height: 172px; }
  .product-card__meta { margin-top: 20px; }
  .product-card__title { font-size: 14px; }
  .product-card__price { font-size: 13px; }
  .carousel__track { gap: 14px; }

  .split-tiles { grid-template-columns: 1fr; gap: var(--tile-gap, 8px); }
  .split-tile { height: var(--tile-h-m, 260px); }
  .split-tile__body { left: 22px; bottom: 26px; }
  .split-tile__title { font-size: 24px; }

  .season-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .season-card { height: 220px; }

  .brand-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .brand-tile { height: 128px; gap: 16px; }
  .brand-tile img { max-height: 34px; }
  .brand-tile__name { font-size: 12px; }

  .video-card { width: 190px; height: 338px; }

  .testimonials { padding-top: var(--sec-pt-m, 40px); padding-bottom: var(--sec-pb-m, 44px); }
  .testimonial-card { width: 300px; min-height: 250px; }

  .faq { padding-top: var(--sec-pt-m, 40px); padding-bottom: var(--sec-pb-m, 48px); }
  .faq__q { font-size: 15px; padding: 18px 0; }

  .site-footer { padding-top: 44px; }
  .site-footer__cols { gap: 60px; margin-top: 40px; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  .site-footer__bottom nav { gap: 24px; }
}

@media (max-width: 480px) {
  .season-grid { gap: 10px; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 359px) {
  /* too narrow to centre against the header without hitting the icons —
     fall back to centring in the leftover column, which can't overlap */
  .site-logo { position: static; transform: none; justify-self: center; }
}

@media (prefers-reduced-motion: reduce) {
  .deal-btn, .deal-btn::after, .deal-btn__icon svg { animation: none; }
  .deal-btn::after { display: none; }
}
@media (prefers-reduced-motion: reduce) and (max-width: 1023px) {
  /* no drift — leave a row the reader can swipe themselves */
  .trust { overflow: visible; }
  .trust__grid { width: auto; animation: none; overflow-x: auto; scrollbar-width: none; }
  .trust__grid::-webkit-scrollbar { display: none; }
  .trust__item--dupe { display: none; }
}

/* ==========================================================================
   Breadcrumb
   ========================================================================== */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--ink-muted);
}
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb [aria-current] { color: var(--ink); }
.breadcrumb__sep { display: inline-flex; color: var(--line-2); }

/* ==========================================================================
   Shop archive
   ========================================================================== */
.shop__container {
  width: 100%; max-width: 1440px; margin-inline: auto; padding: 24px 32px 0;
}
.shop-tabs {
  display: flex; gap: 30px; margin: 22px 0 26px;
  border-bottom: 1px solid var(--line);
  overflow-x: auto; scrollbar-width: none;
}
.shop-tabs::-webkit-scrollbar { display: none; }
.shop-tabs__item {
  padding: 0 0 12px; font-size: 16px; white-space: nowrap;
  color: var(--ink-muted); border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.shop-tabs__item.is-active { color: var(--ink); font-weight: 700; border-bottom-color: var(--ink); }

.shop__layout { display: grid; grid-template-columns: 274px 1fr; gap: 39px; align-items: start; }
.shop__filter-toggle { display: none; }

.shop-filters__head { display: none; }
.shop-filters__label {
  margin: 22px 0 8px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.shop-filters__apply { display: none; }

.field-search { position: relative; }
.field-search input {
  width: 100%; height: 40px; padding: 0 40px 0 14px;
  border: 1px solid var(--line-2); border-radius: var(--radius);
  font-size: 15px; outline: none;
}
.field-search input:focus { border-color: var(--ink); }
.field-search span {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  color: var(--ink-muted); pointer-events: none;
}

.field-select { position: relative; display: block; }
.field-select select {
  width: 100%; height: 40px; padding: 0 36px 0 14px;
  border: 1px solid var(--line-2); border-radius: var(--radius);
  background: var(--white); font-size: 15px;
  appearance: none; outline: none; cursor: pointer;
}
.field-select > svg {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  pointer-events: none;
}
.field-select--sm { display: inline-block; width: auto; }
.field-select--sm select { height: 32px; padding: 0 30px 0 10px; font-size: 14px; }

.filter-box { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.filter-panel + .filter-panel { border-top: 1px solid var(--line); }
.filter-panel__head {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 16px 16px; font-size: 13px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; text-align: left;
}
.filter-panel__head svg { transition: transform .25s ease; }
.filter-panel.is-open .filter-panel__head svg { transform: rotate(180deg); }
.filter-panel__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.filter-panel.is-open .filter-panel__body { grid-template-rows: 1fr; }
.filter-panel__body > div { overflow: hidden; }
.filter-panel__body > div > * { margin: 0 16px; }
.filter-panel__body > div > *:last-child { margin-bottom: 16px; }

.checkbox { display: flex; align-items: center; gap: 12px; padding: 6px 0; cursor: pointer; }
.checkbox input { position: absolute; opacity: 0; width: 0; height: 0; }
.checkbox__box {
  width: 18px; height: 18px; flex: none;
  border: 1.5px solid var(--line-2); border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  color: transparent; transition: background-color .15s ease, border-color .15s ease;
}
.checkbox input:checked + .checkbox__box { background: var(--ink); border-color: var(--ink); color: #fff; }
.checkbox input:focus-visible + .checkbox__box { outline: 2px solid var(--ink); outline-offset: 2px; }
.checkbox__label { font-size: 15px; }

.price-range { display: flex; align-items: flex-end; gap: 10px; }
.price-range label { flex: 1; display: block; }
.price-range label > span {
  display: block; margin-bottom: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-muted);
}
.price-range__input {
  display: flex; align-items: center; gap: 4px;
  height: 40px; padding: 0 10px;
  border: 1px solid var(--line-2); border-radius: var(--radius);
}
.price-range__input i { font-style: normal; color: var(--ink-muted); }
.price-range__input input { width: 100%; border: 0; outline: none; font-size: 15px; background: none; }
.price-range__to { padding-bottom: 12px; font-size: 14px; color: var(--ink-muted); }

.product-grid { display: grid; grid-template-columns: repeat(var(--rail-cols, 4), 1fr); gap: 24px 23px; }
.product-grid .product-card { width: auto; }
.product-grid .product-card__media { height: 250px; }

.shop-pagination {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin: 46px 0 0;
}
.shop-pagination__count { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.shop-pagination__pages { display: flex; align-items: center; gap: 6px; }
.shop-pagination__pages .page-numbers {
  min-width: 32px; height: 32px; padding: 0 8px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 6px; font-size: 14px; color: var(--ink);
}
.shop-pagination__pages .page-numbers:hover { background: var(--surface); }
.shop-pagination__pages .page-numbers.current { background: var(--ink); color: #fff; }
.shop-pagination__pages .page-numbers.dots:hover { background: none; }

.shop-empty { padding: 60px 0 40px; }
.shop-empty p { margin: 12px 0 24px; }

/* ==========================================================================
   Decant CTA banner
   ========================================================================== */
.cta-decant { padding-top: var(--sec-pt, 60px); padding-bottom: var(--sec-pb, 0px); }
.cta-decant__card {
  display: grid; grid-template-columns: 1fr 416px;
  background: var(--cta-bg, var(--surface)); border-radius: var(--radius); overflow: hidden;
}
.cta-decant__body { padding: 74px 0 74px 74px; }
.cta-decant__title { font-size: 34px; line-height: 1.18; font-weight: 700; letter-spacing: -0.02em; max-width: 470px; }
.cta-decant__text { margin: 18px 0 26px; font-size: 16px; line-height: 1.4; color: var(--ink-2); max-width: 450px; }
.cta-decant__media img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   Product detail
   ========================================================================== */
.pdp__container { width: 100%; max-width: var(--pdp-w, 1440px); margin-inline: auto; padding: 24px 91px 0; }
.pdp__layout { display: grid; grid-template-columns: var(--pdp-cols, 631px 1fr); gap: var(--pdp-gap, 41px); align-items: start; margin-top: 18px; }

@media (min-width: 1024px) {
  /* the gallery rides along while the long info column scrolls past it */
  .pdp__gallery { position: sticky; top: calc(var(--header-h) + 20px); align-self: start; }
  /* keep the whole column — thumbs included — inside the viewport while pinned */
  .pdp__stage { height: min(630px, calc(100vh - var(--header-h) - 160px)); }
}

.pdp__stage {
  height: var(--stage-h, 630px); border-radius: var(--radius); background: var(--stage-bg, var(--white));
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.pdp__stage img { width: 88%; height: 88%; object-fit: contain; }
.pdp__thumbs { display: flex; gap: 12px; margin-top: 14px; }
.pdp__thumb {
  width: 84px; height: 84px; border-radius: 6px; background: #F2F1EF;
  overflow: hidden; border: 1px solid transparent;
}
.pdp__thumb.is-active { border-color: var(--ink); }
.pdp__thumb img { width: 100%; height: 100%; object-fit: contain; }

.pdp__brand { font-size: 14px; color: var(--ink-muted); letter-spacing: 0.06em; text-transform: uppercase; }
/* the mark stands in for the brand line when a logo is available */
.pdp__brand-logo { margin-bottom: 12px; }
/* marks vary from wide wordmarks to tall stacked emblems, so bound a box
   rather than forcing one dimension */
.pdp__brand-logo img {
  width: auto; height: auto;
  max-height: 46px; max-width: 160px;
  object-fit: contain; object-position: left center;
}
.pdp__title { margin-top: 4px; font-size: 36px; line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; }
.pdp__short { margin-top: 8px; font-size: 15px; color: var(--ink-muted); }

.pdp__price { display: flex; align-items: center; gap: 12px; margin-top: 30px; }
.pdp__price-now { font-size: 24px; font-weight: 700; }
.pdp__price del { font-size: 16px; color: var(--ink-muted); }
.pill-discount {
  display: inline-flex; align-items: center; height: 22px; padding: 0 9px;
  border-radius: var(--radius-pill); background: #F0813F; color: #fff;
  font-size: 12px; font-weight: 700;
}

.size-select { display: grid; grid-template-columns: repeat(var(--size-cols, 4), 1fr); gap: 12px; margin-top: 26px; }
.size-option {
  position: relative; height: 62px; border-radius: var(--radius);
  border: 1px solid var(--line-2); background: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.size-option:hover { border-color: var(--ink-2); }
.size-option.is-active { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.size-option__flag {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  padding: 2px 9px; border-radius: var(--radius-pill);
  background: #2C6B3F; color: #fff; font-size: 10px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap;
}
.size-option__size { font-size: 17px; font-weight: 700; }
.size-option__sprays { font-size: 12px; color: var(--ink-muted); letter-spacing: 0.03em; }

.pdp__stock { display: flex; align-items: center; gap: 9px; margin-top: 24px; font-size: 15px; font-weight: 600; color: #2C6B3F; }
.pdp__stock .dot { width: 9px; height: 9px; border-radius: 50%; background: currentColor; }
.pdp__stock.is-out { color: var(--sale); }

.pdp__actions { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.btn--outline { background: var(--white); color: var(--ink); border: 1px solid var(--ink); }
.btn--outline:hover { background: var(--surface); opacity: 1; }
.btn--xl { height: 54px; font-size: 15px; }

.pdp-acc { border-top: 1px solid var(--line); margin-top: 22px; }
.pdp-acc__head {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; font-size: 17px; font-weight: 700; text-align: left;
}
.pdp-acc__head svg { transition: transform .25s ease; }
.pdp-acc.is-open .pdp-acc__head svg { transform: rotate(180deg); }
.pdp-acc__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.pdp-acc.is-open .pdp-acc__body { grid-template-rows: 1fr; }
.pdp-acc__body > div { overflow: hidden; }

.pdp-panel { background: var(--surface); border-radius: var(--radius); padding: 20px 18px; margin-bottom: 6px; }
.pdp-panel__label { margin-top: 14px; font-size: 15px; font-weight: 700; }
.pdp-panel__meta { margin-top: 16px; font-size: 15px; }
.pdp-panel__prose { font-size: 15px; line-height: 1.55; color: var(--ink-2); }
.pdp-panel__prose p + p { margin-top: 12px; }

.note-list { display: flex; gap: 18px; margin-top: 12px; flex-wrap: wrap; }
.note-list li { text-align: center; font-size: 13px; }
.note-list img { width: 44px; height: 44px; margin: 0 auto 4px; object-fit: contain; }

.note-rows { margin-top: 18px; border-top: 1px solid var(--line-2); padding-top: 16px; }
.note-row { display: flex; gap: 12px; }
.note-row + .note-row { margin-top: 14px; }
.note-row__icon { flex: none; color: var(--ink); }
.note-row p { font-size: 15px; line-height: 1.4; color: var(--ink-2); }
.note-row strong { color: var(--ink); }

.chip-group.has-divider { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line-2); }
.chip-group .pdp-panel__label { margin-top: 0; font-weight: 400; color: var(--ink-muted); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  height: 34px; padding: 0 14px;
  border: 1px solid var(--line-2); border-radius: var(--radius-pill);
  background: var(--white); font-size: 15px;
}
.batch {
  display: inline-block; margin-top: 16px; padding: 4px 10px;
  border-radius: 5px; background: #E5E4E1;
  font-size: 13px; color: var(--ink-2);
}

.section--related { --sec-pt: 74px; }

/* ==========================================================================
   Shop + PDP mobile
   ========================================================================== */
@media (max-width: 1023px) {
  .shop__container { padding: 16px 16px 0; }
  .shop__layout { grid-template-columns: 1fr; gap: 0; }
  .shop-tabs { gap: 22px; margin: 16px 0 18px; }
  .shop-tabs__item { font-size: 15px; }

  .shop__filter-toggle {
    display: inline-flex; align-items: center; gap: 8px;
    height: 40px; padding: 0 18px; margin-bottom: 18px;
    border: 1px solid var(--line-2); border-radius: var(--radius-pill);
    font-size: 15px;
  }

  .shop-filters {
    position: fixed; inset: 0 0 0 auto; z-index: 120;
    width: min(360px, 92vw); background: var(--white);
    transform: translateX(100%); transition: transform .3s ease;
    overflow-y: auto; padding: 0 16px 100px;
    box-shadow: -8px 0 40px rgba(0,0,0,.14);
  }
  .shop-filters.is-open { transform: none; }
  .shop-filters__head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 0; position: sticky; top: 0; background: var(--white); z-index: 2;
  }
  .shop-filters__head h2 { font-size: 18px; font-weight: 700; }
  .shop-filters__apply {
    display: inline-flex; position: sticky; bottom: 16px; margin-top: 20px;
  }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 14px; }
  .product-grid .product-card__media { height: 172px; }

  .shop-pagination { margin-top: 30px; }

  .cta-decant { --sec-pt: 34px; }
  .cta-decant__card { grid-template-columns: 1fr; }
  .cta-decant__body { padding: 30px 22px 32px; }
  .cta-decant__title { font-size: 24px; }
  .cta-decant__media { order: -1; height: 220px; }

  .pdp__container { padding: 16px 16px 0; }
  .pdp__layout { grid-template-columns: 1fr; gap: 24px; }
  .pdp__stage { height: 340px; }
  .pdp__title { font-size: 26px; }
  .size-select { grid-template-columns: repeat(var(--size-cols-m, 2), 1fr); }
  .section--related { --sec-pt: 40px; }
}

/* ==========================================================================
   Drawers (cart, mobile nav, search)
   ========================================================================== */
body.has-drawer { overflow: hidden; }
.drawer__scrim {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(0,0,0,.38);
  opacity: 0; visibility: hidden; transition: opacity .28s ease, visibility .28s ease;
}
body.has-drawer .drawer__scrim { opacity: 1; visibility: visible; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 120;
  width: min(420px, 100vw);
  background: var(--white);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: -10px 0 48px rgba(0,0,0,.16);
}
.drawer.is-open { transform: none; }

.cart-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px 18px;
}
.cart-drawer__head h2 { font-size: 22px; font-weight: 700; }
.cart-drawer__inner { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.cart-drawer__empty { padding: 40px 24px; color: var(--ink-muted); }

.cart-lines { flex: 1; overflow-y: auto; padding: 0 24px 12px; }
.cart-line { display: grid; grid-template-columns: 72px 1fr auto; gap: 14px; padding: 16px 0; }
.cart-line + .cart-line { border-top: 1px solid var(--line); }
.cart-line__media { width: 72px; height: 72px; border-radius: 6px; background: var(--surface); overflow: hidden; }
.cart-line__media img { width: 100%; height: 100%; object-fit: contain; }
.cart-line__brand { font-size: 11px; letter-spacing: 0.07em; text-transform: uppercase; color: var(--ink-muted); }
.cart-line__title { font-size: 15px; font-weight: 700; margin-top: 2px; }
.cart-line__variant { font-size: 13px; color: var(--ink-muted); margin-top: 2px; }
.cart-line__foot { display: flex; align-items: center; gap: 14px; margin-top: 10px; }
.cart-line__price { font-size: 15px; font-weight: 700; white-space: nowrap; }
.cart-line__remove { color: var(--ink-muted); }
.cart-line__remove:hover { color: var(--sale); }

.qty-stepper {
  display: inline-flex; align-items: center; gap: 4px;
  border: 1px solid var(--line-2); border-radius: var(--radius-pill);
  padding: 2px;
}
.qty-stepper button {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.qty-stepper button:hover { background: var(--surface); }
.qty-stepper span { min-width: 22px; text-align: center; font-size: 14px; }

.cart-drawer__summary { border-top: 1px solid var(--line); padding: 20px 24px 24px; }
.cart-drawer__summary h3 { font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.cart-drawer__summary p { display: flex; justify-content: space-between; font-size: 15px; padding: 4px 0; color: var(--ink-2); }
.cart-drawer__summary p.is-total { font-size: 18px; font-weight: 700; color: var(--ink); margin-top: 8px; }
.cart-drawer__summary .btn { margin-top: 16px; }

.mobile-nav__links { padding: 8px 24px; }
.mobile-nav__links a { display: block; padding: 14px 0; font-size: 17px; border-bottom: 1px solid var(--line); }
.mobile-nav__links a.mobile-nav__deal {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 6px 0 10px; padding: 13px 16px; border-bottom: 0;
  border-radius: var(--radius-pill);
  background: linear-gradient(100deg, #E0452C 0%, #F0682F 46%, #F5A623 100%);
  color: var(--white);
  font-size: 14px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  box-shadow: 0 3px 14px rgba(224, 69, 44, .34);
}

/* search overlay styles live in the Search section below */

/* ==========================================================================
   Checkout
   ========================================================================== */
.checkout { display: grid; grid-template-columns: 1fr 668px; min-height: calc(100vh - var(--header-h)); }
.checkout form.checkout { display: contents; }
.checkout__main { padding: 40px 64px 80px; max-width: 772px; margin-left: auto; width: 100%; }
.checkout__title { font-size: 28px; font-weight: 700; margin-bottom: 26px; }
.checkout__summary { background: var(--surface); padding: 40px 64px; }

.checkout-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 18px; margin-bottom: 24px;
}
.checkout-card__title { font-size: 18px; font-weight: 700; margin-bottom: 18px; }

.checkout-fields .form-row { margin-bottom: 12px; }
.checkout-fields label { display: none; }
.checkout-fields .input-text,
.checkout-fields select {
  width: 100%; height: 48px; padding: 0 18px;
  border: 1px solid var(--line-2); border-radius: var(--radius-pill);
  font-size: 15px; outline: none; background: var(--white);
  appearance: none;
}
.checkout-fields select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%230A0A0A' stroke-width='1.6' stroke-linecap='round'%3E%3Cpath d='M4.5 7l4.5 4.5L13.5 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 18px center;
}
.checkout-fields .input-text:focus,
.checkout-fields select:focus { border-color: var(--ink); }

.payment_methods { border: 1px solid var(--line-2); border-radius: var(--radius); overflow: hidden; }
.payment_methods > li { border-bottom: 1px solid var(--line-2); }
.payment_methods > li:last-child { border-bottom: 0; }
.payment_methods > li > label {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; font-size: 15px; cursor: pointer;
}
.payment_methods > li input[type="radio"] { accent-color: var(--ink); width: 16px; height: 16px; }
.payment_methods > li.woocommerce-info { padding: 14px 16px; }
.payment_methods > li:has(input:checked) > label { background: #FBDCC6; }
.payment_box { padding: 16px; background: var(--surface); }

.bkash-panel__number { font-size: 15px; }
.bkash-panel__steps { list-style: decimal; padding-left: 20px; margin: 10px 0 18px; font-size: 15px; line-height: 1.45; }
.bkash-panel__steps li + li { margin-top: 4px; }
.bkash-panel label { display: block; font-size: 14px; margin-bottom: 6px; }
.bkash-panel .input-text {
  width: 100%; height: 44px; padding: 0 16px;
  border: 1px solid var(--line-2); border-radius: var(--radius-pill);
  background: var(--white); outline: none;
}
.place-order { margin-top: 22px; }
.checkout__terms { margin-top: 12px; text-align: center; font-size: 13px; color: var(--ink-muted); }
.checkout__terms a { text-decoration: underline; }

.order-summary__items { margin-bottom: 30px; }
.order-summary__item { display: grid; grid-template-columns: 56px 1fr auto; gap: 14px; align-items: center; padding: 8px 0; }
.order-summary__media { position: relative; width: 56px; height: 56px; border-radius: 6px; background: var(--white); overflow: hidden; }
.order-summary__media img { width: 100%; height: 100%; object-fit: contain; }
.order-summary__qty {
  position: absolute; top: -7px; right: -7px;
  min-width: 20px; height: 20px; padding: 0 5px;
  border-radius: var(--radius-pill); background: var(--ink); color: #fff;
  font-size: 11px; font-weight: 700; line-height: 20px; text-align: center;
}
.order-summary__body { display: flex; flex-direction: column; }
.order-summary__name { font-size: 15px; font-weight: 600; }
.order-summary__variant { font-size: 13px; color: var(--ink-muted); }
.order-summary__price { font-size: 15px; font-weight: 700; white-space: nowrap; }
.order-summary__totals p { display: flex; justify-content: space-between; font-size: 15px; padding: 3px 0; }
.order-summary__totals p.is-total { font-size: 20px; font-weight: 700; margin-top: 14px; }

/* Order received */
.order-done { max-width: 620px; margin: 0 auto; padding: 60px 20px 90px; }
.order-done__head { display: flex; align-items: center; gap: 10px; color: #2C6B3F; font-size: 22px; font-weight: 700; }
.order-done__num { margin-top: 8px; font-size: 16px; font-weight: 600; }
.order-done h3 { margin: 30px 0 10px; font-size: 17px; font-weight: 700; }
.order-done p { font-size: 15px; line-height: 1.5; color: var(--ink-2); }

/* ==========================================================================
   Brands directory
   ========================================================================== */
.brands-page { padding: 40px 0 80px; }
.brands-page__title { font-size: 34px; font-weight: 700; text-align: center; }
.brands-page__search { max-width: 420px; margin: 24px auto 44px; }
.brand-group { margin-bottom: 40px; }
.brand-group__letter { font-size: 20px; font-weight: 700; margin-bottom: 16px; }
.brand-group__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 17px; }
.brand-group .brand-tile { gap: 14px; }
.brand-tile__mark {
  font-size: 17px; font-weight: 700; text-align: center; line-height: 1.2;
  max-width: 100%; overflow: hidden;
}

@media (max-width: 1023px) {
  .checkout { grid-template-columns: 1fr; }
  .checkout__main { padding: 24px 16px 60px; max-width: none; }
  .checkout__summary { order: -1; padding: 20px 16px; }
  .brand-group__grid { grid-template-columns: repeat(3, 1fr); }
  .brands-page__title { font-size: 26px; }
}
@media (max-width: 480px) {
  .brand-group__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   WooCommerce overrides — these need to out-specify woocommerce.css,
   which is enqueued after the theme stylesheet.
   ========================================================================== */
.site-main--bleed { display: block; }

.woocommerce .checkout-fields .woocommerce-billing-fields > h3,
.woocommerce .checkout-fields label,
.woocommerce-checkout .checkout-fields label { display: none; }

.woocommerce .checkout-fields .form-row { padding: 0; margin: 0 0 12px; }

.woocommerce .checkout-fields .form-row input.input-text,
.woocommerce .checkout-fields .form-row select,
.woocommerce-checkout .checkout-fields .form-row input.input-text,
.woocommerce-checkout .checkout-fields .form-row select {
  width: 100%; height: 48px; padding: 0 18px; margin: 0;
  border: 1px solid var(--line-2); border-radius: var(--radius-pill);
  font-size: 15px; line-height: 46px; outline: none;
  background-color: var(--white); color: var(--ink);
  box-shadow: none; appearance: none;
}
.woocommerce .checkout-fields .form-row input.input-text:focus,
.woocommerce .checkout-fields .form-row select:focus { border-color: var(--ink); }
.woocommerce .checkout-fields .form-row .required { display: none; }

/* hide checkout chrome the design doesn't show */
.woocommerce-checkout .woocommerce-form-coupon-toggle,
.woocommerce-checkout .checkout_coupon,
.woocommerce-checkout .woocommerce-form-login-toggle { display: none; }

.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-error { margin: 0 0 20px; }

/* the place-order button must beat .woocommerce #respond input#submit etc. */
.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
  width: 100%; height: 54px; padding: 0 22px;
  background: var(--ink); color: #fff;
  border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  float: none;
}
.woocommerce #payment #place_order:hover { background: var(--ink); opacity: .86; }

.woocommerce-checkout #payment { background: transparent; border-radius: 0; }
.woocommerce-checkout #payment ul.payment_methods { padding: 0; border-bottom: 0; }
.woocommerce-checkout #payment div.form-row { padding: 0; }
.woocommerce-checkout #payment div.payment_box { background: var(--surface); margin: 0; }
.woocommerce-checkout #payment div.payment_box::before { display: none; }

/* out-specify `.woocommerce form .form-row label` (0,3,1) */
.woocommerce form.checkout .checkout-fields .form-row label,
.woocommerce form.checkout .checkout-fields .woocommerce-billing-fields > h3 { display: none; }

/* column geometry from the design: form 187–727, summary panel 772–1440 */
.checkout__main { padding: 40px 45px 80px; max-width: 727px; margin-left: auto; }
.checkout__summary { padding: 44px 40px; }
.order-summary { max-width: 404px; }
@media (max-width: 1023px) {
  .checkout__main { padding: 24px 16px 60px; max-width: none; }
  .order-summary { max-width: none; }
}

/* ==========================================================================
   Mobile corrections measured against the 375px frames
   ========================================================================== */
@media (max-width: 1023px) {
  /* hero copy sits toward the bottom of the image, as in the mobile frame,
     so the scrim is weighted downward rather than to the left */
  .hero__media::after {
    background: linear-gradient(180deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,.12) 26%, rgba(0,0,0,.58) 62%, rgba(0,0,0,.78) 100%);
  }
  .hero__inner { justify-content: flex-end; padding-bottom: 46px; }
  .hero__text { margin-top: 12px; }
  .hero__cta { margin-top: 22px; }

  /* the mobile frames show carousel arrows, not the inline "View All" */
  .section__controls .icon-round { display: inline-flex; width: 34px; height: 34px; }
  .section__controls .link-underline { display: none; }
  .section__head { align-items: center; }
}

/* ==========================================================================
   Search overlay (frames 05 / 06)
   ========================================================================== */
.search-overlay { position: fixed; inset: 0; z-index: 130; visibility: hidden; }
.search-overlay.is-open { visibility: visible; }
.search-overlay__scrim {
  position: absolute; inset: 0;
  background: rgba(20,18,16,.35); backdrop-filter: blur(2px);
  opacity: 0; transition: opacity .25s ease;
}
.search-overlay.is-open .search-overlay__scrim { opacity: 1; }

.search-overlay__panel {
  position: absolute; top: calc(var(--header-h) + 6px); left: 50%;
  width: min(1160px, calc(100vw - 140px));
  transform: translate(-50%, -12px);
  background: var(--white); border-radius: 14px;
  padding: 18px 18px 26px;
  max-height: calc(100vh - var(--header-h) - 40px);
  overflow-y: auto;
  opacity: 0; transition: opacity .22s ease, transform .22s ease;
  box-shadow: 0 24px 60px rgba(0,0,0,.16);
}
.search-overlay.is-open .search-overlay__panel { opacity: 1; transform: translate(-50%, 0); }

.search-overlay__form { position: relative; }
.search-overlay__form input {
  width: 100%; height: 46px; padding: 0 56px 0 20px;
  border: 1px solid var(--ink); border-radius: var(--radius-pill);
  font-size: 15px; outline: none; background: var(--white);
}
.search-overlay__form input::placeholder { color: var(--ink-muted); }
.search-overlay__form button {
  position: absolute; right: 5px; top: 5px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
}

.search-overlay__bar { display: flex; align-items: center; gap: 16px; }
.search-overlay__bar .search-overlay__form { flex: 1; }
.search-overlay__close { flex: none; color: var(--ink); padding: 4px; }
.search-overlay__close:hover { opacity: .6; }

.search-overlay__default { padding: 6px 4px 0; }
.search-overlay__default h3 {
  margin: 24px 0 12px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase; color: var(--ink);
}
.search-overlay__default h3:first-child { margin-top: 20px; }

.tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-list a {
  display: inline-flex; align-items: center; height: 32px; padding: 0 16px;
  background: var(--surface); border-radius: var(--radius-pill);
  font-size: 15px; transition: background-color .16s ease;
}
.tag-list a:hover { background: #EDECE9; }
.tag-list--scent a { height: 32px; font-size: 14px; font-weight: 600; padding: 0 18px; }
/* scent pills keep their family colour rather than the neutral tag background */
.tag-list--scent a.badge--fresh    { background: var(--badge-fresh); }
.tag-list--scent a.badge--woody    { background: var(--badge-woody); }
.tag-list--scent a.badge--oriental { background: var(--badge-oriental); }
.tag-list--scent a.badge--floral   { background: var(--badge-floral); }
.tag-list--scent a:hover { filter: brightness(.96); }

.search-overlay__suggest { margin-top: 14px; }
.suggest-list { max-height: 340px; overflow-y: auto; }
.suggest-list li + li { border-top: 1px solid var(--line); }
.suggest-list a { display: flex; align-items: center; gap: 16px; padding: 10px 6px; }
.suggest-list a:hover { background: var(--surface); border-radius: 8px; }
.suggest-list__media { width: 44px; height: 44px; flex: none; background: var(--surface); border-radius: 6px; overflow: hidden; }
.suggest-list__media img { width: 100%; height: 100%; object-fit: contain; }
.suggest-list__body { display: flex; flex-direction: column; gap: 2px; }
.suggest-list__name { font-size: 15px; font-weight: 600; }
.suggest-list__price { font-size: 13px; color: var(--ink-muted); }
.suggest-empty { padding: 20px 6px; font-size: 15px; color: var(--ink-muted); }

/* ==========================================================================
   Search results header + empty state (frames 09 / 10 / 11)
   ========================================================================== */
.search-head { margin: 18px 0 6px; }
.search-head__title { font-size: 26px; font-weight: 700; letter-spacing: -0.01em; }
.search-head__title span { display: block; }
.search-head__count { margin-top: 6px; font-size: 15px; color: var(--ink-muted); }

.no-results { padding: 70px 0 20px; text-align: center; }
.no-results__label { font-size: 14px; font-weight: 700; }
.no-results__query { margin-top: 6px; font-size: 26px; font-weight: 700; letter-spacing: -0.01em; }
.no-results__hint { margin: 14px 0 24px; font-size: 15px; color: var(--ink-muted); }

.section--fallback { --sec-pt: 60px; --sec-pb: 0px; overflow-x: clip; }
.section--fallback .section__head { margin-bottom: 34px; }
.section__more { margin-top: 26px; text-align: center; }

@media (max-width: 1023px) {
  .search-overlay__panel {
    top: var(--header-h); left: 0; transform: none; border-radius: 0;
    width: 100vw; max-height: calc(100vh - var(--header-h));
    padding: 14px 16px 24px;
  }
  .search-overlay.is-open .search-overlay__panel { transform: none; }
  .search-overlay__close { display: none; }
  .search-head__title { font-size: 20px; }
  .no-results { padding: 46px 0 10px; }
  .no-results__query { font-size: 22px; }
  .section--fallback { --sec-pt: 34px; }
}

/* grid children must be allowed to shrink, and rails inside the shop column
   must not use the homepage's viewport-edge bleed */
.shop__main { min-width: 0; }
.shop__main .carousel__track { margin-right: 0; }
.section--fallback .carousel__track { margin-right: 0; }
.section--fallback { max-width: calc(var(--container) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }

/* ==========================================================================
   Editable extras
   --------------------------------------------------------------------------
   Everything below only comes into play when a block or setting asks for it.
   The shipped design never sets these, so it renders exactly as before.
   ========================================================================== */

/* Announcement bar above the header. */
.announce-bar {
  background: var(--footer-bg); color: var(--white);
  font-size: 13px; line-height: 1.3; text-align: center;
}
.announce-bar .container { padding-block: 9px; }
.announce-bar a { text-decoration: underline; text-underline-offset: 3px; }

/* Header dropdown, shown when a nav item has children. */
.nav-left > li { position: relative; }
.nav-left .sub-menu {
  position: absolute; top: calc(100% + 12px); left: -14px; z-index: 70;
  min-width: 208px; padding: 8px 0;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: 0 12px 32px rgba(0,0,0,.10);
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.nav-left .has-children.is-open .sub-menu,
.nav-left .has-children:hover .sub-menu {
  opacity: 1; visibility: visible; transform: none;
}
.nav-left .sub-menu a {
  display: block; padding: 8px 18px;
  font-size: 14px; color: var(--ink-2); white-space: nowrap;
}
.nav-left .sub-menu a:hover { background: var(--surface); color: var(--ink); }

/* Hero alignment and the optional second button. */
.hero--center .hero__inner { align-items: center; text-align: center; }
.hero--right  .hero__inner { align-items: flex-end; text-align: right; }
.hero--center .hero__title,
.hero--center .hero__text,
.hero--right  .hero__title,
.hero--right  .hero__text { margin-inline: 0; }
.hero__cta--secondary { margin-top: 12px; }

.btn--outline-light {
  background: transparent; color: var(--white); border: 1px solid var(--white);
}
.btn--outline-light:hover { background: rgba(255,255,255,.12); opacity: 1; }

/* Decant CTA with the artwork on the other side. */
.cta-decant__card--reverse { grid-template-columns: 416px 1fr; }
.cta-decant__card--reverse .cta-decant__media { order: -1; }
.cta-decant__card--reverse .cta-decant__body { padding: 74px 74px 74px 0; }

/* Optional product page extras. */
.pdp__qty {
  width: 84px; height: 54px; margin-bottom: 12px;
  border: 1px solid var(--line-2); border-radius: var(--radius);
  text-align: center; font-size: 15px;
}
.pdp__actions-note { margin-top: 10px; font-size: 13px; color: var(--ink-muted); }
.pdp__price-prefix { font-size: 15px; color: var(--ink-muted); }
.cart-drawer__note { margin-top: 12px; font-size: 13px; color: var(--ink-muted); text-align: center; }

@media (max-width: 1023px) {
  .cta-decant__card--reverse { grid-template-columns: 1fr; }
  .cta-decant__card--reverse .cta-decant__body { padding: 30px 22px 34px; }
  .nav-left .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; }
}

.checkout__notice {
  margin: 0 0 20px;
  padding: 12px 16px;
  background: var(--surface);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--ink-2);
}
