/* ========================================================================
   Silkky — "Quiet Depth" Design System
   Mobile-first. Psychology-driven. Premium by subtraction.
   ======================================================================== */

:root {
  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* Elevation */
  --shadow-subtle: 0 1px 3px rgba(90,64,50,0.04);
  --shadow-card: 0 4px 16px rgba(90,64,50,0.06);
  --shadow-elevated: 0 12px 40px rgba(90,64,50,0.08);

  /* Spacing (8pt grid) */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 600ms;

  /* Palette */
  --bg: #faf8f5;
  --surface: #ffffff;
  --surface-alt: #f5f0eb;
  --border: #e8e0d8;
  --border-subtle: #f0ebe5;
  --text: #1a1714;
  --text-secondary: #6b5f57;
  --accent: #7a5a45;
  --accent-hover: #5a4032;

  /* Typography */
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Reset ─────────────────────────────────────────────────────────────── */

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

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
img { display: block; max-width: 100%; }
p { margin: 0; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: 'Noto Serif', 'Times New Roman', Times, serif;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

#root {
  min-height: 100vh;
}

/* ── Focus & Accessibility ─────────────────────────────────────────────── */

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── Shell & Layout (mobile-first) ─────────────────────────────────────── */

.site-shell {
  min-height: 100vh;
  padding-bottom: 72px; /* space for mobile bottom nav */
}

.page-shell {
  width: min(100vw - var(--space-lg), 1200px);
  margin: 0 auto;
  padding: var(--space-lg) 0 var(--space-3xl);
}

.page {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.narrow-page {
  max-width: 760px;
  margin: 0 auto;
}

/* ── Service Bar ───────────────────────────────────────────────────────── */

.service-bar {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-sm) var(--space-md);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-hover);
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border-subtle);
}

.service-bar span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ── Trust Strip (new) ─────────────────────────────────────────────────── */

.trust-strip {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  padding: var(--space-md);
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-subtle);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}

.trust-item svg {
  flex-shrink: 0;
  color: var(--accent);
}

/* Mobile: one row, three equal columns — stays inside rounded card, no overflow */
@media (max-width: 639px) {
  .trust-strip {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .trust-item {
    flex: 1 1 0;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-align: center;
    white-space: normal;
    font-size: clamp(0.62rem, 2.6vw, 0.72rem);
    line-height: 1.2;
    padding: 0 2px;
    box-sizing: border-box;
  }

  .trust-item svg {
    width: 15px;
    height: 15px;
  }

  .trust-item span {
    display: block;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
  }
}

@media (min-width: 640px) and (max-width: 959.98px) {
  .trust-strip {
    flex-wrap: nowrap;
    justify-content: center;
    gap: var(--space-md);
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    padding: var(--space-md);
  }

  .trust-item {
    flex: 1 1 0;
    min-width: 0;
    max-width: 33%;
    white-space: normal;
    justify-content: center;
    text-align: center;
    font-size: 0.78rem;
  }

  .trust-item span {
    overflow-wrap: break-word;
  }
}

/* ── Header ────────────────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto auto;
  grid-auto-rows: min-content;
  justify-content: space-between;
  align-items: center;
  align-content: start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: rgba(250, 248, 245, 0.92);
  border-bottom: 1px solid rgba(232, 224, 216, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 112px;
  height: auto;
  object-fit: contain;
}

.primary-nav {
  position: absolute;
  inset: calc(100% + 1px) 0 auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  padding: 0 var(--space-lg);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-card);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height var(--duration-normal) var(--ease-out),
              opacity var(--duration-fast) var(--ease-out),
              padding var(--duration-normal) var(--ease-out);
}

.primary-nav.is-open {
  max-height: 320px;
  opacity: 1;
  padding: var(--space-md) var(--space-lg);
}

.primary-nav a {
  position: relative;
  font-size: 1rem;
  padding: var(--space-sm) 0;
  color: var(--text-secondary);
  transition: color var(--duration-fast) var(--ease-out);
}

.primary-nav a.active,
.primary-nav a:hover {
  color: var(--text);
}

.primary-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--accent);
  border-radius: 1px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.icon-button,
.cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: box-shadow var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out);
}

.icon-button:hover,
.cart-button:hover {
  box-shadow: var(--shadow-subtle);
  border-color: var(--border);
}

.cart-button {
  position: relative;
}

.cart-button span {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: var(--accent-hover);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
}

.locale-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 12px;
  height: 44px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.locale-switcher select {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.mobile-only {
  display: inline-flex;
}

.desktop-only {
  display: none;
}

/* ── Hero ──────────────────────────────────────────────────────────────── */

.hero-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 0;
  overflow: hidden;
  background: var(--surface);
  min-height: 85vh;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
  padding: var(--space-lg);
  padding-bottom: var(--space-2xl);
  background: linear-gradient(
    to top,
    rgba(26, 23, 20, 0.75) 0%,
    rgba(26, 23, 20, 0.4) 40%,
    transparent 70%
  );
  color: #fff;
}

