/* =========================================================
   Canivoa — Design System
   Brand colors, typography, buttons, components, animations
   ========================================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;800;900&family=Lato:wght@300;400;700&display=swap');

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  --cream:       #FFF5EA;
  --beige:       #EAD9C2;
  --orange:      #D9794A;
  --orange-dark: #B85E32;
  --orange-light:#F0A07A;
  --green:       #2F5B3E;
  --green-light: #3D7A52;
  --espresso:    #301E17;
  --espresso-mid:#4A2E24;
  --white:       #FFFFFF;
  --text-muted:  #7A6055;

  --shadow-sm:   0 2px 8px -2px rgba(217,121,74,0.15), 0 1px 3px rgba(48,30,23,0.08);
  --shadow-md:   0 8px 24px -6px rgba(217,121,74,0.22), 0 3px 8px rgba(48,30,23,0.10);
  --shadow-lg:   0 20px 48px -10px rgba(217,121,74,0.28), 0 8px 16px rgba(48,30,23,0.12);
  --shadow-xl:   0 32px 64px -12px rgba(217,121,74,0.35), 0 12px 24px rgba(48,30,23,0.15);

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;

  --spring:      cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);

  --header-h:    72px;
  --bar-h:       44px;
}

/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--espresso);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--espresso);
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { line-height: 1.7; color: var(--espresso-mid); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── SVG Noise grain bg ────────────────────────────────── */
.grain-bg {
  position: relative;
}
.grain-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}

/* ── Announcement Bar ──────────────────────────────────── */
.announcement-bar {
  background: var(--espresso);
  color: var(--cream);
  text-align: center;
  padding: 10px 16px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  position: sticky;
  top: 0;
  z-index: 100;
}
.announcement-bar a {
  color: var(--orange-light);
  text-decoration: underline;
}

/* ── Header ────────────────────────────────────────────── */
.site-header {
  background: rgba(255,245,234,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(234,217,194,0.6);
  position: sticky;
  top: var(--bar-h);
  z-index: 90;
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header-logo img {
  height: 44px;
  width: auto;
}
.header-nav {
  display: flex;
  gap: 32px;
  list-style: none;
}
.header-nav a {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--espresso);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.01em;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width 0.25s var(--ease-out);
}
.header-nav a:hover::after,
.header-nav a.active::after { width: 100%; }
.header-nav a:hover { color: var(--orange); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cart-icon-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--espresso);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-icon-btn:hover { color: var(--orange); }
.cart-icon-btn:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; border-radius: 4px; }
.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--orange);
  color: white;
  font-size: 0.65rem;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  transform: scale(0);
  transition: transform 0.3s var(--spring);
}
.cart-badge.visible { transform: scale(1); }

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--espresso);
  flex-direction: column;
  gap: 5px;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--cream);
  padding: 16px 24px 24px;
  border-bottom: 1px solid var(--beige);
  position: sticky;
  top: calc(var(--bar-h) + var(--header-h));
  z-index: 89;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--beige);
  color: var(--espresso);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--orange); }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  padding: 14px 28px;
  cursor: pointer;
  transition: transform 0.2s var(--spring), box-shadow 0.2s var(--ease-out), background 0.15s, color 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
.btn:active { transform: scale(0.97) !important; }

