/* =============================================
   FLORARIA DALY — Design System
   Color strategy: Committed (terracotta warm)
   Theme: Light, warm cream, inviting
   ============================================= */

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

/* ── Tokens ── */
:root {
  --bg:           oklch(97% 0.008 75);
  --surface:      oklch(99.5% 0.003 75);
  --surface-tint: oklch(94% 0.02 70);

  --primary:      oklch(62% 0.145 38);
  --primary-dk:   oklch(52% 0.13 38);
  --primary-lt:   oklch(94% 0.035 38);

  --sage:         oklch(56% 0.09 148);
  --sage-lt:      oklch(92% 0.04 148);

  --text:         oklch(20% 0.01 50);
  --text-muted:   oklch(48% 0.015 50);
  --text-faint:   oklch(70% 0.01 50);

  --border:       oklch(88% 0.012 75);
  --border-md:    oklch(82% 0.015 75);

  --header-bg:    oklch(99.5% 0.004 75);
  --footer-bg:    oklch(22% 0.014 50);
  --footer-text:  oklch(80% 0.008 50);

  --max: 1100px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
}

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

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 0 0 1rem; }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); margin: 0 0 0.75rem; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); margin: 0 0 0.5rem; }

p { margin: 0 0 1rem; }
a { color: var(--primary); }

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

/* ── Layout ── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Header ── */
.site-header {
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  flex-direction: column;
  display: flex;
  padding: 0;
}

.site-header .topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px var(--gutter);
  position: relative;
}

.site-header .topbar-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.site-header .logo {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
}

.site-header .logo-img {
  height: 46px;
  width: auto;
}

.site-header .icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.18s, color 0.18s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.site-header .icon-btn:hover {
  background: var(--primary-lt);
  color: var(--primary-dk);
}

.site-header .phone-text { font-weight: 600; }

.site-header .navbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  width: 100%;
  padding: 8px var(--gutter);
  border-top: 1px solid var(--border);
}

.site-header .navbar a {
  position: relative;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s, background 0.2s;
}

.site-header .navbar a:hover {
  color: var(--text);
  background: var(--surface-tint);
}

.site-header .navbar a.active {
  color: var(--primary);
  background: var(--primary-lt);
}

/* ── Search Overlay ── */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: clamp(48px, 10vh, 120px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.search-overlay.is-open {
  pointer-events: all;
  opacity: 1;
}

.search-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: oklch(15% 0.01 50 / 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.search-overlay__panel {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100vw - 32px));
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px oklch(15% 0.01 50 / 0.28), 0 2px 8px oklch(15% 0.01 50 / 0.08);
  overflow: hidden;
  transform: translateY(-12px);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-overlay.is-open .search-overlay__panel {
  transform: translateY(0);
}

.search-overlay__field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}

.search-overlay__icon {
  color: var(--text-faint);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.search-overlay__input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.1rem;
  font-family: inherit;
  color: var(--text);
  background: transparent;
  min-width: 0;
  line-height: 1.4;
}

.search-overlay__input::placeholder { color: var(--text-faint); }

.search-overlay__clear,
.search-overlay__close {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  color: var(--text-faint);
  display: flex;
  align-items: center;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}

.search-overlay__clear:hover,
.search-overlay__close:hover {
  background: var(--bg);
  color: var(--text);
}

.search-overlay__close {
  color: var(--text-muted);
  margin-left: 4px;
}

.search-overlay__body {
  max-height: 420px;
  overflow-y: auto;
}

.search-overlay__hint {
  padding: 20px;
  text-align: center;
  color: var(--text-faint);
  font-size: 0.85rem;
}

.search-overlay__hint kbd {
  display: inline-block;
  padding: 2px 7px;
  border: 1px solid var(--border-md);
  border-radius: 4px;
  font-size: 0.78rem;
  font-family: inherit;
  color: var(--text-muted);
  background: var(--bg);
}

/* Results grid */
.search-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1px;
  background: var(--border);
}

.search-result-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  transition: background 0.15s;
}