.hero-copy .eyebrow {
  color: rgba(255,255,255,0.8);
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 8vw, 5.5rem);
  line-height: 0.95;
  color: #fff;
  margin-bottom: var(--space-md);
}

.hero-subline {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 34rem;
}

.hero-manifesto {
  max-width: 34rem;
  margin-bottom: var(--space-lg);
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  font-size: 0.9rem;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-actions .button-primary {
  background: #fff;
  color: var(--text);
  border-color: transparent;
}

.hero-actions .button-primary:hover {
  background: rgba(255,255,255,0.9);
}

.hero-actions .button-secondary {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

.hero-actions .button-secondary:hover {
  border-color: #fff;
}

/* ── Eyebrow ───────────────────────────────────────────────────────────── */

.eyebrow {
  margin-bottom: var(--space-sm);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── Buttons ───────────────────────────────────────────────────────────── */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  min-height: 48px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out),
              background var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-subtle);
}

.button:active {
  transform: scale(0.97);
  box-shadow: none;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
  transform: none;
  box-shadow: none;
}

.button-primary {
  background: var(--accent-hover);
  color: #fff;
}

.button-primary:hover {
  background: var(--accent);
}

.button-secondary {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--accent);
}

.button-added {
  background: #2d6a4f;
  color: #fff;
  cursor: default;
}

.full-width {
  width: 100%;
}

/* ── Cards: Feature Cards ──────────────────────────────────────────────── */

.dual-cards {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

.feature-card {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--surface);
  box-shadow: var(--shadow-subtle);
  transition: box-shadow var(--duration-normal) var(--ease-out),
              transform var(--duration-normal) var(--ease-out);
}

.feature-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.feature-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
  transition: transform var(--duration-slow) var(--ease-out);
}

.feature-card:hover img {
  transform: scale(1.03);
}

.feature-card-placeholder {
  aspect-ratio: 4 / 5;
  width: 100%;
  background: linear-gradient(145deg, #f0e8de 0%, #e8ddd2 100%);
}

.feature-card div {
  padding: var(--space-lg);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ── Section Blocks ────────────────────────────────────────────────────── */

.section-block {
  padding: var(--space-lg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-subtle);
}

.section-heading {
  margin-bottom: var(--space-lg);
}

.section-heading h2 {
  font-size: 1.75rem;
}

.section-caption {
  margin-top: var(--space-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Product Grid & Cards ──────────────────────────────────────────────── */

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
}

.product-card {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--surface);
  box-shadow: var(--shadow-subtle);
  overflow: hidden;
  transition: box-shadow var(--duration-normal) var(--ease-out),
              transform var(--duration-normal) var(--ease-out);
}

.product-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.product-card .product-card-image {
  display: block;
  overflow: hidden;
}

.product-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
  transition: transform var(--duration-slow) var(--ease-out);
}

.product-card:hover img {
  transform: scale(1.04);
}

.product-card-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-md);
}

.product-card h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.product-meta p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
}

.badge {
  display: inline-flex;
  margin-bottom: var(--space-sm);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  background: var(--surface-alt);
  color: var(--accent-hover);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-secondary);
}

