/* ===========================================
   CSS VARIABLES & RESET
   =========================================== */
:root {
  --tomato-primary: #D93A2F;
  --tomato-dark: #C92E24;
  --tomato-light: #E0473D;
  --tomato-accent: #A8231C;
  --green-primary: #4D8F2A;
  --green-light: #5FA637;
  --green-pale: #DDEBCF;
  --green-soft: #EAF2DE;
  --cream-1: #FBF8EE;
  --cream-2: #F6F1E4;
  --cream-3: #FFFDF7;
  --white: #FFFFFF;
  --text-main: #2C221D;
  --text-secondary: #6E625A;
  --text-light: #9A8E84;
  --border: #E9DFC9;
  --border-light: #F0E8D8;
  --shadow-sm: 0 2px 8px rgba(44, 34, 29, 0.06);
  --shadow-md: 0 4px 20px rgba(44, 34, 29, 0.08);
  --shadow-lg: 0 8px 40px rgba(44, 34, 29, 0.1);
  --shadow-hover: 0 12px 48px rgba(44, 34, 29, 0.14);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --font-display: 'Quicksand', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--cream-1);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; cursor: pointer; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================================
   ANIMATIONS
   =========================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================================
   HEADER / NAV
   =========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(251, 248, 238, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--tomato-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-icon { width: 36px; height: 36px; }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--tomato-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--tomato-primary); }
.nav-links a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--tomato-primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
}
.cart-btn:hover {
  background: var(--tomato-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(217, 58, 47, 0.3);
}
.cart-btn svg { width: 18px; height: 18px; }
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--green-primary);
  color: var(--white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--cream-1);
  transition: var(--transition);
}
.cart-badge.hidden { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===========================================
   HERO
   =========================================== */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--cream-1) 0%, var(--cream-3) 50%, var(--green-soft) 100%);
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(221, 235, 207, 0.5) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(217, 58, 47, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { animation: fadeUp 0.8s ease forwards; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-pale);
  color: var(--green-primary);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-display);
  margin-bottom: 24px;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero h1 {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 12px;
}
.hero h1 span { color: var(--tomato-primary); }
.hero-subtitle {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--tomato-primary);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-display);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  background: var(--tomato-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(217, 58, 47, 0.3);
}
.btn-secondary {
  background: var(--white);
  color: var(--green-primary);
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-display);
  border: 2px solid var(--green-pale);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary:hover {
  background: var(--green-pale);
  border-color: var(--green-primary);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  animation: fadeIn 1s ease 0.3s forwards;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-tomatoes {
  width: 100%;
  max-width: 520px;
  animation: float 6s ease-in-out infinite;
}

/* ===========================================
   INFO STRIP
   =========================================== */
.info-strip {
  padding: 60px 0;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.info-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--cream-3);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.info-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--green-pale);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-icon svg { width: 28px; height: 28px; color: var(--green-primary); }
.info-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
}
.info-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===========================================
   SECTION HEADERS
   =========================================== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--tomato-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}
.price-update-info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 20px;
  background: var(--green-pale);
  color: var(--green-primary);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
}
.price-update-info svg { flex-shrink: 0; }

/* ===========================================
   PRODUCTS
   =========================================== */
.products {
  padding: 80px 0;
  background: var(--cream-1);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--cream-3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.product-image svg {
  width: 80%;
  height: 80%;
  transition: transform 0.5s ease;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-image svg,
.product-card:hover .product-image img { transform: scale(1.08); }
.product-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--tomato-primary);
  color: var(--white);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-display);
}
.product-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
}
.product-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
  flex: 1;
}
.product-more {
  color: var(--tomato-primary);
  font-weight: 600;
  font-size: 0.82rem;
  white-space: nowrap;
}
.product-more:hover { text-decoration: underline; }
.product-name a { color: inherit; }
.product-name a:hover { color: var(--tomato-primary); }
.product-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--tomato-primary);
  margin-bottom: 16px;
}
.product-price span {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

.qty-selector {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: var(--cream-3);
}
.qty-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text-main);
  font-size: 1.2rem;
  font-weight: 700;
  transition: var(--transition);
  flex-shrink: 0;
}
.qty-btn:hover { background: var(--border-light); }
.qty-btn:active { background: var(--border); }
.qty-value {
  flex: 1;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
  min-width: 60px;
}

