/* ===========================================================
   Ananda — shared site stylesheet
   Tokens follow the plan's design direction (Part 3.1, 3.2, 3.3).
   =========================================================== */

:root {
  /* Brand greens */
  --color-primary:        #8bc34a; /* decorative */
  --color-primary-dark:   #4a7a1e; /* AA text-safe (5.2:1 on white) */
  --color-secondary:      #a8d96c; /* light leaf accent */
  --color-accent:         #d4a853; /* decorative gold */
  --color-accent-dark:    #8a6d2f; /* AA text-safe gold */

  /* Neutral palette */
  --color-neutral-900:    #1a1a1a;
  --color-neutral-700:    #4a4a4a;
  --color-neutral-500:    #6f6f6f;
  --color-neutral-300:    #cdcdcd;
  --color-neutral-200:    #e8e8e8;
  --color-neutral-100:    #f1efeb;
  --color-neutral-50:     #f9f7f4;
  --color-white:          #ffffff;

  --color-error:          #d32f2f;
  --color-success:        #2e7d32;

  --color-text:           var(--color-neutral-900);
  --color-text-muted:     var(--color-neutral-700);
  --color-on-dark:        #ffffff;

  --color-bg:             var(--color-white);
  --color-bg-alt:         var(--color-neutral-50);
  --color-bg-dark:        #2c3829;

  --color-border:         var(--color-neutral-200);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --fs-base: 1rem;
  --fs-sm:   0.875rem;
  --fs-xs:   0.75rem;
  --fs-h1:   2.25rem;
  --fs-h2:   1.75rem;
  --fs-h3:   1.375rem;
  --fs-h4:   1.125rem;

  --lh-tight: 1.25;
  --lh-normal: 1.55;

  /* Spacing scale (8px base) */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 5rem;
  --space-8: 6rem;

  /* Layout */
  --container-max: 1200px;
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(26,26,26,.06);
  --shadow:    0 4px 12px rgba(26,26,26,.08);
  --shadow-lg: 0 12px 32px rgba(26,26,26,.12);

  --header-height: 80px;
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { font-family: var(--font-body); font-size: 16px; line-height: var(--lh-normal); color: var(--color-text); background: var(--color-bg); -webkit-text-size-adjust: 100%; }
body { margin: 0; min-height: 100vh; display: flex; flex-direction: column; }
img, picture, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 600; line-height: var(--lh-tight); margin: 0 0 var(--space-2); color: var(--color-neutral-900); }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
p  { margin: 0 0 var(--space-2); }
ul, ol { margin: 0 0 var(--space-2); padding-left: 1.25rem; }
hr { border: 0; border-top: 1px solid var(--color-border); margin: var(--space-4) 0; }
blockquote { margin: 0; padding: var(--space-2) var(--space-3); border-left: 3px solid var(--color-primary); background: var(--color-bg-alt); border-radius: 0 var(--radius) var(--radius) 0; }

/* ---- Skip link / accessibility ---- */
.skip-link {
  position: absolute; top: -100px; left: 0; padding: 12px 16px;
  background: var(--color-neutral-900); color: var(--color-on-dark);
  z-index: 1200; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { top: 0; }

/* ---- Container ---- */
.container { width: 100%; max-width: var(--container-max); margin-inline: auto; padding-inline: var(--space-3); }
@media (min-width: 768px) { .container { padding-inline: var(--space-4); } }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 1100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}
.site-header__inner {
  display: flex; align-items: center; gap: var(--space-3);
  width: 100%; max-width: var(--container-max); margin-inline: auto;
  min-height: var(--header-height);
  padding: var(--space-2) var(--space-3);
}
.site-header__brand { display: flex; align-items: center; gap: var(--space-2); color: var(--color-text); text-decoration: none; }
.site-header__brand:hover { text-decoration: none; }
.site-header__logo { width: 48px; height: 48px; object-fit: contain; }
.site-header__brand-text { display: flex; flex-direction: column; }
.site-header__name { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; color: var(--color-neutral-900); line-height: 1; }
.site-header__tagline { font-size: var(--fs-xs); color: var(--color-neutral-700); letter-spacing: 0.05em; text-transform: uppercase; }

.site-header__utility { margin-left: auto; display: flex; align-items: center; gap: var(--space-2); }
.site-header__icon { position: relative; color: var(--color-neutral-900); width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; transition: background-color .15s; text-decoration: none; }
.site-header__icon:hover { background: var(--color-neutral-100); text-decoration: none; }
.site-header__cart-count { position: absolute; top: 4px; right: 4px; min-width: 18px; height: 18px; padding: 0 5px; background: var(--color-accent); color: var(--color-neutral-900); font-size: 10px; font-weight: 700; line-height: 18px; text-align: center; border-radius: 999px; }
.site-header__cart-count[data-count="0"] { display: none; }

.site-header__toggle { display: inline-flex; flex-direction: column; gap: 4px; width: 44px; height: 44px; padding: 10px; background: transparent; border: 0; align-items: center; justify-content: center; border-radius: var(--radius-sm); }
.site-header__toggle span { display: block; width: 24px; height: 2px; background: var(--color-neutral-900); transition: transform .2s, opacity .2s; }
.site-header__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.site-header__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-header__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---- Navigation ---- */
.site-nav { }
.site-nav__list { list-style: none; margin: 0; padding: 0; display: flex; gap: var(--space-3); }
.site-nav__item a {
  display: inline-block;
  padding: var(--space-1) 0;
  font-size: 0.9375rem; font-weight: 500;
  color: var(--color-neutral-900); text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color .15s, color .15s;
}
.site-nav__item a:hover { color: var(--color-primary-dark); border-bottom-color: var(--color-primary); }
.site-nav__item.is-active a { color: var(--color-primary-dark); border-bottom-color: var(--color-primary); }