.price-label {
  font-size: 0.9rem;
  color: var(--accent-hover);
  font-weight: 600;
}

.price-label.large {
  font-size: 1.05rem;
  margin-bottom: var(--space-md);
}

.text-link {
  font-size: 0.85rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--border);
  transition: text-decoration-color var(--duration-fast) var(--ease-out);
}

.text-link:hover {
  text-decoration-color: var(--accent);
}

/* ── Horizontal Scroll Grid (mobile product carousel) ──────────────────── */

.product-scroll {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--space-sm);
}

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

.product-scroll .product-card {
  flex: 0 0 72vw;
  scroll-snap-align: start;
}

/* ── Editorial Band ────────────────────────────────────────────────────── */

.editorial-band {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-subtle);
}

.editorial-copy {
  display: grid;
  gap: var(--space-sm);
}

.editorial-copy h2 {
  font-size: 1.75rem;
}

.editorial-copy p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.editorial-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
}

.editorial-stack img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* ── Voucher Banner ────────────────────────────────────────────────────── */

.voucher-banner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: var(--space-lg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-subtle);
}

/* ── Testimonials ──────────────────────────────────────────────────────── */

.testimonial-grid {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--space-sm);
}

.testimonial-grid::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 82vw;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--surface-alt);
}

.testimonial-card p {
  color: var(--text);
  line-height: 1.7;
  font-size: 0.95rem;
  font-style: italic;
}

.testimonial-card span {
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 500;
}

/* ── Support Strip ─────────────────────────────────────────────────────── */

.support-strip {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: var(--space-lg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-subtle);
}

.support-copy {
  max-width: 38rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Page Heading ──────────────────────────────────────────────────────── */

.page-heading {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.page-heading.left {
  text-align: left;
}

.page-heading h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.page-heading p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

.page-heading-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 42rem;
}

.page-heading-desc > p:first-child {
  margin-top: 0;
}

.page-heading-desc > p:last-child {
  margin-bottom: 0;
}

/* ── Collection Toolbar ────────────────────────────────────────────────── */

.collection-toolbar {
  display: flex;
  gap: var(--space-sm);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--space-xs);
}

.collection-toolbar::-webkit-scrollbar {
  display: none;
}

.toolbar-group {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  flex-shrink: 0;
}

.toolbar-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.toolbar-pill,
.chip {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--surface);
  font-size: 0.82rem;
  cursor: pointer;
  white-space: nowrap;
  min-height: 44px;
  transition: background var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out);
}

.toolbar-pill:hover,
.chip:hover {
  border-color: var(--accent);
}

.toolbar-pill.is-active,
.chip.is-active {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
}

a.toolbar-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  color: inherit;
  text-decoration: none;
}

/* PLP: one attribute per row; pills scroll horizontally inside each row */
.plp-toolbar-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.plp-toolbar-scroll {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: var(--space-sm);
  min-width: 0;
}

.plp-toolbar-scroll .toolbar-pill {
  flex-shrink: 0;
}

/* PLP filter toolbar + mobile drawer (prototype-aligned) */
.plp-filter-shell {
  margin: var(--space-md) 0 var(--space-lg);
}

.plp-filter-trigger {
  width: 100%;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color var(--duration-fast) var(--ease-out);
}

.plp-filter-trigger:hover {
  border-color: var(--accent);
}

.plp-filter-panel {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear var(--duration-normal);
}

.plp-filter-shell.is-open .plp-filter-panel {
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

.plp-filter-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 23, 20, 0.45);
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.plp-filter-shell.is-open .plp-filter-backdrop {
  opacity: 1;
}

.plp-filter-panel-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-height: min(88vh, 640px);
  padding: var(--space-lg);
  padding-bottom: calc(var(--space-lg) + env(safe-area-inset-bottom, 0px));
  background: var(--bg);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: var(--shadow-elevated);
  transform: translateY(100%);
  transition: transform var(--duration-normal) var(--ease-out);
}

.plp-filter-shell.is-open .plp-filter-panel-inner {
  transform: translateY(0);
}

