/* ============================================================
   HYDROPONICA — Static Preview CSS
   Target: OpenCart / WordPress classic frontend
   Font stack: Montserrat (headings/nav) + Inter (body)
   ASSUMPTION: Colors reverse-engineered from Figma screenshots.
               Exact hex values must be confirmed with designer.
   ============================================================ */

/* ── 1. Design Tokens ───────────────────────────────────────── */
:root {
  /* Colors */
  --c-header:        #162A18;   /* ASSUMPTION: very dark forest green header */
  --c-primary:       #2D5A2D;   /* primary dark green — buttons, CTA bg */
  --c-primary-h:     #224522;   /* primary hover */
  --c-accent:        #4A9440;   /* bright green — badge, in-stock dot */
  --c-bg:            #F4F0E8;   /* warm cream — page background */
  --c-bg-card:       #FFFFFF;   /* white — product cards, modals */
  --c-bg-dark:       #1A2E1A;   /* dark section bg alternative */
  --c-text:          #1A1A1A;
  --c-text-muted:    #666666;
  --c-text-light:    #999999;
  --c-border:        #E2DDD4;
  --c-border-light:  #EEEBE5;
  --c-badge:         #4A9440;
  --c-price-old:     #999999;
  --c-error:         #C0392B;
  --c-success:       #27AE60;
  --c-white:         #FFFFFF;

  /* Typography */
  --font-head:  'Montserrat', system-ui, sans-serif;
  --font-body:  'Inter', system-ui, sans-serif;

  /* Spacing scale */
  --sp-xs:   4px;
  --sp-sm:   8px;
  --sp-md:  16px;
  --sp-lg:  24px;
  --sp-xl:  40px;
  --sp-2xl: 64px;
  --sp-3xl: 96px;

  /* Layout */
  --container: 1360px;
  --container-pad: 40px;
  --header-h: 56px;

  /* Radius */
  --r-sm:  4px;
  --r-md:  8px;
  --r-lg: 12px;

  /* Transitions */
  --tr: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── 3. Typography ──────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--c-text);
}
h1 { font-size: clamp(28px, 3vw, 40px); }
h2 { font-size: clamp(22px, 2.2vw, 30px); }
h3 { font-size: clamp(16px, 1.5vw, 20px); }
h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; }
p  { margin-bottom: 0.75em; }
p:last-child { margin-bottom: 0; }

/* ── 4. Container ───────────────────────────────────────────── */
.container {
  max-width: calc(var(--container) + var(--container-pad) * 2);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  width: 100%;
}

/* ── 5. Utility ─────────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.text-muted  { color: var(--c-text-muted); }
.mt-0 { margin-top: 0; }

/* ── Dev markers (visible in preview, remove for production) ── */
[data-todo]::after {
  content: ' [TODO: ' attr(data-todo) ']';
  display: inline-block;
  background: #FFF3CD;
  color: #856404;
  font-size: 10px;
  padding: 1px 5px;
  border-radius: 3px;
  margin-left: 6px;
  font-weight: 600;
}
[data-review]::before {
  content: '⚠ REVIEW: ' attr(data-review);
  display: block;
  background: #FEE2E2;
  color: #991B1B;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 3px;
  margin-bottom: 6px;
  font-weight: 600;
}