.btn-add-cart {
  width: 100%;
  background: var(--green-primary);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--font-display);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-add-cart:hover {
  background: var(--green-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(77, 143, 42, 0.3);
}
.btn-add-cart svg { width: 18px; height: 18px; }
.btn-add-cart.added {
  background: var(--tomato-primary);
  animation: pulse 0.3s ease;
}

.min-qty-tooltip {
  display: none;
  font-size: 0.78rem;
  color: var(--green-primary);
  background: var(--green-pale);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  line-height: 1.5;
  text-align: center;
  animation: fadeIn 0.3s ease;
}
.min-qty-tooltip.show { display: block; }

/* Product thumbnails gallery */
.product-thumbs {
  display: flex;
  gap: 6px;
  padding: 8px 12px;
  overflow-x: auto;
}
.product-thumb {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  border: 2px solid var(--border-light);
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  background: var(--cream-3);
  padding: 0;
  transition: var(--transition);
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-thumb:hover { border-color: var(--green-primary); }
.product-thumb.active { border-color: var(--tomato-primary); }

/* Unavailable product */
.product-unavailable {
  opacity: 0.6;
  filter: grayscale(60%);
}
.product-unavailable:hover {
  opacity: 0.75;
  transform: none;
  box-shadow: var(--shadow-sm);
}
.product-unavailable .product-image img,
.product-unavailable .product-image svg {
  filter: grayscale(80%);
}
.product-label.label-gray {
  background: var(--text-light);
}
.product-price-gray {
  color: var(--text-light);
}
.product-unavailable-msg {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-light);
  text-align: center;
  padding: 16px 0;
  border: 2px dashed var(--border);
  border-radius: var(--radius-pill);
  margin-top: auto;
}

/* ===========================================
   CART SIDEBAR
   =========================================== */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 34, 29, 0.4);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 440px;
  max-width: 100%;
  background: var(--cream-1);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(44, 34, 29, 0.15);
}
.cart-sidebar.open { transform: translateX(0); }
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--border);
}
.cart-header h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
}
.cart-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.cart-close:hover { background: var(--border); }
.cart-close svg { width: 18px; height: 18px; }
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}
.cart-empty {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-light);
}
.cart-empty svg { width: 64px; height: 64px; margin-bottom: 16px; opacity: 0.4; }
.cart-empty p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  align-items: flex-start;
}
.cart-item-thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: var(--cream-3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.cart-item-thumb svg { width: 48px; height: 48px; }
.cart-item-info { flex: 1; }
.cart-item-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.cart-item-price {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cart-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: var(--white);
}
.cart-qty button {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  transition: var(--transition);
}
.cart-qty button:hover { background: var(--cream-2); }
.cart-qty span {
  min-width: 50px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
}
.cart-item-remove {
  background: none;
  color: var(--text-light);
  font-size: 0.8rem;
  transition: var(--transition);
}
.cart-item-remove:hover { color: var(--tomato-primary); }
.cart-item-subtotal {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--tomato-primary);
  text-align: right;
  flex-shrink: 0;
  min-width: 70px;
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.cart-total-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}
.cart-total-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--tomato-primary);
}
.btn-checkout {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--tomato-primary);
  color: var(--white);
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-display);
  transition: var(--transition);
}
.btn-checkout:hover {
  background: var(--tomato-dark);
  box-shadow: 0 6px 24px rgba(217, 58, 47, 0.3);
}

/* ===========================================
   CHECKOUT
   =========================================== */
.checkout {
  padding: 80px 0;
  background: var(--white);
}
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.form-section { margin-bottom: 36px; }
.form-section-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-section-title .num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--tomato-primary);
  color: var(--white);
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--text-main);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  background: var(--cream-3);
  color: var(--text-main);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(77, 143, 42, 0.12);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group input.error,
