/* High Range Harvest — Production-Ready Premium Design System */

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

:root {
  --primary: #122419;
  --primary-light: #1e3b2a;
  --primary-subtle: #2d543d;
  --accent-gold: #c8923c;
  --accent-gold-light: #f4e8d3;
  --terracotta: #b85d38;
  --bg-main: #faf7f2;
  --bg-secondary: #f3edd7;
  --card-bg: #ffffff;
  --text-dark: #19221b;
  --text-muted: #647568;
  --border-color: #e5dfd3;
  --success: #286e38;
  --warning: #d97706;
  --danger: #dc2626;
  --shadow-sm: 0 4px 12px rgba(18, 36, 25, 0.04);
  --shadow-md: 0 10px 30px rgba(18, 36, 25, 0.08);
  --shadow-lg: 0 20px 48px rgba(18, 36, 25, 0.14);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, .font-heading {
  font-family: var(--font-heading);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* ─── Accessibility Focus Ring ─────────────────────────────────────────── */
*:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── Toast Notifications ───────────────────────────────────────────────── */
#hrh-toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.hrh-toast {
  background: var(--primary);
  color: white;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: all;
  animation: slideInToast 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
  border-left: 4px solid var(--accent-gold);
  max-width: 320px;
}

.hrh-toast.toast-success { border-left-color: var(--success); }
.hrh-toast.toast-error   { border-left-color: var(--danger); }
.hrh-toast.toast-warning { border-left-color: var(--warning); }
.hrh-toast.toast-out     { animation: slideOutToast 0.3s ease forwards; }

@keyframes slideInToast {
  from { opacity: 0; transform: translateX(60px) scale(0.95); }
  to   { opacity: 1; transform: translateX(0)    scale(1); }
}

@keyframes slideOutToast {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(60px); }
}

/* ─── Page Loading Spinner ─────────────────────────────────────────────── */
#pageLoader {
  position: fixed;
  inset: 0;
  background: var(--bg-main);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  z-index: 99999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#pageLoader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--primary);
  font-weight: 700;
}

.loader-logo span { color: var(--accent-gold); font-style: italic; }

.spinner-ring {
  width: 44px;
  height: 44px;
  border: 3px solid var(--border-color);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

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

/* ─── Header ────────────────────────────────────────────────────────────── */
header {
  background: var(--primary);
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 14px 28px;
  box-shadow: var(--shadow-md);
  border-bottom: 2px solid var(--accent-gold);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.3px;
  flex-shrink: 0;
}

.logo span {
  color: var(--accent-gold);
  font-style: italic;
  font-weight: 400;
}

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

.nav-btn {
  background: rgba(255, 255, 255, 0.08);
  color: #f3ede2;
  border: 1px solid rgba(200, 146, 60, 0.35);
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.22s ease;
  text-decoration: none;
  white-space: nowrap;
  font-family: var(--font-body);
}

.nav-btn:hover {
  background: var(--accent-gold);
  color: var(--primary);
  border-color: var(--accent-gold);
  transform: translateY(-1px);
}

.cart-count-badge {
  background: var(--accent-gold);
  color: var(--primary);
  border-radius: 50%;
  padding: 2px 7px;
  font-size: 0.75rem;
  font-weight: 800;
  min-width: 22px;
  text-align: center;
  transition: transform 0.2s ease;
}

/* Mobile header burger — hidden on desktop */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}