.search-result-card:hover { background: var(--bg); }

.search-result-img {
  aspect-ratio: 1;
  overflow: hidden;
}

.search-result-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s;
}

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

.search-result-img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: var(--bg);
}

.search-result-info {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.search-result-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.search-result-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
}

.search-no-results {
  padding: 32px 20px;
  text-align: center;
  color: var(--text-muted);
}

.search-no-results p { margin: 0 0 16px; font-size: 0.95rem; }

.search-see-all {
  display: block;
  padding: 14px 20px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  border-top: 1px solid var(--border);
  transition: background 0.15s;
}

.search-see-all:hover { background: var(--primary-lt); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.015em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.btn--primary {
  background: var(--primary);
  color: oklch(99% 0.003 75);
  border-color: var(--primary);
}

.btn--primary:hover {
  background: var(--primary-dk);
  border-color: var(--primary-dk);
  box-shadow: 0 6px 20px oklch(62% 0.145 38 / 0.3);
  transform: translateY(-2px);
}

.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--ghost:hover {
  background: var(--primary);
  color: oklch(99% 0.003 75);
  transform: translateY(-2px);
}

.btn--secondary {
  background: var(--surface-tint);
  color: var(--text);
  border-color: var(--border-md);
}

.btn--secondary:hover {
  background: var(--border);
  transform: translateY(-1px);
}

.btn--large { padding: 15px 36px; font-size: 1rem; }

/* ── Hero ── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: grid;
  place-items: center;
}

.hero--full {
  min-height: 100vh;
  border-radius: 0;
  margin: 0;
  width: 100%;
}

.hero--frame-video {
  display: block;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  position: relative;
}

.hero--frame-video .hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Gradient overlay — left-heavy, no side border */
.hero--frame-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    oklch(15% 0.01 50 / 0.72) 0%,
    oklch(15% 0.01 50 / 0.45) 45%,
    oklch(15% 0.01 50 / 0.1) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero--frame-video .hero__content {
  position: absolute;
  left: clamp(24px, 8vw, 120px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  text-align: left;
  color: oklch(98% 0.003 75);
  max-width: min(600px, calc(100vw - 48px));
}

.hero--frame-video .hero__content .kicker {
  display: inline-block;
  background: oklch(62% 0.145 38 / 0.85);
  color: oklch(99% 0.003 75);
  padding: 0.35rem 0.9rem;
  border-radius: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.hero--frame-video .hero__content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 5.5vw, 62px);
  color: oklch(99% 0.003 75);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  text-shadow: 0 4px 24px oklch(10% 0 0 / 0.4);
}

.hero--frame-video .hero__content p {
  font-size: clamp(15px, 2vw, 19px);
  color: oklch(98% 0.003 75 / 0.9);
  line-height: 1.6;
  margin: 0 0 28px;
  font-weight: 300;
  text-shadow: 0 2px 12px oklch(10% 0 0 / 0.3);
  max-width: 520px;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero--frame-video .btn--ghost {
  background: oklch(99% 0.003 75 / 0.12);
  color: oklch(99% 0.003 75);
  border-color: oklch(99% 0.003 75 / 0.6);
  backdrop-filter: blur(4px);
}

.hero--frame-video .btn--ghost:hover {
  background: oklch(99% 0.003 75 / 0.22);
  border-color: oklch(99% 0.003 75);
  color: oklch(99% 0.003 75);
}

@media (max-width: 768px) {
  .hero--frame-video .hero__content {
    top: auto;
    bottom: 0;
    transform: none;
    left: 0;
    right: 0;
    max-width: 100%;
    padding: 32px 24px 40px;
    background: linear-gradient(to top, oklch(15% 0.01 50 / 0.8), transparent);
  }

  .hero--frame-video::after { display: none; }
}

/* ── Stats ── */
.stats-section {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px;
  text-align: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.stat-item {
  position: relative;
  padding-top: 16px;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  opacity: 0.7;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 56px;
  background: var(--border);
}

.stat-item:last-child::after { display: none; }

.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
  transition: color 0.35s;
}

.stat-number.counting { color: var(--primary); }

.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.01em;
}

@media (max-width: 640px) {
  .stats-section { padding: 56px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat-item::after { display: none; }
}

/* ── Intro Statement ── */
.intro-statement {
  padding: 80px 0 72px;
  border-bottom: 1px solid var(--border);
}

.intro-statement .container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.intro-statement__text {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin: 0;
  max-width: 560px;
}

.intro-statement__text em {
  font-style: italic;
  color: var(--primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
}

.intro-statement__link {
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
  padding-bottom: 2px;
  border-bottom: 2px solid var(--primary);
  transition: color 0.2s, border-color 0.2s;
  align-self: flex-end;
}

.intro-statement__link:hover { color: var(--primary); }

@media (max-width: 640px) {
  .intro-statement { padding: 48px 0 40px; }
  .intro-statement .container { flex-direction: column; align-items: flex-start; gap: 20px; }
  .intro-statement__link { align-self: flex-start; }
}

/* ── Grid & Products ── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.product {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: left;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}

.product:hover {
  box-shadow: 0 14px 44px oklch(62% 0.145 38 / 0.14);
  transform: translateY(-5px);
}

.product a.product-link {
  color: inherit;
  text-decoration: none;
  display: block;
  overflow: hidden;
}

.product img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product:hover img { transform: scale(1.05); }

.product a.product-link h3 {
  padding: 14px 16px 4px;
  margin: 0;
  font-size: 0.95rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}

.product > p {
  padding: 2px 16px 14px;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.product .product-body { padding: 0 16px 4px; }
.product .btn--add-cart { width: calc(100% - 32px); margin: 0 16px 16px; margin-top: auto; }

/* ── Carousel ── */
.products-carousel { overflow: hidden; position: relative; }

.carousel-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.carousel-card {
  flex-shrink: 0;
  width: 240px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.carousel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px oklch(62% 0.145 38 / 0.14);
}

.carousel-link { text-decoration: none; color: inherit; display: block; overflow: hidden; }

.carousel-card img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; display: block; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }

.carousel-card:hover img { transform: scale(1.06); }

.carousel-info { padding: 14px 14px 16px; }
.carousel-info h4 { margin: 0 0 6px; font-size: 0.9rem; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; line-height: 1.35; }
.carousel-info .price { margin: 0; font-size: 1rem; font-weight: 700; color: var(--primary); }

/* ── Category cards ── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.category-card {
  position: relative;
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  text-decoration: none;
  color: oklch(99% 0.003 75);
  background: var(--border);
  box-shadow: 0 2px 8px oklch(20% 0.01 50 / 0.06);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card:hover::before { transform: scale(1.06); }

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    oklch(12% 0.01 50 / 0.5) 70%,
    oklch(12% 0.01 50 / 0.72) 100%
  );
}

.category-card span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 4px oklch(10% 0 0 / 0.4);
}

.category-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px oklch(20% 0.01 50 / 0.18); }

/* ── CTA Band ── */
.cta-band {
  background: var(--primary);
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 120% at 80% 50%, oklch(72% 0.12 55 / 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band .cta-inner { padding: 52px 40px; text-align: center; position: relative; }

.cta-band h3 {
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  color: oklch(99% 0.003 75);
  margin: 0 0 10px;
}

.cta-band p { margin: 0 0 24px; color: oklch(94% 0.015 40); font-size: 1rem; }

.cta-band .hero__ctas { justify-content: center; }

.cta-band .btn--primary {
  background: oklch(99% 0.003 75);
  color: var(--primary);
  border-color: oklch(99% 0.003 75);
}

.cta-band .btn--primary:hover {
  background: oklch(97% 0.005 60);
  border-color: oklch(97% 0.005 60);
  box-shadow: 0 6px 24px oklch(30% 0.05 38 / 0.35);
}

.cta-band .btn--ghost {
  background: transparent;
  color: oklch(99% 0.003 75);
  border-color: oklch(99% 0.003 75 / 0.65);
}

.cta-band .btn--ghost:hover {
  background: oklch(99% 0.003 75 / 0.15);
  border-color: oklch(99% 0.003 75);
}

/* ── Features ── */
.features-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 40px 0;
}

.features-modern .feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}

.features-modern .feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px oklch(20% 0.01 50 / 0.09);
  border-color: var(--primary-lt);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary-lt);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg { width: 22px; height: 22px; }

.feature-text h3 { margin: 0 0 4px; font-size: 0.95rem; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }
.feature-text p { margin: 0; font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

/* ── Testimonials ── */
.testimonials-modern {
  background: var(--surface);
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testi-wrapper { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

.testi-wrapper > h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.testi-slider { overflow: hidden; position: relative; margin-bottom: 24px; }

.testi-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testi-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 280px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px 24px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
}

.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 22px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.18;
  pointer-events: none;
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px oklch(20% 0.01 50 / 0.1);
  border-color: oklch(88% 0.03 38);
}

.testi-stars { color: oklch(70% 0.16 65); font-size: 0.95rem; margin-bottom: 14px; letter-spacing: 0.06em; }
.testi-text { margin: 0 0 20px; color: var(--text-muted); line-height: 1.7; font-size: 0.93rem; font-style: italic; }

.testi-author { display: flex; gap: 12px; align-items: center; }

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: oklch(99% 0.003 75);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testi-name { font-weight: 600; color: var(--text); font-size: 0.9rem; margin-bottom: 2px; }
.testi-date { font-size: 0.8rem; color: var(--text-faint); }

.testi-nav { display: flex; gap: 12px; justify-content: center; }

.testi-btn {
  border: 1.5px solid var(--border-md);
  background: var(--surface);
  color: var(--text-muted);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.testi-btn:hover {
  background: var(--primary);
  color: oklch(99% 0.003 75);
  border-color: var(--primary);
}

@media (max-width: 900px) { .testi-card { flex: 0 0 calc(50% - 10px); } }
@media (max-width: 600px) { .testi-card { flex: 0 0 100%; } }

/* ── Shop ── */
.shop-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 20px 0 12px;
}

.shop-categories .chip {
  border: 1.5px solid var(--border-md);
  background: var(--surface);
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  cursor: pointer;
}

.shop-categories .chip.active,
.shop-categories .chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-lt);
}