/* Mobile slide-out nav */
@media (max-width: 900px) {
  .site-nav-mobile {
    position: fixed; inset: var(--header-height) 0 0 0;
    background: var(--color-white);
    padding: var(--space-4) var(--space-3);
    transform: translateX(100%);
    transition: transform .25s ease-out;
    z-index: 1099;
    overflow-y: auto;
  }
  .site-nav-mobile.is-open { transform: translateX(0); }
  .site-nav-mobile .site-nav__list { flex-direction: column; gap: var(--space-2); }
  .site-nav-mobile .site-nav__item a { display: block; padding: var(--space-2) 0; font-size: 1.125rem; border-bottom: 1px solid var(--color-border); }
  .site-nav-mobile .site-nav__item a:hover { border-bottom-color: var(--color-primary); }
}
@media (min-width: 901px) {
  .site-header__toggle { display: none; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-1);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body); font-size: 0.9375rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
  text-decoration: none; cursor: pointer;
  border: 2px solid transparent; border-radius: var(--radius);
  transition: background-color .15s, color .15s, border-color .15s, transform .05s;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn[disabled], .btn.is-disabled { opacity: 0.5; cursor: not-allowed; }

.btn--accent { background: var(--color-accent); color: var(--color-text); border-color: var(--color-accent); }
.btn--accent:hover { background: var(--color-accent-dark); border-color: var(--color-accent-dark); color: var(--color-on-dark); }
.btn--primary { background: var(--color-primary-dark); color: var(--color-on-dark); border-color: var(--color-primary-dark); }
.btn--primary:hover { background: #3d6418; border-color: #3d6418; color: var(--color-on-dark); }
.btn--outline { background: transparent; color: var(--color-primary-dark); border-color: var(--color-primary-dark); }
.btn--outline:hover { background: var(--color-primary-dark); color: var(--color-on-dark); }
.btn--outline-light { background: transparent; color: var(--color-on-dark); border-color: var(--color-on-dark); }
.btn--outline-light:hover { background: var(--color-on-dark); color: var(--color-text); }
.btn--ghost { background: transparent; color: var(--color-neutral-700); border-color: transparent; }
.btn--ghost:hover { color: var(--color-neutral-900); background: var(--color-neutral-100); }

.btn--block { display: flex; width: 100%; white-space: normal; }
.btn--small { padding: 0.5rem 1rem; font-size: 0.8125rem; }

/* Dark-section button overrides — link rule (.section--dark a) outscores
   .btn variants without these. Required by foundation contract. */
.section--dark .btn--accent,
.hero .btn--accent { color: var(--color-text); }
.section--dark .btn--accent:hover,
.hero .btn--accent:hover { color: var(--color-on-dark); }
.section--dark .btn--outline-light,
.hero .btn--outline-light { color: var(--color-on-dark); }
.section--dark .btn--outline-light:hover,
.hero .btn--outline-light:hover { color: var(--color-text); }
.section--dark .btn--primary,
.section--dark .btn--primary:hover,
.hero .btn--primary,
.hero .btn--primary:hover { color: var(--color-on-dark); }

/* ---- Forms ---- */
.form-group { margin-bottom: var(--space-3); }
.form-group label { display: block; margin-bottom: 0.4rem; font-weight: 500; color: var(--color-neutral-900); font-size: 0.9375rem; }
.form-group .required-mark { color: var(--color-error); margin-left: 2px; }
.form-control,
input[type="text"], input[type="email"], input[type="tel"], input[type="number"],
input[type="password"], input[type="search"], input[type="url"],
select, textarea {
  width: 100%; padding: 0.65rem 0.85rem;
  font: inherit; color: var(--color-neutral-900);
  background: var(--color-white);
  border: 1px solid var(--color-border); border-radius: var(--radius-sm);
  transition: border-color .15s, box-shadow .15s;
}
input:focus, select:focus, textarea:focus, .form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(139, 195, 74, 0.18);
}
textarea { min-height: 120px; resize: vertical; }
.form-help { font-size: var(--fs-xs); color: var(--color-neutral-700); margin-top: 0.3rem; }
.form-error { color: var(--color-error); font-size: var(--fs-sm); margin-top: 0.3rem; }
.form-success { color: var(--color-success); font-size: var(--fs-sm); margin-top: 0.3rem; }
.form-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* Dark-section form overrides — generic .section--dark color does not
   cascade past component-level color declarations. */
.section--dark .form-group label,
.hero .form-group label { color: var(--color-on-dark); }
.section--dark .form-control,
.section--dark input[type="text"],
.section--dark input[type="email"],
.section--dark input[type="tel"],
.section--dark input[type="number"],
.section--dark input[type="password"],
.section--dark input[type="search"],
.section--dark select,
.section--dark textarea,
.hero .form-control,
.hero input[type="text"],
.hero input[type="email"],
.hero input[type="tel"],
.hero input[type="number"],
.hero input[type="password"],
.hero input[type="search"],
.hero select,
.hero textarea {
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-neutral-900);
  border-color: rgba(255, 255, 255, 0.4);
}
.section--dark .form-help,
.hero .form-help { color: rgba(255, 255, 255, 0.78); }