.plp-filter-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.plp-filter-drawer-title {
  font-family: 'Noto Serif', 'Times New Roman', Times, serif;
  font-size: 1.15rem;
  font-weight: 600;
}

.plp-filter-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-secondary);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.plp-filter-done {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  min-height: 48px;
  margin-top: var(--space-sm);
  justify-content: center;
  align-self: stretch;
  border-radius: var(--radius-pill);
  background: var(--accent-hover);
  color: #fff;
  border-color: transparent;
  font-weight: 600;
}

.plp-filter-done:hover {
  background: var(--accent);
  color: #fff;
}

/* WooCommerce plugin styles generic `button.button` on shop body — force brand CTA in filter drawer */
.woocommerce .plp-filter-panel-inner button.button.plp-filter-done {
  -webkit-appearance: none;
  appearance: none;
  background: var(--accent-hover) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--radius-pill) !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

.woocommerce .plp-filter-panel-inner button.button.plp-filter-done:hover {
  background: var(--accent) !important;
  color: #fff !important;
}

body.plp-filter-open {
  overflow: hidden;
}

@media (max-width: 959.98px) {
  .plp-filter-panel .collection-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-md);
    overflow-x: visible;
    overflow-y: auto;
    max-height: min(52vh, 420px);
    width: 100%;
    max-width: 100%;
    padding-bottom: var(--space-xs);
    -webkit-overflow-scrolling: touch;
  }

  .plp-filter-panel .plp-toolbar-row {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .plp-filter-panel .plp-toolbar-row .toolbar-label {
    width: 100%;
  }

  .plp-filter-panel .plp-toolbar-scroll {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--space-xs);
    box-sizing: border-box;
    scrollbar-width: thin;
  }

  .plp-filter-panel .plp-toolbar-scroll::-webkit-scrollbar {
    height: 5px;
  }

  .plp-filter-panel .plp-toolbar-scroll::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: var(--radius-pill);
  }

  .hero-panel {
    border-radius: var(--radius-lg);
  }

  /* Home: remove dead band below sticky header (same header as shop; padding looked like extra header height). */
  body.home-page .page-shell {
    padding-top: 0;
  }

  /* Closed drawer: no stray taps; desktop nav is always visible and must stay clickable. */
  .primary-nav:not(.is-open) {
    pointer-events: none;
  }
}

/* ── Product Detail Layout ─────────────────────────────────────────────── */

.product-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.related-block {
  width: 100%;
}

/* ── Product Gallery ───────────────────────────────────────────────────── */

.product-gallery {
  display: flex;
  gap: var(--space-sm);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

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

.product-gallery-item {
  flex: 0 0 88vw;
  scroll-snap-align: center;
}

.product-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
}

.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-pill);
  background: var(--border);
  border: none;
  padding: 18px;
  background-clip: content-box;
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out);
}

.gallery-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* ── Product Panel (sticky on desktop) ─────────────────────────────────── */

.product-panel {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-subtle);
}

.product-lead {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.selector-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.selector-header {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  align-items: center;
}

.chip-row,
.size-grid,
.voucher-grid {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.size-chip,
.voucher-card {
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
  min-width: 48px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  transition: background var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out),
              color var(--duration-fast) var(--ease-out);
}

.size-chip:hover,
.voucher-card:hover {
  border-color: var(--accent);
}

.size-chip.selected {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
}

.info-stack {
  display: grid;
  gap: var(--space-sm);
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.info-item strong {
  color: var(--text);
  font-size: 0.82rem;
}

/* ── Accordion ─────────────────────────────────────────────────────────── */

.accordion-list {
  display: grid;
  gap: var(--space-sm);
}

.accordion-list details {
  border: 1px solid var(--border-subtle);
  padding: var(--space-md);
  background: var(--surface-alt);
  border-radius: var(--radius-md);
  transition: box-shadow var(--duration-fast) var(--ease-out);
}

.accordion-list details[open] {
  box-shadow: var(--shadow-subtle);
}

.accordion-list summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
  padding: var(--space-xs) 0;
}

.accordion-list p,
.accordion-list li {
  margin-top: var(--space-sm);
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── Product Story Cards ───────────────────────────────────────────────── */

.product-story {
  display: grid;
  gap: var(--space-sm);
}

.story-card {
  padding: var(--space-md);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--surface-alt);
}

.story-title {
  margin-bottom: var(--space-xs);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.story-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ── Cart ──────────────────────────────────────────────────────────────── */

.cart-list {
  display: grid;
  gap: var(--space-md);
}

.cart-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: var(--space-md);
  padding: var(--space-md);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-subtle);
}