/* ── Product detail ── */
.product-detail { margin-top: 16px; }
.product-detail__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: start; }
.product-detail__media { display: flex; flex-direction: column; }
.product-detail__media img { width: 100%; border-radius: var(--radius-md); }

.product-detail__thumbs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }

.product-detail__thumbs img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

.product-detail__thumbs img:hover,
.product-detail__thumbs img.is-active { border-color: var(--primary); }

.product-detail__info h1 { margin: 0 0 10px; }
.product-detail__desc { color: var(--text-muted); line-height: 1.65; margin-top: 10px; }
.product-detail__price { margin: 14px 0; font-weight: 700; font-size: 1.3rem; color: var(--primary); }

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  background: var(--sage-lt);
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 10px;
}

@media (max-width: 900px) { .product-detail__grid { grid-template-columns: 1fr; } }

/* ── Cart ── */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}

.cart-table thead { background: var(--bg); }

.cart-table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.cart-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.cart-table tbody tr:last-child td { border-bottom: none; }

.qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--border-md);
  border-radius: var(--radius-sm);
  padding: 4px 8px;
  transition: border-color 0.2s;
}

.qty-controls:hover { border-color: var(--primary); }

.qty-btn {
  border: none;
  background: transparent;
  font-size: 1rem;
  padding: 4px 8px;
  cursor: pointer;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
  border-radius: 4px;
}