/* ── 6. Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-sm);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background var(--tr), color var(--tr), border-color var(--tr);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-primary);
  color: var(--c-white);
}
.btn-primary:hover { background: var(--c-primary-h); }

.btn-outline {
  background: transparent;
  border-color: var(--c-primary);
  color: var(--c-primary);
}
.btn-outline:hover { background: var(--c-primary); color: var(--c-white); }

.btn-outline-white {
  background: transparent;
  border-color: var(--c-white);
  color: var(--c-white);
}
.btn-outline-white:hover { background: var(--c-white); color: var(--c-primary); }

.btn-ghost {
  background: transparent;
  color: var(--c-text);
  padding: 8px 12px;
}
.btn-ghost:hover { background: var(--c-border-light); }

.btn-sm { padding: 8px 16px; font-size: 12px; }
.btn-lg { padding: 16px 32px; font-size: 15px; }

/* ── 7. Form Elements ───────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--sp-md);
}
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
}
.form-label .required { color: var(--c-error); margin-left: 2px; }

.form-control {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-white);
  transition: border-color var(--tr);
  -webkit-appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--c-primary);
}
.form-control.is-error { border-color: var(--c-error); }

.form-error {
  font-size: 12px;
  color: var(--c-error);
  display: flex;
  align-items: center;
  gap: 4px;
}

textarea.form-control {
  height: auto;
  min-height: 120px;
  padding: 12px 14px;
  resize: vertical;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.form-check input[type="checkbox"],
.form-check input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--c-primary);
  cursor: pointer;
  flex-shrink: 0;
}
.form-check-label { font-size: 14px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}

/* ── 8. Badges ──────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: var(--r-sm);
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-sale { background: var(--c-badge); color: var(--c-white); }
.badge-new  { background: var(--c-primary); color: var(--c-white); }
.badge-out  { background: #E5E5E5; color: var(--c-text-muted); }

/* ── 9. Header ──────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-header);
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  gap: var(--sp-md);
}

/* Left: catalog + search */
.header-left {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
}
.header-nav-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--c-white);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: var(--r-sm);
  transition: background var(--tr);
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.9;
}
.header-nav-btn:hover { background: rgba(255,255,255,0.1); opacity: 1; }
.header-nav-btn svg { flex-shrink: 0; }

/* Center: logo */
.header-logo a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--c-white);
  text-decoration: none;
}
.header-logo-text {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--c-white);
}

/* Right: nav links + icons */
.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}
.header-link {
  color: var(--c-white);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--r-sm);
  opacity: 0.85;
  transition: opacity var(--tr), background var(--tr);
  white-space: nowrap;
}
.header-link:hover { opacity: 1; background: rgba(255,255,255,0.1); }

.header-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--c-white);
  opacity: 0.85;
  transition: opacity var(--tr), background var(--tr);
  flex-shrink: 0;
}
.header-icon:hover { opacity: 1; background: rgba(255,255,255,0.12); }
.header-icon .badge-count {
  position: absolute;
  top: 2px; right: 2px;
  width: 16px; height: 16px;
  background: var(--c-accent);
  color: white;
  font-size: 9px;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ── 10. Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  padding: 14px 0;
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb-item {
  font-size: 13px;
  color: var(--c-text-muted);
}
.breadcrumb-item a { transition: color var(--tr); }
.breadcrumb-item a:hover { color: var(--c-primary); }
.breadcrumb-sep {
  color: var(--c-text-light);
  font-size: 12px;
}
.breadcrumb-item.active { color: var(--c-text); }

/* ── 11. Section Header ─────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 20px;
  border-top: 1.5px solid var(--c-border);
}
.section-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
}

/* ── 12. Product Card ───────────────────────────────────────── */
.product-card {
  background: var(--c-bg-card);
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--tr);
}
.product-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }

.product-card__img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--c-bg);
}
.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.35s ease;
}
.product-card:hover .product-card__img-wrap img { transform: scale(1.03); }

.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
}
.product-card__wish {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: background var(--tr);
  border: none;
}
.product-card__wish:hover { background: #FFF0F0; }
.product-card__wish.active svg { fill: #E74C3C; stroke: #E74C3C; }

.product-card__body {
  padding: 12px 14px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__name {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--c-text);
  margin-bottom: 8px;
  flex: 1;
}
.product-card__pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.product-card__price {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-text);
}
.product-card__old-price {
  font-size: 13px;
  color: var(--c-price-old);
  text-decoration: line-through;
}

/* ── 13. Product Grid ───────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: var(--sp-xl);
}

/* ── 14. Carousel ───────────────────────────────────────────── */
.carousel {
  position: relative;
}
.carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 20px;
  border-top: 1.5px solid var(--c-border);
}
.carousel-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
}
.carousel-arrows {
  display: flex;
  gap: 8px;
}
.carousel-arrow {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  background: var(--c-bg-card);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--tr), border-color var(--tr);
  color: var(--c-text);
}
.carousel-arrow:hover {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: var(--c-white);
}
.carousel-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ── 15. Filter Bar ─────────────────────────────────────────── */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0 20px;
}
.filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--c-primary);
  color: var(--c-white);
  border: none;
  border-radius: var(--r-sm);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--tr);
}
.filter-btn:hover { background: var(--c-primary-h); }