.form-group select.error {
  border-color: var(--tomato-primary);
  box-shadow: 0 0 0 3px rgba(217, 58, 47, 0.1);
}
.form-error {
  color: var(--tomato-primary);
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}
.form-error.show { display: block; }

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.radio-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  background: var(--cream-3);
}
.radio-option:hover { border-color: var(--green-primary); }
.radio-option.selected {
  border-color: var(--green-primary);
  background: var(--green-soft);
}
.radio-option input[type="radio"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--green-primary);
  flex-shrink: 0;
}
.radio-label strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 2px;
}
.radio-label span {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.address-field {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}
.address-field.show {
  max-height: 200px;
  opacity: 1;
  margin-top: 12px;
}
.postal-code-field {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}
.postal-code-field.show {
  max-height: 250px;
  opacity: 1;
  margin-top: 12px;
}
.pickup-info {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}
.pickup-info.show {
  max-height: 200px;
  opacity: 1;
  margin-top: 12px;
}
.pickup-info-box {
  background: var(--green-pale);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 0.88rem;
  color: var(--green-primary);
  line-height: 1.6;
}
.pickup-info-box strong { display: block; margin-bottom: 4px; }

.order-summary-panel {
  background: var(--cream-3);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 32px;
  position: sticky;
  top: 96px;
}
.order-summary-panel h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.summary-items { margin-bottom: 20px; }
.summary-empty-text {
  color: var(--text-light);
  font-size: 0.9rem;
}
.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
}
.summary-item-name { color: var(--text-main); font-weight: 600; }
.summary-item-detail { color: var(--text-secondary); }
.summary-item-price { font-weight: 700; color: var(--text-main); }
.summary-divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.9rem;
}
.summary-row.total {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  padding: 12px 0;
  color: var(--tomato-primary);
}
.summary-delivery, .summary-payment {
  margin-top: 16px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.summary-delivery strong, .summary-payment strong {
  display: block;
  color: var(--text-main);
  margin-bottom: 2px;
}

.summary-delivery-cost {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.9rem;
}
.summary-delivery-cost .free-label {
  color: var(--green-primary);
  font-weight: 700;
}

.delivery-map-section {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}
.delivery-map-section h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.delivery-map-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid var(--border-light);
}
.delivery-map-wrap iframe {
  width: 100%;
  height: 220px;
  border: none;
  display: block;
}
.delivery-pricing-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 12px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-light);
}
.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row .pr-label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-row .pr-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pricing-row .pr-codes {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-left: 18px;
}
.pricing-row .pr-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
}
.pricing-row .pr-price.free { color: var(--green-primary); }

.postal-result {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-family: var(--font-display);
  font-weight: 600;
  animation: fadeIn 0.3s ease;
}
.postal-result.show { display: flex; }
.postal-result.success {
  background: var(--green-pale);
  color: var(--green-primary);
  border: 1px solid rgba(77, 143, 42, 0.2);
}
.postal-result.warn {
  background: #FEF3E2;
  color: #B8651A;
  border: 1px solid rgba(184, 101, 26, 0.2);
}
.postal-result svg { width: 18px; height: 18px; flex-shrink: 0; }
.postal-result .pr-cost {
  margin-left: auto;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

.btn-submit-order {
  width: 100%;
  margin-top: 24px;
  background: var(--tomato-primary);
  color: var(--white);
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-display);
  transition: var(--transition);
}
.btn-submit-order:hover {
  background: var(--tomato-dark);
  box-shadow: 0 6px 24px rgba(217, 58, 47, 0.3);
}
.btn-submit-order:disabled {
  background: var(--border);
  color: var(--text-light);
  cursor: not-allowed;
  box-shadow: none;
}

/* ===========================================
   HOW IT WORKS
   =========================================== */
.how-it-works {
  padding: 80px 0;
  background: var(--cream-1);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--tomato-primary);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.step-connector {
  position: absolute;
  top: 64px;
  right: -18px;
  color: var(--border);
  font-size: 1.5rem;
  font-weight: 700;
}