/* ---- Sections ---- */
.section { padding-block: 3rem; }
@media (min-width: 768px) { .section { padding-block: 5rem; } }
.section--alt { background: var(--color-bg-alt); }
.section--dark { background: var(--color-bg-dark); color: var(--color-on-dark); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--color-on-dark); }
.section--dark a { color: var(--color-on-dark); border-bottom: 1px dotted rgba(255, 255, 255, 0.5); }
.section--dark a:hover { color: var(--color-secondary); }
.section--dark .section__eyebrow { color: var(--color-secondary); }
.section--dark .section__lead,
.section--dark .section__header .text-muted,
.section--dark .page-body,
.section--dark .page-body p,
.section--dark .page-body li {
  color: rgba(255, 255, 255, 0.86);
}
.section--dark .form-error,
.section--dark .form-status.is-error,
.hero .form-error,
.hero .form-status.is-error {
  color: #ffb4b4;
}
.section--dark .form-success,
.section--dark .form-status,
.hero .form-success,
.hero .form-status {
  color: #b7e5bd;
}
.section--sticky { position: sticky; top: var(--header-height); background: var(--color-white); z-index: 50; }

.section__header { text-align: center; max-width: 720px; margin: 0 auto var(--space-4); }
.section__eyebrow { display: inline-block; font-size: var(--fs-xs); letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-primary-dark); margin-bottom: var(--space-1); }
.section__title { margin-bottom: var(--space-2); }
.section__lead { font-size: 1.125rem; color: var(--color-neutral-700); }

/* ---- Hero ---- */
.hero { position: relative; min-height: 480px; display: flex; align-items: center; padding-block: 3rem; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img, .hero__media picture { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(26,26,26,0.72), rgba(26,26,26,0.45)); z-index: 1; }
.hero__content { position: relative; z-index: 2; max-width: 720px; color: var(--color-on-dark); }
.hero__eyebrow { display: inline-block; font-size: var(--fs-xs); letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-secondary); margin-bottom: var(--space-2); }
.hero__title { font-size: clamp(2rem, 5vw, 3rem); color: var(--color-on-dark); margin-bottom: var(--space-2); }
.hero__subtitle { font-size: 1.125rem; margin-bottom: var(--space-3); color: rgba(255,255,255,0.92); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-2); }

/* ---- Grid utility ---- */
.grid { display: grid; gap: var(--space-3); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* ---- Cards ---- */
.card {
  background: var(--color-white); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: var(--space-3);
  display: flex; flex-direction: column; gap: var(--space-2);
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--color-neutral-300); }
.card__media { aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius); background: var(--color-neutral-100); }
.card__media img, .card__media picture { width: 100%; height: 100%; object-fit: cover; }
.card__title { font-size: 1.125rem; margin: 0; }
.card__text { color: var(--color-neutral-700); font-size: 0.9375rem; margin: 0; }

/* ---- Product card ---- */
.product-card {
  display: flex; flex-direction: column; gap: var(--space-2);
  background: var(--color-white); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: var(--space-3);
  transition: box-shadow .15s, transform .15s, border-color .15s;
  position: relative;
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--color-neutral-300); }
.product-card__media { aspect-ratio: 1; overflow: hidden; border-radius: var(--radius); background: var(--color-neutral-100); }
.product-card__media img { width: 100%; height: 100%; object-fit: contain; transition: transform .25s; }
.product-card:hover .product-card__media img { transform: scale(1.03); }
.product-card__title { font-family: var(--font-heading); font-size: 1.0625rem; font-weight: 600; line-height: 1.3; margin: 0; min-height: 2.6em; }
.product-card__title a { color: var(--color-neutral-900); text-decoration: none; }
.product-card__title a:hover { color: var(--color-primary-dark); }
.product-card__price { font-family: var(--font-body); font-weight: 700; font-size: 1.125rem; color: var(--color-neutral-900); }
.product-card__price--sale { color: var(--color-error); }
.product-card__price-old { text-decoration: line-through; color: var(--color-neutral-500); font-weight: 400; margin-left: var(--space-1); font-size: 0.875rem; }
.product-card__category { font-size: var(--fs-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-primary-dark); }
.product-card__add { margin-top: auto; }
.product-card__badge { position: absolute; top: var(--space-2); left: var(--space-2); background: var(--color-accent); color: var(--color-text); font-size: var(--fs-xs); font-weight: 700; padding: 0.25rem 0.6rem; border-radius: 999px; letter-spacing: 0.05em; text-transform: uppercase; }
.product-card__badge--sale { background: var(--color-error); color: var(--color-on-dark); }
.product-card__badge--out { background: var(--color-neutral-300); color: var(--color-neutral-900); }
.product-card__wishlist {
  position: absolute; top: var(--space-2); right: var(--space-2); z-index: 2;
  width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--color-border); border-radius: 999px;
  background: rgba(255,255,255,0.94); color: var(--color-neutral-900);
  box-shadow: var(--shadow-sm);
}
.product-card__wishlist:hover { color: var(--color-error); background: var(--color-white); }
.product-card__wishlist.is-active { color: var(--color-error); }

/* ---- Public page/product surfaces ---- */
.page-hero { padding-block: var(--space-5) var(--space-3); background: var(--color-bg-alt); border-bottom: 1px solid var(--color-border); }
.page-hero__title { margin: 0; }
.page-body { max-width: 760px; }
.page-body > * + * { margin-top: var(--space-2); }
.page-body h2, .page-body h3, .page-body h4 { margin-top: var(--space-4); }
.page-body a { font-weight: 500; }