.cart-row img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.cart-row-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-md);
}

.cart-row h3 {
  font-size: 1rem;
}

.cart-row p {
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.quantity-controls {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
}

.quantity-controls button {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--surface-alt);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration-fast) var(--ease-out),
              border-color var(--duration-fast) var(--ease-out);
}

.quantity-controls button:hover {
  border-color: var(--accent);
  background: var(--surface);
}

.checkout-box {
  padding: var(--space-lg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-subtle);
}

.checkout-box p {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
}

.empty-state {
  padding: var(--space-2xl) var(--space-lg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--surface);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: center;
}

.empty-state p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.empty-state--soft {
  border-style: dashed;
  background: rgba(255, 255, 255, 0.6);
}

.product-card-image .woocommerce-placeholder,
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.product-card-image .woocommerce-placeholder {
  aspect-ratio: 4 / 5;
  min-height: 200px;
}

.voucher-legal {
  margin-top: var(--space-xl);
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 36rem;
}

.voucher-actions {
  margin-top: var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
}

/* ── Voucher Page ──────────────────────────────────────────────────────── */

.voucher-hero-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  padding: var(--space-2xl) var(--space-lg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #faf8f5 0%, #f0e8de 100%);
  text-align: center;
  box-shadow: var(--shadow-subtle);
}

.voucher-logo,
.footer-logo {
  width: 120px;
  height: auto;
  object-fit: contain;
}

.voucher-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
}

/* ── Helper / Policy / Narrow content ──────────────────────────────────── */

.helper-box {
  padding: var(--space-lg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-subtle);
}

.helper-box p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.policy-card {
  padding: var(--space-lg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-subtle);
}

.policy-card h3 {
  margin-bottom: var(--space-sm);
}

.policy-card ul {
  padding-left: var(--space-lg);
  color: var(--text-secondary);
}

.policy-card--stack h3:not(:first-child) {
  margin-top: var(--space-xl);
}

.policy-card li {
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.policy-section + .policy-section {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-subtle);
}

.policy-section p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Footer ────────────────────────────────────────────────────────────── */

.site-footer {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: var(--space-xl) var(--space-md) var(--space-4xl);
  border-top: 1px solid var(--border-subtle);
  width: min(100vw - var(--space-lg), 1200px);
  margin: 0 auto;
}

.footer-brand {
  margin-bottom: var(--space-sm);
}

.site-footer > div > p {
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.footer-copyright {
  margin-top: var(--space-sm);
  font-size: 0.75rem;
  color: var(--text-secondary);
  opacity: 0.7;
}

.footer-links {
  display: grid;
  gap: var(--space-sm);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-links a {
  transition: color var(--duration-fast) var(--ease-out);
}

.footer-links a:hover {
  color: var(--text);
}

/* ── Sticky Add-to-Cart Bar (mobile PDP) ───────────────────────────────── */

.sticky-atc {
  position: fixed;
  bottom: 72px;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: rgba(250, 248, 245, 0.95);
  border-top: 1px solid var(--border-subtle);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translateY(100%);
  transition: transform var(--duration-normal) var(--ease-out);
}

.sticky-atc.visible {
  transform: translateY(0);
}

.sticky-atc .sticky-atc-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sticky-atc .sticky-atc-name {
  font-weight: 600;
  font-size: 0.88rem;
}

.sticky-atc .sticky-atc-price {
  font-size: 0.82rem;
  color: var(--accent-hover);
  font-weight: 600;
}

.sticky-atc .button {
  flex-shrink: 0;
}

/* ── Bottom Navigation (mobile) ────────────────────────────────────────── */

.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 72px;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: rgba(250, 248, 245, 0.95);
  border-top: 1px solid var(--border-subtle);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.mobile-bottom-nav a,
.mobile-bottom-nav button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-sm);
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  min-width: 56px;
  min-height: 48px;
  transition: color var(--duration-fast) var(--ease-out);
}