/* ===========================================
   ABOUT
   =========================================== */
.about {
  padding: 80px 0;
  background: var(--white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-content h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-content h2 span { color: var(--tomato-primary); }
.about-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-features { list-style: none; margin-top: 24px; }
.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--text-main);
}
.about-features li svg {
  width: 22px;
  height: 22px;
  color: var(--green-primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-visual svg { width: 100%; max-width: 450px; }

/* ===========================================
   PRODUCER BANNER
   =========================================== */
.producer-banner {
  padding: 64px 0;
  background: var(--text-main);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.producer-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(217, 58, 47, 0.15) 0%, transparent 70%);
}
.producer-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}
.producer-icon {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.producer-icon svg { width: 44px; height: 44px; }
.producer-text { flex: 1; }
.producer-text h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}
.producer-text h3 span { color: var(--tomato-light); }
.producer-text p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 640px;
}
.producer-badges {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.producer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}
.producer-badge svg { width: 14px; height: 14px; opacity: 0.7; }

/* ===========================================
   CTA BANNER
   =========================================== */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--cream-2) 0%, var(--green-soft) 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(217, 58, 47, 0.08) 0%, transparent 70%);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.cta-content { max-width: 500px; }
.cta-content h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.cta-content h2 span { color: var(--tomato-primary); }
.cta-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.8;
}
.cta-visual svg { width: 300px; height: 300px; }
.cta-visual img {
  width: 360px;
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ===========================================
   FOOTER
   =========================================== */
.footer {
  background: var(--text-main);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 340px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
}

/* ===========================================
   ORDER SUCCESS
   =========================================== */
.success-card {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.success-icon { margin-bottom: 24px; }
.success-icon svg { width: 80px; height: 80px; margin: 0 auto; }
.success-card h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-main);
}
.success-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
}
.success-details {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: left;
}
.success-details h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
}
.success-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 0;
  font-size: 0.9rem;
  gap: 16px;
}
.success-detail-row span { color: var(--text-secondary); flex-shrink: 0; }
.success-detail-row strong {
  color: var(--text-main);
  text-align: right;
}
.success-detail-row.highlight {
  background: var(--green-pale);
  margin: 0 -32px;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
}
.success-detail-row.highlight strong { color: var(--green-primary); font-size: 1.1rem; }
.success-detail-row.total {
  font-size: 1.1rem;
}
.success-detail-row.total strong {
  color: var(--tomato-primary);
  font-size: 1.2rem;
}
.success-divider {
  height: 1px;
  background: var(--border-light);
  margin: 16px 0;
}

.blik-payment-box {
  background: #FFF8E1;
  border: 2px solid #F5C842;
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 8px;
  text-align: center;
}
.blik-payment-box h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
}
.blik-payment-box > p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.blik-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--tomato-primary);
  margin-bottom: 20px;
}
.blik-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.blik-detail span { color: var(--text-secondary); }
.blik-detail strong { color: var(--text-main); }
.blik-detail a { color: var(--tomato-primary); }
.blik-note {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 16px;
  line-height: 1.6;
}
.blik-note a { color: var(--tomato-primary); }

/* ===========================================
   MODAL
   =========================================== */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(44, 34, 29, 0.5);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.modal-overlay.open .modal { transform: scale(1); }
.modal h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.modal p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--border);
  border-top-color: var(--tomato-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 20px;
}