.sort-select {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-text-muted);
}
.sort-select select {
  border: none;
  background: transparent;
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--c-text);
  font-weight: 500;
  cursor: pointer;
  padding: 4px 20px 4px 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  -webkit-appearance: none;
}
.sort-select select:focus { outline: none; }

/* ── 16. Filter Panel — REVIEW REQUIRED ─────────────────────── */
/* Behavior (sidebar, modal, drawer) not confirmed in Figma.
   Implemented as a slide-in sidebar. REVIEW REQUIRED. */
.filter-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tr);
}
.filter-overlay.open { opacity: 1; pointer-events: auto; }

.filter-panel {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 340px;
  background: var(--c-bg-card);
  z-index: 201;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  padding: var(--sp-xl) var(--sp-xl) var(--sp-xl) var(--sp-xl);
}
.filter-panel.open { transform: translateX(0); }

.filter-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-xl);
}
.filter-panel-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
}
.filter-close {
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  background: var(--c-border-light);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}

.filter-group { margin-bottom: var(--sp-xl); }
.filter-group-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-text-muted);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--c-border-light);
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  cursor: pointer;
  font-size: 14px;
}
.filter-option input { accent-color: var(--c-primary); }

.filter-actions {
  display: flex;
  gap: 10px;
  padding-top: var(--sp-md);
  border-top: 1px solid var(--c-border);
}
.filter-actions .btn { flex: 1; justify-content: center; }

/* ── 17. Pagination ─────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: var(--sp-xl) 0;
}
.page-item {
  min-width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid transparent;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--tr);
  padding: 0 6px;
  color: var(--c-text);
}
.page-item:hover { border-color: var(--c-border); background: var(--c-bg-card); }
.page-item.active {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
}
.page-item.disabled { opacity: 0.4; pointer-events: none; }
.page-dots { padding: 0 4px; color: var(--c-text-light); }

/* ── 18. Product Detail ─────────────────────────────────────── */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: var(--sp-xl) 0;
}

.product-gallery {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
}
.gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gallery-thumb {
  width: 80px;
  height: 80px;
  border: 2px solid var(--c-border);
  border-radius: var(--r-sm);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--tr);
  background: var(--c-bg);
}
.gallery-thumb.active,
.gallery-thumb:hover { border-color: var(--c-primary); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }

.gallery-main {
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-bg);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-main img { max-height: 100%; object-fit: contain; padding: 24px; }

/* Product Info */
.product-info { padding-top: 4px; }
.product-code { font-size: 12px; color: var(--c-text-muted); margin-bottom: 8px; }
.product-title { margin-bottom: var(--sp-md); }

.stock-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-accent);
  margin-bottom: var(--sp-md);
}
.stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}
.stock-status.out-of-stock { color: var(--c-text-muted); }

.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: var(--sp-lg);
}
.product-price {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  color: var(--c-text);
}
.product-old-price {
  font-size: 18px;
  color: var(--c-price-old);
  text-decoration: line-through;
}

.product-config { margin-bottom: var(--sp-lg); }
.product-config-label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--sp-xl);
}
.product-actions .btn { flex: 1; justify-content: center; }
.btn-wish {
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  background: var(--c-bg-card);
  flex-shrink: 0;
  transition: border-color var(--tr), background var(--tr);
}
.btn-wish:hover { border-color: var(--c-primary); }
.btn-wish.active { background: #FFF0F0; border-color: #E74C3C; }

.product-section-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: var(--sp-md);
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--c-border);
}
.product-desc { font-size: 14px; line-height: 1.7; color: var(--c-text-muted); }