.category-cover,
.category-header__media {
  aspect-ratio: 21 / 9;
  background: var(--color-neutral-100);
  overflow: hidden;
  border-radius: var(--radius);
}
.category-cover img,
.category-cover picture,
.category-header__media img,
.category-header__media picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-hero__layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr); gap: var(--space-5); align-items: start; }
@media (max-width: 720px) {
  .product-hero__layout { grid-template-columns: minmax(0, 1fr); }
}
.product-hero__media { display: grid; gap: var(--space-2); }
.product-hero__main { position: relative; aspect-ratio: 1; background: var(--color-neutral-100); border-radius: var(--radius); overflow: hidden; }
.product-hero__main-slide { position: absolute; inset: 0; display: none; place-items: center; padding: var(--space-3); }
.product-hero__main-slide.is-active { display: grid; }
.product-hero__main-slide img,
.product-hero__main-slide picture { width: 100%; height: 100%; object-fit: contain; }
.product-hero__thumbs { list-style: none; display: flex; gap: var(--space-1); margin: 0; padding: 0; overflow-x: auto; overflow-y: hidden; }
.product-hero__thumb { width: 76px; height: 76px; padding: 4px; border: 1px solid var(--color-border); border-radius: var(--radius-sm); background: var(--color-white); }
.product-hero__thumb.is-active { border-color: var(--color-primary-dark); box-shadow: 0 0 0 2px rgba(74,122,30,.14); }
.product-hero__thumb img,
.product-hero__thumb picture { width: 100%; height: 100%; object-fit: contain; }
.product-hero__info { display: flex; flex-direction: column; gap: var(--space-2); }
.product-hero__category { align-self: flex-start; font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-primary-dark); }
.product-hero__title { margin: 0; overflow-wrap: break-word; word-break: break-word; }
.product-hero__short { color: var(--color-neutral-700); margin: 0; }
.product-hero__price { display: flex; flex-wrap: wrap; align-items: baseline; gap: var(--space-1); }
.product-hero__price-current { font-size: 1.5rem; font-weight: 700; color: var(--color-neutral-900); }
.product-hero__price-old { color: var(--color-neutral-500); text-decoration: line-through; }
.product-hero__price-vat { flex-basis: 100%; color: var(--color-neutral-700); font-size: var(--fs-sm); }
.product-hero__stock-badge { display: inline-flex; padding: 0.25rem 0.7rem; border-radius: 999px; font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.product-hero__stock-badge--in { background: rgba(46,125,50,.12); color: var(--color-success); }
.product-hero__stock-badge--out { background: rgba(211,47,47,.1); color: var(--color-error); }
.product-hero__cta { display: flex; flex-wrap: wrap; align-items: end; gap: var(--space-2); padding-top: var(--space-2); }
.product-hero__qty { display: grid; gap: .35rem; }
.product-hero__qty-label { font-weight: 600; color: var(--color-neutral-900); }
.qty-stepper { display: inline-flex; align-items: center; border: 1px solid var(--color-border); border-radius: var(--radius); background: var(--color-white); overflow: hidden; }
.qty-stepper__btn { width: 42px; height: 42px; border: 0; background: transparent; font-size: 1.1rem; }
.qty-stepper__btn:hover { background: var(--color-neutral-100); }
.qty-stepper__input { width: 58px; height: 42px; border: 0; border-inline: 1px solid var(--color-border); text-align: center; }
.product-hero__wishlist { color: var(--color-neutral-700); }
.product-hero__wishlist.is-active { color: var(--color-error); }
.product-variants { border: 0; padding: 0; margin: var(--space-2) 0; }
.product-variants legend { font-weight: 700; color: var(--color-neutral-900); margin-bottom: .35rem; }
.product-variants__list { display: grid; gap: .6rem; }
.product-variants__option { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: .65rem; padding: .8rem .9rem; border: 1px solid var(--color-border); border-radius: var(--radius-sm); background: var(--color-white); cursor: pointer; }
.product-variants__option:has(input:checked) { border-color: var(--color-primary-dark); box-shadow: 0 0 0 2px rgba(74,122,30,.14); }
.product-variants__option.is-disabled { opacity: .58; cursor: not-allowed; }
.product-variants__option input { width: auto; margin: 0; }
.product-variants__option span { min-width: 0; overflow-wrap: anywhere; }
.product-variants__option strong { white-space: nowrap; }
.product-variants__option em { grid-column: 2 / -1; font-style: normal; color: var(--color-error); font-size: var(--fs-sm); }
.product-hero__cta-status { flex-basis: 100%; margin: 0; font-size: var(--fs-sm); color: var(--color-success); }
.product-hero__cta-status.is-error { color: var(--color-error); }
.product-hero__rating { display: flex; flex-wrap: wrap; gap: var(--space-1); align-items: center; color: var(--color-accent-dark); }
.product-hero__rating-stars,
.review-card__rating,
.review-form-rating__stars { display: inline-flex; gap: 2px; color: var(--color-accent-dark); }

.product-tabs { background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; }
.product-tabs__list { display: flex; gap: var(--space-1); padding: 0 var(--space-2); border-bottom: 1px solid var(--color-border); overflow-x: auto; overflow-y: hidden; }
.product-tabs__tab { padding: var(--space-2) 0.25rem; border: 0; border-bottom: 2px solid transparent; background: transparent; color: var(--color-neutral-700); font: inherit; font-weight: 600; white-space: nowrap; }
.product-tabs__tab.is-active { color: var(--color-primary-dark); border-bottom-color: var(--color-primary-dark); }
.product-tabs__panel { padding: var(--space-3); }
.product-tabs__content { max-width: 78ch; }
.product-tabs__content > * + * { margin-top: var(--space-2); }
.product-attributes { display: grid; grid-template-columns: max-content 1fr; gap: var(--space-1) var(--space-3); }
.product-attributes dt { font-weight: 700; }
.product-attributes dd { margin: 0; color: var(--color-neutral-700); }

.review-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-2); }
.review-card,
.review-form-wrap,
.review-form-disabled { border: 1px solid var(--color-border); border-radius: var(--radius); background: var(--color-white); padding: var(--space-3); }
.review-card__header { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-1); margin-bottom: var(--space-1); }
.review-card__author { font-weight: 700; color: var(--color-neutral-900); }
.review-card__date { color: var(--color-neutral-700); font-size: var(--fs-sm); }
.review-card__title { font-size: 1rem; margin-bottom: .35rem; }
.review-card__body,
.review-list__empty,
.review-form-wrap__lead { color: var(--color-neutral-700); }
.review-form-wrap { margin-top: var(--space-3); }
.review-form-rating { border: 0; padding: 0; margin-inline: 0; }
.review-form-rating legend { font-weight: 600; margin-bottom: .4rem; }
.review-form-rating__stars { flex-direction: row-reverse; justify-content: flex-end; }
.review-form-rating__stars input { position: absolute; opacity: 0; }
.review-form-rating__stars label { cursor: pointer; color: var(--color-neutral-300); }
.review-form-rating__stars input:checked ~ label,
.review-form-rating__stars label:hover,
.review-form-rating__stars label:hover ~ label { color: var(--color-accent-dark); }
.form-status { display: inline-block; margin-left: var(--space-2); color: var(--color-success); }
.form-status.is-error { color: var(--color-error); }