/* ===========================================
   LIGHTBOX
   =========================================== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: zoom-out;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.lightbox.open img {
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.3); }
.lightbox-close svg { width: 24px; height: 24px; color: var(--white); }

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 1;
}
.lightbox-arrow:hover { background: rgba(255, 255, 255, 0.3); }
.lightbox-arrow svg { width: 28px; height: 28px; color: var(--white); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  background: rgba(0, 0, 0, 0.4);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
}

.lightbox img { cursor: pointer; }

.product-image { cursor: zoom-in; }

/* ===========================================
   MOBILE NAV
   =========================================== */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream-1);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--tomato-primary); }
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: var(--cream-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav-close svg { width: 18px; height: 18px; }

/* ===========================================
   CART PAGE
   =========================================== */
.cart-page-items { margin-bottom: 32px; }
.cart-page-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  margin-bottom: 12px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  align-items: center;
}
.cart-page-item-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  background: var(--cream-3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cart-page-item-info { flex: 1; }
.cart-page-item-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.cart-page-item-price {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.cart-page-item-subtotal {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--tomato-primary);
  text-align: right;
  flex-shrink: 0;
  min-width: 80px;
}
.cart-page-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}
.cart-page-total {
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.cart-page-total strong {
  font-size: 1.4rem;
  color: var(--tomato-primary);
  margin-left: 8px;
}

/* ===========================================
   FAQ
   =========================================== */
.faq-section {
  padding: 80px 0;
  background: var(--cream-1);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}
.faq-question:hover { color: var(--tomato-primary); }
.faq-icon {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--tomato-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer p {
  padding: 0 24px 18px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===========================================
   LEGAL PAGES
   =========================================== */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 40px;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 28px 0 12px;
  color: var(--text-main);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 10px;
}
.legal-content ul {
  padding-left: 24px;
  margin-bottom: 10px;
}
.legal-content li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 4px;
}
.legal-content a { color: var(--tomato-primary); }

/* ===========================================
   PRODUCT DETAIL PAGE
   =========================================== */
.back-link-product {
  display: inline-block;
  margin-bottom: 24px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 600;
  transition: color 0.2s;
}
.back-link-product:hover { color: var(--tomato-primary); }

/* Breadcrumbs */
.pd-breadcrumbs {
  padding: 96px 0 0;
  background: var(--white);
}
.pd-breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-light);
  font-family: var(--font-display);
  font-weight: 600;
  padding-top: 16px;
  padding-bottom: 8px;
}
.pd-breadcrumbs a { color: var(--text-secondary); transition: color 0.2s; }
.pd-breadcrumbs a:hover { color: var(--tomato-primary); }
.pd-breadcrumbs span { color: var(--text-main); }
.pd-breadcrumbs svg { opacity: 0.4; flex-shrink: 0; }

/* Hero grid */
.pd-hero {
  padding: 24px 0 48px;
  background: var(--white);
}
.pd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Gallery */
.pd-gallery { position: sticky; top: 96px; }
.pd-main-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-3);
  border: 1px solid var(--border-light);
  cursor: zoom-in;
  transition: box-shadow 0.3s ease;
}
.pd-main-img:hover { box-shadow: var(--shadow-lg); }
.pd-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.pd-main-img:hover img { transform: scale(1.03); }
.pd-main-img { position: relative; }
.pd-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  opacity: 0;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.pd-main-img:hover .pd-arrow { opacity: 1; }
.pd-arrow:hover { background: var(--white); box-shadow: 0 4px 16px rgba(0,0,0,0.15); transform: translateY(-50%) scale(1.05); }
.pd-arrow svg { width: 20px; height: 20px; color: var(--text-main); }
.pd-arrow-prev { left: 12px; }
.pd-arrow-next { right: 12px; }
.pd-counter {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 2;
}
.pd-main-img:hover .pd-counter { opacity: 1; }
.pd-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.detail-thumb {
  width: 76px;
  height: 76px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border-light);
  overflow: hidden;
  cursor: pointer;
  background: var(--cream-3);
  padding: 0;
  transition: var(--transition);
}
.detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-thumb:hover { border-color: var(--green-primary); transform: translateY(-2px); }
.detail-thumb.active { border-color: var(--tomato-primary); box-shadow: 0 2px 8px rgba(217, 58, 47, 0.2); }

/* Info panel */
.pd-badge {
  display: inline-block;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-display);
  background: var(--tomato-primary);
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.pd-badge-gray { background: var(--text-light); }
.pd-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 8px;
  color: var(--text-main);
}
.pd-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Price */
.pd-price-block { margin-bottom: 20px; }
.pd-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--tomato-primary);
  line-height: 1;
}
.pd-price span {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 600;
}
.pd-price-disabled { color: var(--text-light); }
.pd-unavailable-badge {
  margin-top: 10px;
  padding: 10px 16px;
  background: var(--cream-2);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  font-family: var(--font-display);
}