.mobile-bottom-nav a.active,
.mobile-bottom-nav button.active {
  color: var(--accent-hover);
}

.mobile-bottom-nav .nav-icon {
  position: relative;
}

.mobile-bottom-nav .nav-badge {
  position: absolute;
  top: -4px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: var(--accent-hover);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 600;
}

/* ── Scroll Reveal Animation ───────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================================================
   Desktop Enhancements (960px+)
   ======================================================================== */

@media (min-width: 960px) {
  .site-shell {
    padding-bottom: 0;
  }

  /* Match content column width (same formula as .page-shell) */
  .service-bar,
  .site-header {
    width: min(1200px, calc(100vw - var(--space-2xl)));
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  .page-shell {
    width: min(1200px, calc(100vw - var(--space-2xl)));
    padding: var(--space-2xl) 0 var(--space-4xl);
  }

  /* Home hero should sit closer to header like PLP (less top air than default page-shell). */
  body.home-page .page-shell {
    padding-top: var(--space-lg);
  }

  .page {
    gap: var(--space-2xl);
  }

  /* Service bar — just widen gap on desktop */
  .service-bar {
    gap: var(--space-xl);
    padding: var(--space-sm) var(--space-lg);
  }

  /* Header */
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: var(--space-xl);
    padding: var(--space-md) var(--space-xl);
  }

  .brand-logo {
    width: 136px;
  }

  .primary-nav {
    position: static;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: var(--space-xl);
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    max-height: none;
    overflow: visible;
    opacity: 1;
  }

  .primary-nav a {
    font-size: 0.9rem;
    padding: 0;
  }

  .mobile-only {
    display: none;
  }

  .desktop-only {
    display: inline-flex;
  }

  /* PLP filters: inline toolbar on desktop */
  .plp-filter-panel {
    position: static;
    inset: auto;
    z-index: auto;
    display: block;
    pointer-events: auto;
    visibility: visible;
    transition: none;
  }

  .plp-filter-backdrop {
    display: none;
  }

  .plp-filter-panel-inner {
    max-height: none;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    transition: none;
  }

  .plp-filter-shell.is-open .plp-filter-panel-inner {
    transform: none;
  }

  .plp-filter-panel .collection-toolbar {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    align-items: center;
    gap: var(--space-md);
    max-height: none;
    padding-bottom: var(--space-xs);
  }

  .plp-filter-panel .plp-toolbar-row {
    flex-direction: row;
    align-items: center;
    flex-shrink: 0;
  }

  .plp-filter-panel .plp-toolbar-scroll {
    overflow-x: visible;
    flex-wrap: nowrap;
  }

  /* Mobile-only drawer CTA must not appear on desktop (.mobile-only loses to .button specificity). */
  .plp-filter-done {
    display: none !important;
  }

  /* Hero */
  .hero-panel {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-elevated);
    min-height: 80vh;
  }

  .hero-visual {
    position: relative;
    inset: auto;
  }

  .hero-copy {
    position: relative;
    justify-content: center;
    padding: var(--space-3xl) var(--space-2xl);
    background: var(--surface);
    color: var(--text);
  }

  .hero-copy .eyebrow {
    color: var(--accent);
  }

  .hero-copy h1 {
    color: var(--text);
    font-size: clamp(3rem, 4vw, 5.5rem);
  }

  .hero-subline {
    color: var(--text-secondary);
  }

  .hero-manifesto {
    color: var(--text-secondary);
  }

  .hero-actions .button-primary {
    background: var(--accent-hover);
    color: #fff;
    border-color: transparent;
  }

  .hero-actions .button-primary:hover {
    background: var(--accent);
  }

  .hero-actions .button-secondary {
    background: var(--surface);
    border-color: var(--border);
    color: var(--text);
  }

  .hero-actions .button-secondary:hover {
    border-color: var(--accent);
  }

  /* Trust strip */
  .trust-strip {
    gap: var(--space-2xl);
  }

  /* Cards */
  .dual-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-lg);
  }

  .feature-card h3 {
    font-size: 1.75rem;
  }

  /* Product grid */
  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-lg);
  }

  /* Editorial */
  .editorial-band {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--space-lg);
    align-items: center;
    padding: var(--space-2xl);
  }

  .editorial-copy h2 {
    font-size: 2.4rem;
  }

  /* Voucher banner */
  .voucher-banner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-2xl);
  }

  /* Testimonials */
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
  }

  .testimonial-card {
    flex: auto;
  }

  /* Support strip */
  .support-strip {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-2xl);
  }

  /* Product Detail */
  .product-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--space-xl);
  }

  .product-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    overflow: visible;
  }

  .product-gallery-item {
    flex: auto;
  }

  .product-gallery img {
    border-radius: var(--radius-md);
  }

  .gallery-dots {
    display: none;
  }

  .product-panel {
    position: sticky;
    top: 7rem;
    align-self: start;
  }

  /* Cart */
  .cart-row {
    grid-template-columns: 120px 1fr;
  }

  .cart-row-body {
    flex-direction: row;
    align-items: center;
  }

  /* Footer */
  .site-footer {
    flex-direction: row;
    justify-content: space-between;
    padding: var(--space-xl) var(--space-lg) var(--space-2xl);
  }

  .footer-links {
    justify-items: end;
  }

  /* Voucher */
  .voucher-logo,
  .footer-logo {
    width: 150px;
  }

  /* Section heading */
  .section-heading h2 {
    font-size: 2.2rem;
  }

  /* Hide mobile-only components */
  .mobile-bottom-nav {
    display: none;
  }

  .sticky-atc {
    display: none;
  }

  /* Product scroll → grid on desktop */
  .product-scroll {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-lg);
    overflow: visible;
  }

  .product-scroll .product-card {
    flex: auto;
  }
}