.product-specs {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--sp-md);
}
.product-specs tr { border-bottom: 1px solid var(--c-border-light); }
.product-specs tr:last-child { border-bottom: none; }
.product-specs td {
  padding: 10px 0;
  font-size: 14px;
  vertical-align: top;
}
.product-specs td:first-child {
  color: var(--c-text-muted);
  width: 45%;
  padding-right: 16px;
}
.product-specs td:last-child { font-weight: 500; }
.product-specs tr:nth-child(odd) td { background: var(--c-bg); padding-left: 10px; padding-right: 10px; border-radius: 4px; }

/* ── 19. Hero Banner ─────────────────────────────────────────── */
.hero {
  min-height: 540px;
  background: var(--c-header);
  /* ASSUMPTION: actual hero has a product image overlay.
     Using gradient placeholder. REVIEW REQUIRED. */
  background: linear-gradient(135deg, #0F1F10 0%, #1E3D20 50%, #162A18 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  /* ASSUMPTION: product tower image covers right half of banner */
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.15));
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-heading {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--c-white);
  max-width: 640px;
  line-height: 1.15;
  margin-bottom: var(--sp-xl);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.25);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(2px);
}
.hero-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  max-width: 360px;
  line-height: 1.5;
}
.hero-contact { text-align: right; }
.hero-contact-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}
.hero-phone {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-white);
}

/* Hero image placeholder */
.hero-product-img {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  opacity: 0.7;
  z-index: 0;
}

/* ── 20. Category Cards (homepage) ──────────────────────────── */
.cat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-bottom: var(--sp-xl);
}
.cat-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 16px;
  min-height: 200px;
  position: relative;
}
.cat-card--dark {
  background: var(--c-primary);
  color: var(--c-white);
}
.cat-card--light {
  background: #E8E0CE;
  color: var(--c-text);
}
.cat-card__title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.cat-card--dark .cat-card__title { color: var(--c-white); }
.cat-card__sub { font-size: 13px; opacity: 0.75; margin-bottom: var(--sp-md); }
.cat-card__img {
  width: 140px;
  flex-shrink: 0;
}

/* ── 21. About Section (homepage) ───────────────────────────── */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: var(--sp-2xl);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.about-img {
  min-height: 400px;
  background: #C8D8C0;
  /* ASSUMPTION: actual image shows strawberry/plant growth */
  background: linear-gradient(135deg, #5A7A40 0%, #3A5528 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 40px;
}
.about-body {
  background: var(--c-bg-card);
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-body h2 { margin-bottom: var(--sp-md); }
.about-body p { color: var(--c-text-muted); margin-bottom: var(--sp-lg); }

/* ── 22. CTA Strip ──────────────────────────────────────────── */
.cta-strip {
  background: var(--c-primary);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-strip::after {
  content: '';
  position: absolute;
  right: 80px;
  bottom: -80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.cta-strip-inner {
  position: relative;
  z-index: 1;
}
.cta-strip h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 8px;
}
.cta-strip p { color: rgba(255,255,255,0.75); margin-bottom: var(--sp-lg); }

/* ── 23. Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--c-bg-card);
  border-top: 1px solid var(--c-border);
  margin-top: auto;
  padding-top: var(--sp-2xl);
}
.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: var(--sp-xl);
}
.footer-phone {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}
.footer-email {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-md);
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: var(--sp-md);
}
.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-primary);
  color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--tr);
}
.footer-social-link:hover { background: var(--c-primary-h); }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  color: var(--c-text);
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 13px;
  color: var(--c-text-muted);
  transition: color var(--tr);
}
.footer-col ul li a:hover { color: var(--c-primary); }
.footer-col address {
  font-style: normal;
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid var(--c-border);
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--c-text-muted);
}

/* ── 24. Cookie Banner ──────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--c-bg-card);
  border-top: 1.5px solid var(--c-border);
  padding: 16px 0;
  z-index: 300;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.cookie-banner.hidden { transform: translateY(110%); }
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-lg);
  flex-wrap: wrap;
}
.cookie-text {
  font-size: 13px;
  color: var(--c-text-muted);
  flex: 1;
  min-width: 280px;
}
.cookie-text a { color: var(--c-primary); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ── 25. Auth Pages ─────────────────────────────────────────── */
.auth-page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-2xl) var(--sp-xl);
}
.auth-box {
  background: var(--c-bg-card);
  border-radius: var(--r-lg);
  padding: 48px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}
.auth-title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}
.auth-sub {
  font-size: 14px;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-xl);
}
.auth-divider {
  text-align: center;
  position: relative;
  margin: var(--sp-lg) 0;
  color: var(--c-text-light);
  font-size: 13px;
}
.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: var(--c-border);
}
.auth-divider span {
  position: relative;
  background: var(--c-bg-card);
  padding: 0 12px;
}
.auth-links {
  text-align: center;
  font-size: 13px;
  color: var(--c-text-muted);
  margin-top: var(--sp-md);
}
.auth-links a { color: var(--c-primary); font-weight: 600; }