/* Order row */
.pd-order-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}
.pd-order-row .qty-selector {
  margin-bottom: 0;
  min-width: 150px;
}
.pd-add-btn {
  flex: 1;
  max-width: none !important;
}
.pd-min-note {
  font-size: 0.78rem;
  color: var(--green-primary);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 0;
}

.pd-divider {
  height: 1px;
  background: var(--border-light);
  margin: 24px 0;
}

/* Features */
.pd-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
.pd-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-main);
  font-weight: 500;
  line-height: 1.4;
}
.pd-feature svg { flex-shrink: 0; margin-top: 1px; }

/* Info cards */
.pd-info-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.pd-info-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: var(--cream-3);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}
.pd-info-card svg { color: var(--tomato-primary); flex-shrink: 0; margin-top: 2px; }
.pd-info-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}
.pd-info-card span {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Trust badges */
.pd-trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.pd-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-secondary);
}
.pd-trust-item svg { color: var(--green-primary); }

/* Article */
.pd-article {
  padding: 48px 0 32px;
  background: var(--cream-1);
}
.pd-article-inner {
  max-width: 760px;
  margin: 0 auto;
}
.pd-article-heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-main);
  text-align: center;
}
.pd-article-text h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--text-main);
}
.pd-article-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 12px;
}

/* Related products */
.pd-related {
  padding: 48px 0 80px;
  background: var(--cream-1);
}
.pd-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pd-related-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: block;
}
.pd-related-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.pd-related-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--cream-3);
  overflow: hidden;
}
.pd-related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.pd-related-card:hover .pd-related-img img { transform: scale(1.06); }
.pd-related-body { padding: 18px; }
.pd-related-body h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-main);
}
.pd-related-price {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--tomato-primary);
  margin-bottom: 8px;
}
.pd-related-link {
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--green-primary);
}

@media (max-width: 1024px) {
  .pd-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .pd-grid { grid-template-columns: 1fr; gap: 28px; }
  .pd-gallery { position: static; }
  .pd-title { font-size: 1.6rem; }
  .pd-price { font-size: 2rem; }
  .pd-order-row { flex-direction: column; align-items: stretch; }
  .pd-order-row .qty-selector { min-width: auto; }
  .pd-features { grid-template-columns: 1fr; }
  .pd-related-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .pd-breadcrumbs .container { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .pd-related-grid { grid-template-columns: 1fr; }
  .pd-thumbs { overflow-x: auto; flex-wrap: nowrap; }
  .detail-thumb { width: 64px; height: 64px; flex-shrink: 0; }
}

/* ===========================================
   BLOG
   =========================================== */

/* === LISTING === */
.blog-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.blog-item {
  display: flex;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition);
}
.blog-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.blog-item-img {
  width: 300px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--cream-3);
}
.blog-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-item:hover .blog-item-img img { transform: scale(1.05); }
.blog-item-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: linear-gradient(135deg, var(--cream-2) 0%, var(--green-soft) 100%);
}
.blog-item-body {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.blog-item-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-light);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 10px;
}
.blog-item-body h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--text-main);
}
.blog-item-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-item-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--tomato-primary);
  transition: gap 0.2s;
}
.blog-item:hover .blog-item-link { gap: 10px; }

/* === POST PAGE === */
.bp-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.bp-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-light);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.bp-breadcrumbs a { color: var(--text-secondary); transition: color 0.2s; }
.bp-breadcrumbs a:hover { color: var(--tomato-primary); }
.bp-sep { color: var(--border); }
.bp-current { color: var(--text-main); }

.bp-hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
  background: var(--cream-3);
}
.bp-hero-img img {
  width: 100%;
  height: auto;
  display: block;
}

.bp-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-light);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 16px;
}
.bp-meta svg { flex-shrink: 0; }
.bp-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}