@media (max-width: 900px) {
  .product-hero__layout { grid-template-columns: minmax(0, 1fr); gap: var(--space-3); }
}
@media (max-width: 540px) {
  .category-cover,
  .category-header__media { aspect-ratio: 4 / 3; }
  .product-hero__cta { align-items: stretch; }
  .product-hero__add,
  .product-hero__wishlist { width: 100%; }
}

/* ---- Badges ---- */
.badge { display: inline-block; padding: 0.2rem 0.6rem; font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.05em; border-radius: 999px; }
.badge--in-stock { background: rgba(46,125,50,0.12); color: var(--color-success); }
.badge--low-stock { background: rgba(212, 168, 83, 0.18); color: var(--color-accent-dark); }
.badge--out-of-stock { background: rgba(211, 47, 47, 0.10); color: var(--color-error); }

/* ---- Tabs ---- */
.tabs { display: flex; gap: var(--space-2); border-bottom: 1px solid var(--color-border); overflow-x: auto; overflow-y: hidden; scrollbar-width: thin; }
.tabs__tab { padding: 0.75rem 0.25rem; background: none; border: 0; border-bottom: 2px solid transparent; font: inherit; color: var(--color-neutral-700); cursor: pointer; white-space: nowrap; }
.tabs__tab[aria-selected="true"] { color: var(--color-primary-dark); border-bottom-color: var(--color-primary); font-weight: 600; }

/* ---- Breadcrumbs ---- */
.breadcrumbs { font-size: var(--fs-sm); color: var(--color-neutral-700); margin-bottom: var(--space-2); }
.breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.breadcrumbs li + li::before { content: "/"; margin-right: 0.4rem; color: var(--color-neutral-300); }
.breadcrumbs a { color: var(--color-primary-dark); }

/* ---- Pagination ---- */
.pagination { display: flex; gap: var(--space-1); justify-content: center; margin-top: var(--space-4); flex-wrap: wrap; }
.pagination a, .pagination span { display: inline-block; padding: 0.4rem 0.75rem; border: 1px solid var(--color-border); border-radius: var(--radius-sm); color: var(--color-neutral-900); text-decoration: none; }
.pagination .is-current { background: var(--color-primary-dark); color: var(--color-on-dark); border-color: var(--color-primary-dark); }

/* ---- Tables ---- */
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { padding: 0.75rem; text-align: left; border-bottom: 1px solid var(--color-border); }
.table th { font-weight: 600; color: var(--color-neutral-900); }

/* ---- Cookie banner ---- */
.cookie-banner {
  position: fixed; left: var(--space-3); right: var(--space-3); bottom: var(--space-3);
  z-index: 1000;
  background: var(--color-neutral-900); color: var(--color-on-dark);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: var(--space-3);
}
.cookie-banner__inner { display: flex; flex-direction: column; gap: var(--space-2); }
@media (min-width: 768px) {
  .cookie-banner__inner { flex-direction: row; align-items: center; justify-content: space-between; gap: var(--space-3); }
}
.cookie-banner__text { margin: 0; font-size: var(--fs-sm); color: rgba(255,255,255,0.92); }
.cookie-banner__link { color: var(--color-secondary); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: var(--space-2); flex-shrink: 0; }
.cookie-banner__actions .btn--ghost { color: rgba(255,255,255,0.92); }
.cookie-banner__actions .btn--ghost:hover { background: rgba(255,255,255,0.08); color: var(--color-on-dark); }

/* ---- Toast ---- */
.toast { position: fixed; right: var(--space-3); bottom: var(--space-3); z-index: 900; background: var(--color-neutral-900); color: var(--color-on-dark); padding: var(--space-2) var(--space-3); border-radius: var(--radius); box-shadow: var(--shadow-lg); transform: translateY(20px); opacity: 0; transition: transform .2s, opacity .2s; }
.toast.is-visible { transform: translateY(0); opacity: 1; }