/* Google sign-in — REVIEW REQUIRED: OAuth integration needed */
.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  background: var(--c-bg-card);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color var(--tr);
}
.btn-google:hover { border-color: var(--c-text-muted); }

/* ── 26. Account Layout ─────────────────────────────────────── */
.account-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  padding: var(--sp-xl) 0 var(--sp-2xl);
}
.account-sidebar {
  background: var(--c-bg-card);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  height: fit-content;
}
.account-nav { display: flex; flex-direction: column; gap: 2px; }
.account-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--c-text);
  transition: background var(--tr), color var(--tr);
}
.account-nav-item:hover { background: var(--c-bg); }
.account-nav-item.active { background: var(--c-primary); color: var(--c-white); }

.account-content {
  background: var(--c-bg-card);
  border-radius: var(--r-lg);
  padding: var(--sp-xl);
}
.account-content-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: var(--sp-xl);
  padding-bottom: var(--sp-md);
  border-bottom: 1.5px solid var(--c-border);
}

/* ── 27. Order History ──────────────────────────────────────── */
.order-card {
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 16px;
}
.order-card-head {
  padding: 14px 20px;
  background: var(--c-bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.order-num { font-weight: 700; font-size: 14px; }
.order-date { font-size: 13px; color: var(--c-text-muted); }
.order-status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.order-status.delivered { background: #E8F5E9; color: #2E7D32; }
.order-status.processing { background: #FFF8E1; color: #F57F17; }
.order-status.cancelled { background: #FFEBEE; color: #C62828; }

.order-card-body { padding: 16px 20px; }
.order-item-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--c-border-light);
}
.order-item-row:last-child { border-bottom: none; }
.order-item-img {
  width: 60px;
  height: 60px;
  background: var(--c-bg);
  border-radius: var(--r-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.order-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.order-item-name { flex: 1; font-size: 13px; }
.order-item-price { font-weight: 700; white-space: nowrap; }

.order-total {
  padding: 12px 20px;
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.order-total strong { font-size: 16px; }

/* ── 28. Cart ───────────────────────────────────────────────── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  padding: var(--sp-xl) 0 var(--sp-2xl);
}
.cart-title {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: var(--sp-xl);
}
.cart-item {
  background: var(--c-bg-card);
  border-radius: var(--r-md);
  padding: 20px;
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  align-items: start;
  margin-bottom: 12px;
}
.cart-item-img {
  aspect-ratio: 1;
  background: var(--c-bg);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.cart-item-name { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.cart-item-code { font-size: 12px; color: var(--c-text-muted); margin-bottom: 12px; }
.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  overflow: hidden;
  width: fit-content;
}
.qty-btn {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-bg);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background var(--tr);
}
.qty-btn:hover { background: var(--c-border); }
.qty-input {
  width: 44px;
  text-align: center;
  border: none;
  border-left: 1.5px solid var(--c-border);
  border-right: 1.5px solid var(--c-border);
  font-size: 14px;
  font-weight: 600;
  padding: 0;
  height: 32px;
}
.qty-input:focus { outline: none; }
.cart-item-price {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
  text-align: right;
}
.cart-item-remove {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--c-text-light);
  margin-top: 8px;
  cursor: pointer;
  transition: color var(--tr);
}
.cart-item-remove:hover { color: var(--c-error); }

.cart-summary {
  background: var(--c-bg-card);
  border-radius: var(--r-md);
  padding: var(--sp-lg);
  height: fit-content;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.cart-summary-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: var(--sp-lg);
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--c-border);
}
.cart-sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
}
.cart-sum-row.total {
  border-top: 1.5px solid var(--c-border);
  margin-top: 8px;
  padding-top: var(--sp-md);
  font-weight: 700;
  font-size: 18px;
  font-family: var(--font-head);
}
.cart-summary .btn { width: 100%; justify-content: center; margin-top: var(--sp-md); }

/* ── 29. Checkout ───────────────────────────────────────────── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  padding: var(--sp-xl) 0 var(--sp-2xl);
}
.checkout-title {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: var(--sp-xl);
}
.checkout-section {
  background: var(--c-bg-card);
  border-radius: var(--r-md);
  padding: var(--sp-xl);
  margin-bottom: var(--sp-md);
}
.checkout-section-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: var(--sp-lg);
}
.checkout-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: var(--sp-lg);
}
.checkout-tab {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 2px solid var(--c-border);
  border-radius: var(--r-sm);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  background: var(--c-bg-card);
  transition: border-color var(--tr);
}
.checkout-tab.active { border-color: var(--c-primary); }
.checkout-tab .tab-radio {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--c-border);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.checkout-tab.active .tab-radio {
  border-color: var(--c-primary);
}
.checkout-tab.active .tab-radio::after {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-primary);
}

/* Order summary sidebar (checkout) */
.checkout-summary {
  background: var(--c-bg-card);
  border-radius: var(--r-md);
  padding: var(--sp-lg);
  height: fit-content;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.checkout-product-row {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--c-border-light);
  font-size: 13px;
}
.checkout-product-row:last-of-type { border-bottom: none; }
.checkout-prod-img {
  width: 52px; height: 52px;
  background: var(--c-bg);
  border-radius: var(--r-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.checkout-prod-img img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }

/* ── 30. Info/Content Pages ─────────────────────────────────── */
.page-hero {
  padding: var(--sp-2xl) 0;
  border-bottom: 1.5px solid var(--c-border);
  margin-bottom: var(--sp-2xl);
}
.page-hero h1 { margin-bottom: 8px; }
.page-hero p { color: var(--c-text-muted); font-size: 16px; }

.content-area {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: var(--sp-3xl);
}
.content-area h2 { margin: var(--sp-xl) 0 var(--sp-md); }
.content-area h3 { margin: var(--sp-lg) 0 var(--sp-sm); color: var(--c-text-muted); }
.content-area p { font-size: 15px; line-height: 1.75; color: var(--c-text-muted); }
.content-area ul { padding-left: var(--sp-lg); margin-bottom: var(--sp-md); }
.content-area ul li {
  list-style: disc;
  font-size: 15px;
  color: var(--c-text-muted);
  line-height: 1.75;
}

.delivery-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-lg) 0;
  font-size: 14px;
}
.delivery-table th {
  background: var(--c-primary);
  color: var(--c-white);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}
.delivery-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--c-border);
}
.delivery-table tr:nth-child(even) td { background: var(--c-bg); }

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: var(--sp-2xl);
}
.contact-card {
  background: var(--c-bg-card);
  border-radius: var(--r-md);
  padding: var(--sp-xl);
  border: 1.5px solid var(--c-border);
}
.contact-card h3 { margin-bottom: var(--sp-md); font-size: 16px; }
.contact-card p { font-size: 14px; color: var(--c-text-muted); margin-bottom: 8px; }
.contact-card a { color: var(--c-primary); }

.map-placeholder {
  width: 100%;
  min-height: 320px;
  background: var(--c-bg);
  border-radius: var(--r-md);
  border: 1.5px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-light);
  font-size: 14px;
  margin-bottom: var(--sp-2xl);
}
/* REVIEW REQUIRED: Map integration (Google Maps / OpenStreetMap) */

/* ── 31. Empty States ───────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: var(--sp-3xl) var(--sp-xl);
}
.empty-state-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--sp-lg);
  background: var(--c-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-light);
}
.empty-state h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.empty-state p { color: var(--c-text-muted); margin-bottom: var(--sp-lg); }

/* ── 32. SEO Text Block ─────────────────────────────────────── */
.seo-block {
  padding: var(--sp-2xl) 0;
  border-top: 1.5px solid var(--c-border);
}
.seo-block h2 { font-size: 20px; margin-bottom: var(--sp-md); }
.seo-block p { font-size: 14px; color: var(--c-text-muted); line-height: 1.75; margin-bottom: var(--sp-sm); }
.seo-block ul {
  padding-left: var(--sp-lg);
  margin-bottom: var(--sp-md);
}
.seo-block ul li {
  list-style: disc;
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.75;
}

/* ── 33. 404 Page ───────────────────────────────────────────── */
.page-404 {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-3xl) var(--sp-xl);
  text-align: center;
}
.page-404-num {
  font-family: var(--font-head);
  font-size: clamp(80px, 15vw, 140px);
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1;
  margin-bottom: var(--sp-md);
}
.page-404 h2 { margin-bottom: 8px; }
.page-404 p { color: var(--c-text-muted); margin-bottom: var(--sp-xl); }