.bp-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 16px;
}

.bp-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-light);
}

.bp-content { margin-bottom: 48px; }
.bp-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 16px;
}
.bp-content h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 36px 0 12px;
  color: var(--text-main);
}
.bp-content ul, .bp-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.bp-content li {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 6px;
}
.bp-content li strong { color: var(--text-main); }
.bp-content a { color: var(--tomato-primary); font-weight: 600; }
.bp-content a:hover { text-decoration: underline; }
.bp-content strong { color: var(--text-main); }

/* CTA bar */
.bp-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--green-pale);
  border-radius: var(--radius-lg);
  margin-bottom: 48px;
  border: 1px solid rgba(77, 143, 42, 0.15);
}
.bp-cta-tomato { flex-shrink: 0; }
.bp-cta-body { flex: 1; min-width: 0; }
.bp-cta-body strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}
.bp-cta-body span {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.4;
}
.bp-cta-btn { flex-shrink: 0; white-space: nowrap; padding: 10px 24px; font-size: 0.88rem; }

/* Related posts */
.bp-related { margin-top: 8px; }
.bp-related h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.bp-related-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bp-related-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.bp-related-item:hover {
  border-color: var(--tomato-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.bp-related-img {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cream-3);
}
.bp-related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bp-related-text h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.3;
  margin-bottom: 4px;
}
.bp-related-text span {
  font-size: 0.78rem;
  color: var(--tomato-primary);
  font-weight: 600;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .blog-item { flex-direction: column; }
  .blog-item-img { width: 100%; }
  .blog-item-img img { height: 200px; }
  .blog-item-body { padding: 20px; }
  .blog-item-body h2 { font-size: 1.1rem; }
  .bp-title { font-size: 1.5rem; }
  .bp-lead { font-size: 0.95rem; }
  .bp-cta { flex-direction: column; text-align: center; gap: 12px; }
  .bp-cta-tomato { display: none; }
  .bp-hero-img { border-radius: var(--radius-md); }
  .bp-related-item { padding: 12px; }
  .bp-related-img { width: 60px; height: 60px; }
}

/* ===========================================
   WHOLESALE BANNER (homepage)
   =========================================== */
.wholesale-banner {
  padding: 0 0 80px;
  background: var(--cream-1);
}
.wholesale-banner-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 32px;
  background: var(--text-main);
  border-radius: var(--radius-lg);
  color: var(--white);
}
.wholesale-banner-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-light);
}
.wholesale-banner-text {
  flex: 1;
  min-width: 0;
}
.wholesale-banner-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.wholesale-banner-text span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}
.wholesale-banner-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.wholesale-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
}
.wholesale-banner-btn:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-1px);
}
.wholesale-banner-btn-wa { background: #25D366; border-color: #25D366; }
.wholesale-banner-btn-wa:hover { background: #1EBE57; }

@media (max-width: 768px) {
  .wholesale-banner-inner { flex-direction: column; text-align: center; padding: 24px; }
  .wholesale-banner-btns { justify-content: center; }
}

/* ===========================================
   CONTACT PAGE
   =========================================== */
.contact-hero {
  padding: 140px 0 48px;
  background: var(--white);
}

/* Action cards (phone/email) */
.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}
.contact-action-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--cream-3);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-light);
  transition: var(--transition);
}
.contact-action-card:hover {
  border-color: var(--green-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.contact-action-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-action-icon svg { width: 26px; height: 26px; }
.contact-action-phone .contact-action-icon { background: rgba(217, 58, 47, 0.1); color: var(--tomato-primary); }
.contact-action-email .contact-action-icon { background: rgba(77, 143, 42, 0.1); color: var(--green-primary); }
.contact-action-text { flex: 1; min-width: 0; }
.contact-action-label {
  display: block;
  font-size: 0.78rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.contact-action-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
  word-break: break-all;
}
.contact-action-hint {
  font-size: 0.8rem;
  color: var(--text-light);
}
.contact-action-arrow {
  width: 20px;
  height: 20px;
  color: var(--border);
  flex-shrink: 0;
  transition: var(--transition);
}
.contact-action-card:hover .contact-action-arrow { color: var(--green-primary); transform: translateX(3px); }

/* Details section */
.contact-details {
  padding: 48px 0 80px;
  background: var(--cream-1);
}
.contact-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

/* Map */
.contact-map-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
}
.contact-map-wrap iframe {
  width: 100%;
  height: 320px;
  border: none;
  display: block;
}
.contact-map-info {
  padding: 20px 24px;
}
.contact-map-info h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  color: var(--text-main);
}
.contact-map-info h3 svg { color: var(--tomato-primary); flex-shrink: 0; }
.contact-map-info p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* Info panel */
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-hours-card,
.contact-delivery-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 24px;
}
.contact-hours-card h3,
.contact-delivery-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--text-main);
}
.contact-hours-card h3 svg,
.contact-delivery-card h3 svg { color: var(--tomato-primary); flex-shrink: 0; }