.btn-primary {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary-lg {
  font-size: 1.05rem;
  padding: 18px 36px;
  border-radius: var(--radius-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-secondary:hover {
  background: var(--orange);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--espresso);
  border-color: var(--beige);
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
  box-shadow: var(--shadow-sm);
}
.btn-dark:hover {
  background: var(--espresso-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-full { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-xs { padding: 7px 14px; font-size: 0.78rem; }

/* ── Containers ────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section spacing ───────────────────────────────────── */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 112px 0; }

/* ── Section title ─────────────────────────────────────── */
.section-eyebrow {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ── Cards ─────────────────────────────────────────────── */
.card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(234,217,194,0.5);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.3s var(--spring), box-shadow 0.3s var(--ease-out);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-body { padding: 28px; }

/* ── USP icon strip ────────────────────────────────────── */
.usp-strip {
  background: var(--espresso);
  padding: 20px 0;
}
.usp-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
}
.usp-item svg { color: var(--orange-light); flex-shrink: 0; }

/* ── Trust badges ──────────────────────────────────────── */
.trust-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  color: var(--green);
}

/* ── Star rating ───────────────────────────────────────── */
.stars {
  display: flex;
  gap: 2px;
  color: #F5A623;
}
.stars svg { width: 18px; height: 18px; fill: currentColor; }
.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
}
.rating-count { color: var(--text-muted); font-weight: 400; }

/* ── Price display ─────────────────────────────────────── */
.price-main {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--espresso);
  letter-spacing: -0.02em;
}
.price-original {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 400;
}
.price-save {
  background: #E8F5E9;
  color: var(--green);
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

/* ── Accordion ─────────────────────────────────────────── */
.accordion-item {
  border-bottom: 1px solid var(--beige);
}
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--espresso);
  gap: 16px;
}
.accordion-trigger:hover { color: var(--orange); }
.accordion-trigger:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; border-radius: 2px; }
.accordion-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-out), background 0.2s;
  color: var(--espresso);
}
.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(180deg);
  background: var(--orange);
  color: white;
}
.accordion-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
}
.accordion-body.open {
  max-height: 600px;
}
.accordion-content { padding: 0 0 20px; color: var(--text-muted); }

/* ── Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--espresso);
  color: rgba(255,245,234,0.8);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  margin-bottom: 48px;
}
.footer-brand-col .footer-logo img {
  height: 40px;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,245,234,0.6);
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,245,234,0.7);
  transition: background 0.2s, color 0.2s, transform 0.2s var(--spring);
}
.footer-social a:hover { background: var(--orange); color: white; transform: translateY(-2px); }
.footer-social a:focus-visible { outline: 2px solid var(--orange); }

.footer-col h4 {
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,245,234,0.65);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--orange-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,245,234,0.4);
}
.footer-payment-icons {
  display: flex;
  gap: 8px;
  align-items: center;
}
.payment-icon {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 0.7rem;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  color: rgba(255,245,234,0.8);
  letter-spacing: 0.05em;
}

/* ── Form fields ───────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--espresso);
  margin-bottom: 6px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--beige);
  border-radius: var(--radius-sm);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--espresso);
  background: white;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(217,121,74,0.12);
}
.form-input::placeholder { color: #B0A090; }
.form-textarea { resize: vertical; min-height: 120px; }

/* ── Quantity stepper ──────────────────────────────────── */
.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--beige);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.qty-btn {
  background: none;
  border: none;
  width: 40px;
  height: 44px;
  cursor: pointer;
  font-size: 1.2rem;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  color: var(--espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.qty-btn:hover { background: var(--beige); color: var(--orange); }
.qty-btn:focus-visible { outline: 2px solid var(--orange); }
.qty-input {
  width: 48px;
  text-align: center;
  border: none;
  border-left: 1.5px solid var(--beige);
  border-right: 1.5px solid var(--beige);
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--espresso);
  outline: none;
  height: 44px;
  background: white;
}

/* ── Size selector buttons ─────────────────────────────── */
.size-btn-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.size-btn {
  padding: 10px 18px;
  border: 2px solid var(--beige);
  border-radius: var(--radius-sm);
  background: white;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--espresso);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s var(--spring);
}
.size-btn:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-1px); }
.size-btn:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.size-btn.active {
  border-color: var(--orange);
  background: var(--orange);
  color: white;
  box-shadow: var(--shadow-sm);
}

/* ── Bundle option cards ───────────────────────────────── */
.bundle-card {
  border: 2px solid var(--beige);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s var(--spring);
  position: relative;
  background: white;
}
.bundle-card:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.bundle-card:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.bundle-card.active { border-color: var(--orange); box-shadow: var(--shadow-md); }
.bundle-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

/* ── Sticky add-to-cart bar ────────────────────────────── */
.sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--espresso);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 80;
  transform: translateY(100%);
  transition: transform 0.4s var(--spring);
  box-shadow: 0 -4px 24px rgba(48,30,23,0.2);
}
.sticky-atc.visible { transform: translateY(0); }
.sticky-atc-info {
  color: var(--cream);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.9rem;
}
.sticky-atc-price {
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--orange-light);
}