/* ── 34. Order Confirmation ─────────────────────────────────── */
.confirm-page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-3xl) var(--sp-xl);
}
.confirm-box {
  background: var(--c-bg-card);
  border-radius: var(--r-lg);
  padding: 56px 48px;
  max-width: 540px;
  text-align: center;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}
.confirm-icon {
  width: 72px;
  height: 72px;
  background: #E8F5E9;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-lg);
  color: var(--c-accent);
}
.confirm-box h2 { margin-bottom: 8px; }
.confirm-box p { color: var(--c-text-muted); margin-bottom: var(--sp-xl); }

/* ── 35. Search Page ────────────────────────────────────────── */
/* REVIEW REQUIRED: Search is unclear - overlay vs. full page.
   Implemented as a full page with results. */
.search-page-header {
  padding: var(--sp-xl) 0 var(--sp-md);
  border-bottom: 1.5px solid var(--c-border);
  margin-bottom: var(--sp-md);
}
.search-query-bar {
  display: flex;
  align-items: center;
  background: var(--c-bg-card);
  border: 2px solid var(--c-primary);
  border-radius: var(--r-sm);
  overflow: hidden;
  max-width: 600px;
  margin-bottom: var(--sp-md);
}
.search-query-bar input {
  flex: 1;
  height: 48px;
  border: none;
  background: transparent;
  padding: 0 16px;
  font-size: 16px;
  color: var(--c-text);
}
.search-query-bar input:focus { outline: none; }
.search-query-bar button {
  height: 48px;
  padding: 0 20px;
  background: var(--c-primary);
  color: var(--c-white);
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
}
.search-result-count {
  font-size: 14px;
  color: var(--c-text-muted);
}
.search-result-count strong { color: var(--c-text); }

/* ── 36. Responsive Gaps Marker ─────────────────────────────── */
/* REVIEW REQUIRED: Mobile designs are absent from the Figma file.
   The following breakpoints are ASSUMPTION-based stubs.
   Full responsive implementation requires designer input. */

@media (max-width: 1200px) {
  :root { --container-pad: 24px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .carousel-track { grid-template-columns: repeat(3, 1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .product-gallery { grid-template-columns: 60px 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .account-layout { grid-template-columns: 1fr; }
  .account-sidebar { display: none; /* REVIEW: mobile account nav not designed */ }
  .cat-cards { grid-template-columns: 1fr; }
  .about-section { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* REVIEW REQUIRED: No mobile header design exists in Figma.
     This is a basic collapse approximation. */
  .header-link { display: none; }
  .header-inner { grid-template-columns: auto 1fr auto; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .carousel-track { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr; }
  .hero-bottom { flex-direction: column; gap: 12px; }
  .hero-contact { text-align: left; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  :root { --container-pad: 16px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .auth-box { padding: 32px 24px; }
  .confirm-box { padding: 40px 24px; }
}