.contact-hours-list { display: flex; flex-direction: column; gap: 0; }
.contact-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}
.contact-hours-row:last-child { border-bottom: none; }
.contact-hours-day {
  font-size: 0.9rem;
  color: var(--text-main);
  font-weight: 600;
}
.contact-hours-time {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.contact-hours-open { color: var(--green-primary); }

.contact-delivery-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}
.contact-delivery-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--tomato-primary);
  transition: var(--transition);
}
.contact-delivery-link:hover { gap: 10px; }

.contact-producer-card {
  background: var(--text-main);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}
.contact-producer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.contact-producer-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}
.contact-producer-badges svg { color: var(--green-light); }

/* Email nowrap fix */
.contact-email-nowrap {
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  white-space: nowrap;
  font-size: 0.92rem !important;
}

/* Wholesale section */
.contact-wholesale {
  padding: 0 0 80px;
  background: var(--cream-1);
}
.wholesale-card {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
  padding: 36px 40px;
  background: linear-gradient(135deg, var(--cream-2) 0%, var(--green-soft) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}
.wholesale-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-primary);
  box-shadow: var(--shadow-sm);
}
.wholesale-content { flex: 1; }
.wholesale-content h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}
.wholesale-content p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}
.wholesale-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.wholesale-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition);
}
.wholesale-btn-email {
  background: var(--white);
  color: var(--text-main);
  border: 2px solid var(--border);
}
.wholesale-btn-email:hover {
  border-color: var(--tomato-primary);
  color: var(--tomato-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.wholesale-btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border: 2px solid #25D366;
}
.wholesale-btn-whatsapp:hover {
  background: #1EBE57;
  border-color: #1EBE57;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
  .contact-actions { grid-template-columns: 1fr; }
  .contact-details-grid { grid-template-columns: 1fr; }
  .contact-action-card { padding: 18px; }
  .contact-hero { padding: 120px 0 32px; }
  .wholesale-card { flex-direction: column; padding: 28px 24px; }
  .wholesale-actions { flex-direction: column; }
  .wholesale-btn { justify-content: center; }
  .contact-email-nowrap { font-size: 0.82rem !important; }
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.8rem; }
  .checkout-grid { grid-template-columns: 1fr; }
  .order-summary-panel { position: static; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero h1 { font-size: 2.4rem; }
  .hero-desc { margin: 0 auto 32px; }
  .hero-buttons { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-tomatoes { max-width: 340px; }
  .products-grid { gap: 16px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .cta-inner { flex-direction: column; text-align: center; }
  .section-title { font-size: 1.8rem; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cart-sidebar { width: 100%; }
  .producer-inner { flex-direction: column; text-align: center; }
  .producer-badges { justify-content: center; }
  .cart-page-footer { flex-direction: column; gap: 16px; text-align: center; }
  .lightbox-arrow { width: 40px; height: 40px; }
  .lightbox-arrow svg { width: 22px; height: 22px; }
  .legal-content { padding: 24px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .products-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .cart-page-item { flex-direction: column; text-align: center; }
}