/* ── Image gallery ─────────────────────────────────────── */
.gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  aspect-ratio: 1;
  position: relative;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s var(--ease-out);
}
.gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.gallery-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s var(--spring);
  flex-shrink: 0;
}
.gallery-thumb:hover { transform: scale(1.06); }
.gallery-thumb.active { border-color: var(--orange); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ── Product badge ─────────────────────────────────────── */
.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(47,91,62,0.1);
  color: var(--green);
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Urgency / stock ───────────────────────────────────── */
.urgency-bar {
  background: rgba(217,121,74,0.08);
  border: 1px solid rgba(217,121,74,0.25);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--orange-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Comparison table ──────────────────────────────────── */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.comparison-table th, .comparison-table td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--beige);
  font-size: 0.9rem;
}
.comparison-table th:first-child, .comparison-table td:first-child {
  text-align: left;
  font-weight: 700;
}
.comparison-table thead th {
  background: var(--espresso);
  color: white;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}
.comparison-table thead th.highlight { background: var(--orange); }
.comparison-table tbody tr:nth-child(even) td { background: rgba(234,217,194,0.3); }
.comparison-table .check { color: var(--green); font-size: 1.1rem; }
.comparison-table .cross { color: #C0A090; font-size: 1.1rem; }

/* ── Review card ───────────────────────────────────────── */
.review-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid rgba(234,217,194,0.5);
  box-shadow: var(--shadow-sm);
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--beige);
}
.review-date { font-size: 0.78rem; color: var(--text-muted); }
.review-body { font-size: 0.92rem; color: var(--espresso-mid); line-height: 1.65; }
.verified-badge {
  font-size: 0.72rem;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── Guarantee block ───────────────────────────────────── */
.guarantee-block {
  background: var(--green);
  border-radius: var(--radius-xl);
  padding: 48px;
  color: white;
  display: flex;
  align-items: center;
  gap: 40px;
}
.guarantee-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.guarantee-icon svg { color: white; }
.guarantee-block h3 { color: white; letter-spacing: -0.02em; }
.guarantee-block p { color: rgba(255,255,255,0.85); }

/* ── Steps ─────────────────────────────────────────────── */
.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

/* ── Hero gradient overlays ────────────────────────────── */
.img-overlay {
  position: relative;
}
.img-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(48,30,23,0.55) 0%, transparent 60%);
  border-radius: inherit;
  pointer-events: none;
}

/* ── Scroll reveal animation ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Radial gradient backgrounds ──────────────────────────*/
.bg-radial-warm {
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(234,217,194,0.6) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 90%, rgba(217,121,74,0.08) 0%, transparent 60%),
    var(--cream);
}
.bg-beige { background: var(--beige); }
.bg-cream { background: var(--cream); }
.bg-espresso { background: var(--espresso); }

/* ── Order tracker ─────────────────────────────────────── */
.tracker-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  padding: 32px 0;
}
.tracker-step { flex: 1; text-align: center; position: relative; }
.tracker-step::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: var(--beige);
  z-index: 0;
}
.tracker-step:last-child::before { display: none; }
.tracker-step-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--beige);
  border: 3px solid var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  position: relative;
  z-index: 1;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  color: var(--text-muted);
  transition: background 0.3s, border-color 0.3s;
}
.tracker-step.done .tracker-step-icon { background: var(--green); border-color: var(--green); color: white; }
.tracker-step.active .tracker-step-icon { background: var(--orange); border-color: var(--orange); color: white; }
.tracker-step-label {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 90px;
  margin: 0 auto;
  line-height: 1.3;
}
.tracker-step.done .tracker-step-label, .tracker-step.active .tracker-step-label { color: var(--espresso); }

/* ── Toast notification ────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  background: var(--espresso);
  color: var(--cream);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s var(--spring), opacity 0.3s;
  pointer-events: auto;
  border-left: 4px solid var(--orange);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left-color: var(--green-light); }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .header-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .section { padding: 56px 0; }
  .section-lg { padding: 72px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .guarantee-block { flex-direction: column; text-align: center; padding: 32px 24px; }
  .usp-strip-inner { gap: 10px 24px; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.6rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .trust-badges { gap: 6px 16px; }
  .guarantee-icon { width: 64px; height: 64px; }
}