/* ---- Footer ---- */
.site-footer { background: var(--color-bg-dark); color: var(--color-on-dark); margin-top: auto; }
.site-footer__inner {
  display: grid; gap: var(--space-4);
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  width: 100%; max-width: var(--container-max);
  margin-inline: auto; padding: var(--space-5) var(--space-3);
}
@media (max-width: 900px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .site-footer__col--brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .site-footer__inner { grid-template-columns: 1fr; }
}
.site-footer__col h3 { color: var(--color-on-dark); font-size: 1rem; letter-spacing: 0.06em; text-transform: uppercase; }
.site-footer__brandname { display: block; font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; margin-bottom: 0.25rem; }
.site-footer__legal { display: block; font-size: var(--fs-sm); color: rgba(255,255,255,0.78); }
.site-footer__address { font-style: normal; font-size: 0.9375rem; color: rgba(255,255,255,0.85); margin-top: var(--space-2); display: flex; flex-direction: column; gap: 0.2rem; }
.site-footer__address a { color: rgba(255,255,255,0.92); }
.site-footer__address a:hover { color: var(--color-secondary); }
.site-footer__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.site-footer__list a { color: rgba(255,255,255,0.85); text-decoration: none; }
.site-footer__list a:hover { color: var(--color-secondary); text-decoration: underline; }
.site-footer__social { list-style: none; padding: 0; margin: var(--space-2) 0 0; display: flex; gap: var(--space-2); }
.site-footer__social a { color: rgba(255,255,255,0.85); display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; border-radius: 999px; background: rgba(255,255,255,0.06); }
.site-footer__social a:hover { color: var(--color-secondary); background: rgba(255,255,255,0.10); }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,0.10); }
.site-footer__bottom small { display: block; max-width: var(--container-max); margin-inline: auto; padding: var(--space-2) var(--space-3); color: rgba(255,255,255,0.6); font-size: var(--fs-xs); }

/* ---- Cart / line items ---- */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th, .cart-table td { padding: var(--space-2); border-bottom: 1px solid var(--color-border); vertical-align: middle; }
.cart-table th { text-align: left; font-weight: 600; }
.cart-line { display: flex; gap: var(--space-2); align-items: center; }
.cart-line__media { width: 64px; height: 64px; border-radius: var(--radius); overflow: hidden; background: var(--color-neutral-100); flex-shrink: 0; }
.cart-line__media img { width: 100%; height: 100%; object-fit: contain; }
.qty-control { display: inline-flex; align-items: center; gap: 0; border: 1px solid var(--color-border); border-radius: var(--radius-sm); }
.qty-control button { width: 32px; height: 32px; border: 0; background: transparent; font-size: 1rem; }
.qty-control input { width: 48px; height: 32px; text-align: center; border: 0; border-left: 1px solid var(--color-border); border-right: 1px solid var(--color-border); }

/* ---- Opening hours ---- */
.opening-hours { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.25rem; }
.opening-hours li { display: flex; gap: var(--space-2); justify-content: space-between; max-width: 260px; }
.opening-hours__day { font-weight: 500; color: var(--color-neutral-700); }
.opening-hours__time { color: var(--color-neutral-900); }

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-muted  { color: var(--color-neutral-700); }
.text-error  { color: var(--color-error); }
.text-success{ color: var(--color-success); }
.flow > * + * { margin-top: var(--space-2); }
.cluster { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.stack { display: flex; flex-direction: column; gap: var(--space-2); }
.divider { border-top: 1px solid var(--color-border); margin: var(--space-4) 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---- Split layout (about / hero variants) ---- */
.split-layout { display: grid; gap: var(--space-4); grid-template-columns: 1fr 1fr; align-items: center; }
@media (max-width: 900px) { .split-layout { grid-template-columns: 1fr; } }
.split-layout--media-portrait { grid-template-columns: minmax(0, 18rem) 1fr; align-items: flex-start; }
.split-layout--media-portrait .split-layout__media { max-width: 18rem; margin-inline: auto; }
.split-layout--media-portrait .split-layout__media img { object-fit: contain; width: 100%; height: auto; }
@media (max-width: 900px) { .split-layout--media-portrait { grid-template-columns: 1fr; } }

/* ---- Page lead block ---- */
.page-lead { padding-block: var(--space-5) var(--space-3); }
.page-lead__title { margin-bottom: var(--space-2); }
.page-lead__intro { font-size: 1.125rem; color: var(--color-neutral-700); max-width: 64ch; }

/* ---- Accordion (FAQ) ---- */
.accordion {
  display: flex; flex-direction: column; gap: var(--space-2);
  max-width: 820px; margin-inline: auto;
}
.accordion__item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.accordion__item:hover { border-color: var(--color-secondary); }
.accordion__item.is-open { border-color: var(--color-primary); box-shadow: var(--shadow); }
.accordion__heading { margin: 0; font-family: var(--font-body); }
.accordion__trigger {
  width: 100%;
  padding: var(--space-2) var(--space-3);
  background: none; border: 0;
  font: inherit; font-size: 1.0625rem; font-weight: 600; line-height: var(--lh-tight);
  color: var(--color-neutral-900);
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--space-2); text-align: left; cursor: pointer;
  transition: color .15s ease;
}
.accordion__trigger:hover { color: var(--color-primary-dark); }
.accordion__trigger:focus-visible { outline: 2px solid var(--color-primary-dark); outline-offset: 2px; border-radius: var(--radius); }
.accordion__trigger > span { min-width: 0; }
/* Circular +/× toggle indicator. */
.accordion__trigger::after {
  content: "+";
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.875rem; height: 1.875rem;
  border-radius: 999px;
  background: var(--color-neutral-100);
  color: var(--color-primary-dark);
  font-size: 1.375rem; font-weight: 400; line-height: 1;
  transition: background-color .2s ease, color .2s ease, transform .25s ease;
}
.accordion__trigger:hover::after { background: var(--color-secondary); color: var(--color-neutral-900); }
.accordion__trigger[aria-expanded="true"]::after {
  background: var(--color-primary-dark); color: var(--color-on-dark);
  transform: rotate(45deg);
}
.accordion__panel {
  padding: 0 var(--space-3) var(--space-3);
  color: var(--color-neutral-700);
  font-size: 1rem; line-height: var(--lh-normal);
  animation: faq-reveal .22s ease;
}
.accordion__panel[hidden] { display: none; }
.accordion__panel p { margin: 0; }
@keyframes faq-reveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* FAQ "still need help?" callout. */
.faq-cta {
  max-width: 820px; margin: var(--space-5) auto 0;
  text-align: center;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-3);
  box-shadow: var(--shadow-sm);
}
.faq-cta__title { margin-bottom: var(--space-1); font-size: var(--fs-h3); }
.faq-cta__text { margin-bottom: var(--space-3); color: var(--color-neutral-700); }
.faq-cta__actions { display: flex; flex-wrap: wrap; gap: var(--space-2); justify-content: center; }