.qty-btn:hover { color: var(--primary); background: var(--primary-lt); }

.qty-value { min-width: 24px; text-align: center; font-weight: 600; }

.btn-remove {
  border: none;
  background: transparent;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
  color: var(--text-faint);
}

.btn-remove:hover { background: oklch(65% 0.15 25 / 0.1); color: oklch(52% 0.18 25); }

/* Cart summary */
.cart-summary-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  max-width: 380px;
  margin-left: auto;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.summary-row:last-of-type { border-bottom: none; }

.summary-total {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  padding-top: 14px;
  margin-top: 8px;
  border-top: 1px solid var(--border);
}

.cart-summary-box .btn--large { width: 100%; margin-top: 20px; }

/* ── Checkout ── */
.checkout-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
}

.checkout-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.checkout-header h1 { margin: 0 0 8px; font-size: 1.7rem; }
.checkout-header p { margin: 0; color: var(--text-muted); font-size: 0.92rem; }

.checkout-summary { margin: 20px 0; }
.checkout-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }

.checkout-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
}

.checkout-item__info { display: flex; gap: 12px; align-items: center; flex: 1; }

.checkout-item__img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.checkout-item__name { font-weight: 600; font-size: 0.95rem; color: var(--text); margin-bottom: 3px; }
.checkout-item__qty { font-size: 0.83rem; color: var(--text-muted); }
.checkout-item__price { font-weight: 700; font-size: 1rem; color: var(--primary); }