/* ─── Hero Section ──────────────────────────────────────────────────────── */
.hero {
  background: radial-gradient(ellipse at 70% 30%, #1d3b2a 0%, #122419 65%);
  color: white;
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8923c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-subtitle {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.12;
}

.hero p {
  font-size: 1.1rem;
  color: #c8d8cc;
  max-width: 680px;
  margin: 0 auto 32px auto;
  font-weight: 400;
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-tag {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(200, 146, 60, 0.4);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #f0e8d8;
  transition: background 0.2s;
}

.hero-tag:hover {
  background: rgba(200, 146, 60, 0.15);
}

/* ─── Main Container & Category Bar ─────────────────────────────────────── */
.main-container {
  max-width: 1280px;
  margin: 40px auto;
  padding: 0 24px;
}

.category-nav-bar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 16px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--border-color);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.category-nav-bar::-webkit-scrollbar { display: none; }

.category-pill {
  background: white;
  border: 1px solid var(--border-color);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}

.category-pill.active, .category-pill:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
}

/* ─── Ethical Sourcing Story Section ────────────────────────────────────── */
.sourcing-story-card {
  background: linear-gradient(135deg, #f4ecd8 0%, #ebe2c7 100%);
  border: 1px solid var(--accent-gold);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.story-content h2 {
  font-size: 2.1rem;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.story-content p {
  font-size: 0.95rem;
  color: #3d4a40;
  margin-bottom: 20px;
  line-height: 1.75;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid rgba(18, 36, 25, 0.15);
  padding-top: 20px;
}

.story-stat-item { text-align: center; }

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-lbl {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--terracotta);
  margin-top: 4px;
}

.story-visual {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid var(--border-color);
}

/* ─── Product Card Grid ──────────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  position: relative;
}

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

/* Interactive Hover Thumbnail Flip Effect */
.product-image-container {
  height: 230px;
  background: #f6f2e8;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.product-thumb-primary, .product-thumb-secondary {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 16px;
}

.product-thumb-primary {
  font-size: 4.5rem;
  opacity: 1;
  transform: scale(1);
}

.product-thumb-secondary {
  background: #122419;
  color: white;
  opacity: 0;
  transform: scale(0.95) translateY(10px);
  text-align: center;
  padding: 24px;
}

.product-card:hover .product-thumb-primary {
  opacity: 0;
  transform: scale(1.1);
}

.product-card:hover .product-thumb-secondary {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.secondary-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.secondary-desc {
  font-size: 0.78rem;
  color: #cfded3;
  line-height: 1.5;
}

.stock-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(18, 36, 25, 0.88);
  color: #f7eedf;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  z-index: 10;
}

.product-details {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-description {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  flex-grow: 1;
  line-height: 1.6;
}

/* Health Benefit Tags */
.health-benefits-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.health-pill {
  background: #eef5f0;
  color: var(--success);
  border: 1px solid #d4ebd9;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 3px;
}

/* Volume Discount Box */
.volume-discount-box {
  background: #fdfbf7;
  border: 1px dashed var(--accent-gold);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-bottom: 14px;
  font-size: 0.8rem;
}

.discount-tier-item {
  display: flex;
  justify-content: space-between;
  color: var(--primary);
  font-weight: 600;
  padding: 2px 0;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.current-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.mrp-price {
  font-size: 0.95rem;
  text-decoration: line-through;
  color: #94a397;
}

.savings-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--success);
  background: #e8f5e9;
  padding: 3px 10px;
  border-radius: 12px;
}

/* ─── Buttons ───────────────────────────────────────────────────────────── */
.btn-primary {
  background: var(--primary);
  color: #f7eedf;
  border: none;
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  width: 100%;
  transition: all 0.22s ease;
  font-family: var(--font-body);
  letter-spacing: 0.3px;
}

.btn-primary:hover:not(:disabled) {
  background: var(--primary-light);
  color: white;
  transform: translateY(-1px);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-secondary {
  background: #f3edd7;
  color: var(--primary);
  border: 1px solid var(--border-color);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-body);
  font-size: 0.85rem;
}

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

/* ─── Cart Item Styles ───────────────────────────────────────────────────── */
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
  gap: 12px;
}

.cart-item:last-child { border-bottom: none; }

.cart-item-title {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.qty-btn {
  background: var(--primary);
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  font-family: var(--font-body);
  line-height: 1;
}

.qty-btn:hover { background: var(--accent-gold); }

/* ─── Cart Summary ───────────────────────────────────────────────────────── */
.cart-summary {
  margin-top: 16px;
  border-top: 2px solid var(--border-color);
  padding-top: 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.summary-total {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--primary);
  border-top: 1px solid var(--border-color);
  margin-top: 6px;
  padding-top: 10px;
}

/* ─── Modals ──────────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 36, 25, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  padding: 16px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: white;
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 550px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 1px solid var(--border-color);
  animation: modalSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes modalSlideIn {
  from { opacity: 0; transform: scale(0.96) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 14px;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.close-modal {
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
  padding: 4px 6px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.close-modal:hover {
  color: var(--danger);
  background: #ffebee;
}

/* ─── Auth & Address Book Cards ──────────────────────────────────────────── */
.auth-option-card {
  background: #fbf9f4;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 16px;
}

.auth-option-card:hover {
  border-color: var(--primary);
  background: white;
  box-shadow: var(--shadow-sm);
}

/* Form inputs unified styling */
.modal-card input,
.modal-card select,
.modal-card textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.modal-card input:focus,
.modal-card select:focus,
.modal-card textarea:focus {
  outline: none;
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(18, 36, 25, 0.08);
}

/* ─── OTP Digits ─────────────────────────────────────────────────────────── */
.otp-digit-inputs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 20px 0;
}

.otp-box {
  width: 44px;
  height: 52px;
  font-size: 1.4rem;
  font-weight: 800;
  text-align: center;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
}

.otp-box:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(18, 36, 25, 0.08);
}

/* ─── Skeleton Loading Placeholders ─────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, #f0ece3 25%, #e8e3d8 50%, #f0ece3 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}

.skeleton-card {
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.skeleton-img  { height: 230px; }
.skeleton-body { padding: 22px; display: flex; flex-direction: column; gap: 12px; }
.skeleton-line { height: 14px; border-radius: 4px; }
.skeleton-line.short { width: 60%; }
.skeleton-line.shorter { width: 40%; }

/* ─── Footer ──────────────────────────────────────────────────────────────── */
footer {
  background: var(--primary);
  color: #c8d8cc;
  padding: 56px 24px 32px;
  margin-top: 80px;
  border-top: 3px solid var(--accent-gold);
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: #9db8a2;
  max-width: 260px;
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: white;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: #9db8a2;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: #6a8572;
}

.footer-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-badge {
  background: rgba(200, 146, 60, 0.12);
  border: 1px solid rgba(200, 146, 60, 0.3);
  color: var(--accent-gold);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ─── Responsive — Mobile First ──────────────────────────────────────────── */
@media (max-width: 768px) {
  header { padding: 12px 16px; }

  .logo { font-size: 1.3rem; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: calc(100%);
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 16px;
    gap: 10px;
    border-top: 1px solid rgba(200, 146, 60, 0.2);
    z-index: 999;
  }

  .nav-links.open { display: flex; }

  .nav-btn { width: 100%; justify-content: center; }

  .hamburger-btn { display: block; }

  .hero { padding: 48px 16px; }

  .hero h1 { font-size: 1.8rem; }

  .main-container { padding: 0 16px; margin: 28px auto; }

  .sourcing-story-card {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 24px;
  }

  .story-content h2 { font-size: 1.6rem; }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
  }

  .section-header { flex-direction: column; align-items: flex-start; gap: 4px; }

  .modal-card { padding: 20px; max-height: 95vh; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .story-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
}