/* ---- Shop toolbar (filters/search/sort/pills) ---- */
.shop-toolbar { background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius); padding: var(--space-3); margin-bottom: var(--space-4); }
.shop-toolbar__row { display: grid; grid-template-columns: minmax(220px, 2fr) minmax(180px, 1fr) minmax(220px, 1.4fr) auto; gap: var(--space-2); align-items: end; }
.shop-toolbar__field { display: flex; flex-direction: column; gap: 0.35rem; min-width: 0; }
.shop-toolbar__label { font-size: var(--fs-sm); font-weight: 600; color: var(--color-neutral-900); }
.shop-toolbar__price-range { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0.5rem; align-items: center; }
.shop-toolbar__price-sep { color: var(--color-neutral-500); }
.shop-toolbar__actions { display: flex; gap: 0.5rem; align-items: end; }
.shop-toolbar__pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: var(--space-2); padding-top: var(--space-2); border-top: 1px solid var(--color-border); }
.shop-toolbar__pill { display: inline-flex; align-items: center; padding: 0.4rem 0.95rem; border: 1px solid var(--color-border); border-radius: 999px; background: var(--color-white); color: var(--color-neutral-900); text-decoration: none; font-size: var(--fs-sm); font-weight: 500; transition: background-color .15s, border-color .15s, color .15s; }
.shop-toolbar__pill:hover { background: var(--color-neutral-50, #f9f7f4); border-color: var(--color-primary-dark); color: var(--color-primary-dark); }
.shop-toolbar__pill.is-active { background: var(--color-primary-dark); border-color: var(--color-primary-dark); color: var(--color-white); }
@media (max-width: 860px) {
  .shop-toolbar__row { grid-template-columns: 1fr 1fr; }
  .shop-toolbar__field--search { grid-column: 1 / -1; }
  .shop-toolbar__actions { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .shop-toolbar__row { grid-template-columns: 1fr; }
  .shop-toolbar__field--search,
  .shop-toolbar__actions { grid-column: 1; }
}

/* ---- Mobile-only header column rules ---- */
@media (max-width: 540px) {
  .site-header__brand-text .site-header__tagline { display: none; }
  .site-header__name { font-size: 1.25rem; }
}

/* ---- Safety-net class coverage (QA pass) ---- */
.site-main { flex: 1; }
.product-grid { display: grid; gap: var(--space-3); grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.contact-details dt { margin: 0 0 .2rem; }
.contact-details dd { margin: 0; }
.contact-map iframe { width: 100%; border: 0; border-radius: var(--radius); min-height: 260px; }
.cta-block { background: var(--color-bg-alt); border: 1px solid var(--color-border); border-radius: var(--radius); padding: var(--space-3); }
.split-layout__text { min-width: 0; }
.page-hero__subtitle { color: var(--color-neutral-700); max-width: 60ch; margin: .5rem auto 0; }
.empty-state { text-align: center; color: var(--color-neutral-700); background: var(--color-bg-alt); border: 1px dashed var(--color-border); border-radius: var(--radius); padding: var(--space-4) var(--space-3); }
.empty-state__text { margin: 0; }
.empty-state__actions { margin-top: var(--space-2); display: inline-flex; gap: .5rem; flex-wrap: wrap; justify-content: center; }

/* ---- Additional frontend class coverage ---- */
/* .accordion / .accordion__heading styled in the Accordion (FAQ) block above. */
.account-auth-grid { display: grid; gap: var(--space-3); grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.account-auth-card,
.account-dashboard,
.address-card,
.cart,
.order-detail,
.product-description,
.product-related,
.product-reviews,
.wishlist-list__item { background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius); }
.account-auth-card,
.account-dashboard,
.address-card,
.cart,
.order-detail,
.product-description,
.product-related,
.product-reviews,
.wishlist-list__item { padding: var(--space-3); }
.account-dashboard { display: grid; gap: var(--space-3); grid-template-columns: minmax(220px, 280px) 1fr; }
.account-dashboard__sidebar { min-width: 0; }
.account-dashboard__main { min-width: 0; }
@media (max-width: 900px) { .account-dashboard { grid-template-columns: 1fr; } }
.account-nav { display: flex; flex-direction: column; gap: .5rem; }
.account-nav__logout { margin-top: .5rem; }
.address-list { display: grid; gap: var(--space-2); }
.address-card__actions { margin-top: var(--space-2); display: flex; gap: .5rem; flex-wrap: wrap; }
.address-card__label { font-weight: 600; margin-bottom: .25rem; }
.address-form { display: grid; gap: var(--space-2); }
.cart-actions { margin-top: var(--space-3); display: flex; gap: .75rem; flex-wrap: wrap; }
.cart-actions__back,
.cart-actions__checkout { display: inline-flex; }
.cart-table__row td,
.cart-table__row th { vertical-align: middle; }
.cart-table__media { width: 72px; }
.cart-table__name { font-weight: 600; color: var(--color-neutral-900); }
.cart-table__remove { color: var(--color-error); }
.cart-table__line-total { font-weight: 700; }
.cart__items { overflow-x: auto; }
.cart__summary { margin-top: var(--space-3); }
.cart__summary-title { margin: 0 0 var(--space-2); }
.cart__summary-list { display: grid; gap: .5rem; }
.cart__summary-row { display: flex; justify-content: space-between; gap: .75rem; }
.cart__summary-row--total { font-weight: 700; padding-top: .5rem; border-top: 1px solid var(--color-border); }
.cart__summary-row--muted,
.cart__summary-row--hint,
.cart__summary-note,
.cart__row-status { color: var(--color-neutral-700); }
.delivery-option { display: flex; align-items: center; gap: .5rem; }
.form-actions { display: flex; gap: .5rem; flex-wrap: wrap; }
.order-detail__header { margin-bottom: var(--space-2); }
.parcel-machine-selector { position: relative; display: block; }
.parcel-machine-selector__control {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .625rem .75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-neutral-900);
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.parcel-machine-selector__control:focus,
.parcel-machine-selector.is-open .parcel-machine-selector__control {
  outline: 2px solid color-mix(in srgb, var(--color-accent) 45%, transparent);
  outline-offset: 2px;
  border-color: var(--color-accent);
}
.parcel-machine-selector__control:disabled {
  cursor: wait;
  color: var(--color-neutral-700);
  background: var(--color-neutral-100);
}
.parcel-machine-selector__value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.parcel-machine-selector__arrow {
  flex: 0 0 auto;
  color: var(--color-neutral-700);
}
.parcel-machine-selector__dropdown {
  position: absolute;
  z-index: 40;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  box-shadow: 0 14px 30px rgba(28, 31, 33, .16);
  padding: .5rem;
}
.parcel-machine-selector__search {
  width: 100%;
  min-height: 40px;
  margin: 0 0 .5rem;
  padding: .55rem .65rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font: inherit;
}
.parcel-machine-selector__search:focus {
  outline: 2px solid color-mix(in srgb, var(--color-accent) 45%, transparent);
  outline-offset: 1px;
  border-color: var(--color-accent);
}
.parcel-machine-selector__results {
  max-height: 280px;
  overflow: auto;
}
.parcel-machine-selector__group {
  padding: .55rem .6rem .25rem;
  color: var(--color-neutral-700);
  font-size: var(--fs-sm);
  font-weight: 700;
}
.parcel-machine-selector__option {
  width: 100%;
  display: grid;
  gap: .1rem;
  padding: .55rem .6rem;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--color-neutral-900);
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.parcel-machine-selector__option:hover,
.parcel-machine-selector__option.is-active {
  background: var(--color-neutral-100);
}
.parcel-machine-selector__option[aria-selected="true"] {
  background: color-mix(in srgb, var(--color-accent) 18%, var(--color-white));
}
.parcel-machine-selector__option-name {
  font-weight: 600;
}
.parcel-machine-selector__option-address,
.parcel-machine-selector__empty {
  color: var(--color-neutral-700);
  font-size: var(--fs-sm);
}
.parcel-machine-selector__empty {
  padding: .75rem .6rem;
}
.product-description__empty { color: var(--color-neutral-700); }
.product-hero { display: grid; gap: var(--space-3); }
.product-hero__stock { font-weight: 600; }
.product-hero__rating-count,
.product-hero__wishlist-label { color: var(--color-neutral-700); }
.prose > :last-child { margin-bottom: 0; }
.rating-star { color: var(--color-accent-dark); font-size: 1rem; line-height: 1; }
.rating-star--empty { opacity: .35; }
.rating-star--full { opacity: 1; }
.review-form-wrap__title { margin: 0 0 var(--space-2); }
.shop-toolbar__field--price,
.shop-toolbar__field--sort { min-width: 0; }
.site-footer__brand { max-width: 36ch; }
.site-footer__heading { margin: 0 0 .75rem; font-size: 1rem; color: var(--color-white); }
.site-header__cart { display: inline-flex; }
.brand-blocks { display: grid; gap: var(--space-3); grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.brand-block { height: 100%; }
.address-card__body { color: var(--color-neutral-900); }
.cart-table__col-media { width: 92px; }
.cart-table__col-qty { width: 140px; }
.cart-table__col-price,
.cart-table__col-line { width: 140px; }
.cart-table__col-actions { width: 120px; text-align: right; }
.cart-table__col-name { min-width: 220px; }