.checkout-total {
  padding: 20px;
  border-top: 1px solid var(--border);
  margin-top: 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
}

.checkout-total__row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.checkout-total__row--grand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.checkout-form-section {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
}

.checkout-section-title h2 { margin: 0 0 4px; font-size: 1.15rem; }
.checkout-section-title p { margin: 0 0 18px; color: var(--text-muted); font-size: 0.9rem; }

.checkout-method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.checkout-method-option {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border: 1.5px solid var(--border-md);
  border-radius: var(--radius-sm);
  background: var(--surface);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.checkout-method-option input { margin-top: 3px; accent-color: var(--primary); }
.checkout-method-option span { display: flex; flex-direction: column; gap: 4px; }
.checkout-method-option strong { color: var(--text); font-size: 0.95rem; }
.checkout-method-option small { color: var(--text-muted); font-size: 0.83rem; }

.checkout-method-option.is-selected {
  border-color: var(--primary);
  background: var(--primary-lt);
}

.checkout-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.checkout-field { display: flex; flex-direction: column; gap: 6px; }
.checkout-field span { font-weight: 600; color: var(--text); font-size: 0.9rem; }

.checkout-field input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border-md);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.checkout-field input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-lt);
}

.checkout-field--full { grid-column: 1 / -1; }
.delivery-fields { margin-top: 6px; }
.checkout-help-text { margin: 12px 0 0; font-size: 0.88rem; color: var(--text-muted); }

@media (max-width: 720px) {
  .checkout-form-grid { grid-template-columns: 1fr; }
  .checkout-card { padding: 20px; }
}

/* Checkout badges */
.checkout-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 6px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
}

/* Legal consent in checkout */
.legal-consent {
  margin-top: 20px;
  padding: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.legal-consent label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  line-height: 1.5;
}

.legal-consent input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
}

.legal-consent a { color: var(--primary); }

/* ── Contact ── */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 32px; margin-top: 28px; }

.contact-info {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}

.contact-info h3 { margin-top: 0; margin-bottom: 20px; font-size: 1.2rem; }

.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
  padding: 14px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.info-item:hover { border-color: var(--primary-lt); }

.info-item .icon { font-size: 1.4rem; flex-shrink: 0; line-height: 1.2; }
.info-item strong { display: block; color: var(--text); margin-bottom: 3px; font-size: 0.9rem; }
.info-item p, .info-item a { margin: 0; color: var(--text-muted); font-size: 0.88rem; text-decoration: none; }
.info-item a:hover { color: var(--primary); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}

.contact-form h3 { margin-top: 0; margin-bottom: 20px; font-size: 1.2rem; }
.contact-form .form-group { margin-bottom: 16px; }

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--text);
  font-size: 0.88rem;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border-md);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-lt);
}