/* ========================================================================
   WooCommerce Overrides
   ======================================================================== */

.woocommerce-breadcrumb { display: none; }
.woocommerce-result-count { display: none; }
.woocommerce-ordering { display: none; }

.woocommerce .quantity .qty {
  width: 60px;
  height: 48px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 500;
}

.woocommerce button.button.alt,
.woocommerce .button.alt,
.woocommerce a.button.alt {
  background: var(--accent-hover) !important;
  color: #fff !important;
  border-radius: var(--radius-pill) !important;
  border: none !important;
  min-height: 48px;
  padding: 12px 24px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: transform var(--duration-fast) var(--ease-out),
              background var(--duration-fast) var(--ease-out);
}

.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover {
  background: var(--accent) !important;
  transform: translateY(-1px);
}

.woocommerce button.button.alt:active {
  transform: scale(0.97);
}

.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
  border-radius: var(--radius-md);
  border-left-color: var(--accent);
  background: var(--surface);
  padding: var(--space-md) var(--space-lg);
}

.silkky-checkout-phase-notice {
  margin-bottom: var(--space-lg);
  line-height: 1.5;
}

.woocommerce table.shop_table {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border-color: var(--border-subtle);
  padding: var(--space-md);
}

.woocommerce-cart .cart-collaterals .cart_totals {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  background: var(--surface);
  box-shadow: var(--shadow-subtle);
}

.woocommerce nav.woocommerce-pagination ul {
  border: none;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: none;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--accent-hover);
  color: #fff;
  border-color: var(--accent-hover);
}

.woocommerce .star-rating {
  color: var(--accent);
}

.woocommerce-checkout #payment {
  border-radius: var(--radius-md) !important;
  background: var(--surface) !important;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  min-height: 48px;
  font-size: 0.95rem;
  transition: border-color var(--duration-fast) var(--ease-out);
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row select:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 2px rgba(122, 90, 69, 0.15);
}

#root { min-height: auto; }