.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .btn--large { width: 100%; margin-top: 8px; }

.form-status {
  margin-top: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}

@media (max-width: 768px) { .contact-wrapper { grid-template-columns: 1fr; } }

/* ── Status pages ── */
.status-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
}

.status-icon { margin: 0 auto 24px; }
.status-title { font-size: 1.9rem; margin: 0 0 12px; color: var(--text); }
.status-description { font-size: 1rem; color: var(--text-muted); margin: 0 0 32px; line-height: 1.65; }

.order-summary-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 28px 0;
  text-align: left;
}

.order-summary-box h3 { margin: 0 0 16px; font-size: 1.1rem; }
.order-info-content { display: flex; flex-direction: column; gap: 10px; }

.order-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

.order-detail-row:last-child { border-bottom: none; }
.order-detail-row .label { color: var(--text-muted); }
.order-detail-row .value { color: var(--text); font-weight: 600; }
.order-detail-row .value--price { color: var(--primary); font-size: 1.05rem; }
.order-detail-row .value--success { color: var(--sage); }

.status-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 28px 0;
  flex-wrap: wrap;
}

.info-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin: 20px 0;
  text-align: left;
}

.info-box--success { background: var(--sage-lt); border-color: oklch(56% 0.09 148 / 0.3); }
.info-box--warning { background: oklch(96% 0.04 80); border-color: oklch(72% 0.12 80 / 0.4); }
.info-box h4 { margin: 0 0 10px; font-size: 1rem; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }
.info-box p { margin: 0; color: var(--text-muted); line-height: 1.6; font-size: 0.9rem; }
.info-box ul { margin: 8px 0 0; padding-left: 20px; color: var(--text-muted); line-height: 1.8; font-size: 0.9rem; }

.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.reassurance-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.reassurance-icon { font-size: 1.8rem; line-height: 1; flex-shrink: 0; }
.reassurance-text { display: flex; flex-direction: column; gap: 3px; }
.reassurance-text strong { font-size: 0.9rem; color: var(--text); }
.reassurance-text span { font-size: 0.82rem; color: var(--text-muted); }

.help-text { margin-top: 20px; font-size: 0.88rem; color: var(--text-muted); text-align: center; }
.help-link { color: var(--primary); text-decoration: none; font-weight: 600; }
.help-link:hover { text-decoration: underline; }

/* ── Loading ── */
.loading-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  margin: 0 auto 12px;
  animation: spin 0.8s linear infinite;
}

/* ── Story ── */
.story { position: relative; width: 100%; overflow-x: clip; }

.story-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 46vh;
  min-height: 300px;
  background: var(--border);
}

.story-img {
  position: absolute;
  inset: -8% 0 0 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
}

.float-quotes { position: absolute; inset: 0; pointer-events: none; }

.float-quote {
  position: absolute;
  max-width: 320px;
  background: oklch(99% 0.003 75 / 0.92);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: 0 4px 18px oklch(20% 0.01 50 / 0.1);
  animation: floatY 6s ease-in-out infinite;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.float-quote cite {
  display: block;
  margin-top: 6px;
  color: var(--text-faint);
  font-style: normal;
  font-weight: 600;
  text-align: right;
  font-size: 0.82rem;
}

.float-quote.q1 { left: 6%; top: 14%; animation-delay: 0.2s; }
.float-quote.q2 { right: 8%; top: 38%; animation-delay: 0.8s; }
.float-quote.q3 { left: 18%; bottom: 10%; animation-delay: 1.1s; }

/* ── Coffee ── */
.page-coffee { margin-top: 28px; }
.page-coffee .page-title { margin: 0 0 12px; font-size: 1.8rem; color: var(--text); }
.page-coffee .notice {
  background: oklch(96% 0.04 80);
  color: oklch(42% 0.1 75);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  border: 1px solid oklch(78% 0.1 80 / 0.4);
  margin: 0 0 24px;
}

.coffee-filters { margin: 0 0 20px; }
.coffee-filters .filters-inner { display: flex; flex-wrap: wrap; gap: 8px; }

.filter-btn {
  background: var(--surface);
  border: 1.5px solid var(--border-md);
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.filter-btn:hover { background: var(--bg); border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); color: oklch(99% 0.003 75); border-color: var(--primary); }

.coffee-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }

.coffee-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.coffee-item:hover { transform: translateY(-4px); box-shadow: 0 8px 28px oklch(20% 0.01 50 / 0.1); }
.coffee-item .ci-header { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.coffee-item .ci-name { font-weight: 600; font-size: 0.95rem; color: var(--text); }
.coffee-item .ci-price { font-weight: 700; color: var(--primary); font-size: 0.92rem; }
.coffee-item .ci-desc { font-size: 0.83rem; line-height: 1.55; color: var(--text-muted); }

.coffee-item .allergens {
  font-size: 0.7rem;
  color: oklch(46% 0.13 25);
  background: oklch(96% 0.05 25);
  padding: 4px 8px;
  border-radius: 5px;
  border: 1px solid oklch(82% 0.08 25 / 0.5);
  display: inline-block;
}

.coffee-item .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 2px; }

.coffee-item .tag {
  background: var(--primary-lt);
  color: var(--primary-dk);
  font-size: 0.65rem;
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 600;
}

.coffee-list .empty, .coffee-list .error {
  grid-column: 1 / -1;
  padding: 20px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-muted);
}

/* ── Gallery ── */
.gallery-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s;
}

.gallery-img:hover { transform: scale(1.05) rotate(-1.5deg); box-shadow: 0 8px 28px oklch(20% 0.01 50 / 0.15); }

.gallery-card { transition: transform 0.25s, box-shadow 0.25s; }
.gallery-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px oklch(20% 0.01 50 / 0.12); }

/* ── Related products ── */
.related-products h3 { font-size: 1.15rem; color: var(--text); }
.btn--secondary { background: var(--surface-tint); color: var(--text); border-color: var(--border-md); }
.btn--secondary:hover { background: var(--border); }

/* ── Legal pages ── */
.legal-page { max-width: 780px; margin: 0 auto; padding: 48px 20px 80px; }
.legal-page h1 { margin-bottom: 8px; }
.legal-page .legal-date { font-size: 0.85rem; color: var(--text-faint); margin-bottom: 36px; }
.legal-page h2 { margin-top: 40px; font-size: 1.25rem; }
.legal-page p, .legal-page li { color: var(--text-muted); line-height: 1.7; }
.legal-page ul, .legal-page ol { padding-left: 20px; }
.legal-page ul li, .legal-page ol li { margin-bottom: 6px; }
.legal-page a { color: var(--primary); }
.legal-page table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.9rem; }
.legal-page table th, .legal-page table td { padding: 10px 14px; border: 1px solid var(--border); text-align: left; }
.legal-page table th { background: var(--bg); font-weight: 600; color: var(--text); }
.legal-page table td { color: var(--text-muted); }

/* ── Footer ── */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 64px 0 0;
  margin-top: 80px;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: oklch(97% 0.003 75);
  margin: 0 0 12px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--footer-text);
  margin: 0 0 20px;
  max-width: 280px;
}

.footer-brand .footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--footer-text);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-brand .footer-contact a svg { flex-shrink: 0; opacity: 0.7; }

.footer-brand .footer-contact a:hover { color: oklch(97% 0.003 75); }

.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: oklch(97% 0.003 75);
  margin: 0 0 16px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: var(--footer-text);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: oklch(97% 0.003 75); }

.footer-bottom {
  border-top: 1px solid oklch(35% 0.01 50);
  margin-top: 48px;
  padding: 20px 24px;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: oklch(58% 0.01 50);
  margin: 0;
}

.footer-bottom a {
  color: oklch(58% 0.01 50);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}

.footer-bottom a:hover { color: oklch(80% 0.008 50); }

.footer-bottom-wrapper {
  border-top: 1px solid oklch(35% 0.01 50);
  padding: 20px var(--gutter);
}

.footer-bottom-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.anpc-links { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

.anpc-links a {
  color: oklch(58% 0.01 50);
  text-decoration: none;
  font-size: 0.78rem;
  border: 1px solid oklch(38% 0.01 50);
  padding: 4px 10px;
  border-radius: 4px;
  transition: color 0.2s, border-color 0.2s;
}

.anpc-links a:hover { color: oklch(80% 0.008 50); border-color: oklch(55% 0.01 50); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--footer-bg);
  color: oklch(85% 0.008 50);
  padding: 20px 24px;
  border-top: 1px solid oklch(35% 0.01 50);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.is-visible { transform: translateY(0); }

.cookie-banner-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-banner p {
  flex: 1;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  min-width: 240px;
  color: oklch(78% 0.008 50);
}

.cookie-banner a { color: oklch(78% 0.145 38); }

.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }

.cookie-btn-accept {
  background: var(--primary);
  color: oklch(99% 0.003 75);
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
}

.cookie-btn-accept:hover { background: var(--primary-dk); }

.cookie-btn-decline {
  background: transparent;
  color: oklch(65% 0.008 50);
  border: 1px solid oklch(40% 0.01 50);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.cookie-btn-decline:hover { border-color: oklch(55% 0.01 50); color: oklch(80% 0.008 50); }

@media (max-width: 600px) {
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes spin { to { transform: rotate(360deg); } }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.animate-in { animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both; }
.animate-in:nth-child(1) { animation-delay: 0.04s; }
.animate-in:nth-child(2) { animation-delay: 0.1s; }
.animate-in:nth-child(3) { animation-delay: 0.16s; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .animate-in, .cookie-banner, .testi-track { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ── Mobile nav ── */
@media (max-width: 768px) {
  .site-header .topbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 10px 16px;
  }

  .site-header .topbar-center {
    position: static;
    transform: none;
    grid-column: 2;
    justify-self: center;
  }

  .site-header .topbar-left { grid-column: 1; justify-self: start; }
  .site-header .topbar-right { grid-column: 3; justify-self: end; display: flex; gap: 4px; }

  .site-header .phone-text { display: none; }

  .site-header .navbar { gap: 2px; padding: 6px 8px; }
  .site-header .navbar a { font-size: 0.72rem; padding: 6px 10px; }
}

@media (max-width: 480px) {
  .site-header .navbar a { font-size: 0.68rem; padding: 5px 7px; }
}

/* ── Card ── */
.card {
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: box-shadow 0.25s;
}

.card:hover { box-shadow: 0 6px 24px oklch(20% 0.01 50 / 0.08); }

#cart-items .cart-item {
  display: flex;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

/* Breadcrumb link color */
a[href="index.html"], a[href="cart.html"] { color: var(--primary); }

/* ── Trust Bar ── */
.trust-bar {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.trust-bar__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
}

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

.trust-item strong {
  color: var(--text);
  font-weight: 600;
  display: block;
  font-size: 0.88rem;
}

.trust-item span { font-size: 0.8rem; color: var(--text-faint); display: block; }

@media (max-width: 640px) {
  .trust-bar__inner { gap: 24px; justify-content: flex-start; }
}

/* ── Shop page header ── */
.shop-page-header {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 8px;
}

.shop-page-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.shop-page-header h1 {
  margin: 0 0 6px;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.shop-page-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
}

.shop-page-header__meta {
  font-size: 0.85rem;
  color: var(--text-faint);
  font-weight: 500;
}

/* ── Section header ── */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.section-header h2 { margin: 0; }

.section-header__link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
  padding-bottom: 2px;
  border-bottom: 2px solid var(--primary);
  transition: color 0.2s;
  white-space: nowrap;
}

.section-header__link:hover { color: var(--primary); }

/* ── Product count badge ── */
.product-count-note {
  font-size: 0.85rem;
  color: var(--text-faint);
  margin: 0 0 20px;
  font-weight: 500;
}
