/* =============================================
   GENZZI FOOD — Premium Stylesheet
   Fonts: Playfair Display + DM Sans
   Palette: Forest Green + Warm Orange + Cream
============================================= */

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

:root {
  --green:       #2D6A2D;
  --green-dark:  #1a4a1a;
  --green-light: #4a8c3f;
  --orange:      #E8620A;
  --orange-light:#FF9900;
  --cream:       #FDF8F0;
  --cream-dark:  #F5EDD8;
  --text:        #1C1C1C;
  --text-muted:  #666;
  --white:       #FFFFFF;
  --border:      #E0D5C5;
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.14);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 600; cursor: pointer; border: none;
  transition: var(--transition); text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: var(--orange); color: var(--white);
  box-shadow: 0 4px 16px rgba(232,98,10,0.35);
}
.btn-primary:hover { background: #c4520a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,98,10,0.45); }
.btn-outline {
  background: transparent; color: var(--green); border: 2px solid var(--green);
}
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-green { background: var(--green); color: var(--white); box-shadow: 0 4px 16px rgba(45,106,45,0.3); }
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-whatsapp { background: #25D366; color: white; }
.btn-whatsapp:hover { background: #1da851; }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 18px 40px; font-size: 17px; }
.btn-block { width: 100%; justify-content: center; border-radius: var(--radius); }

/* Amazon CTA */
.btn-amazon {
  background: linear-gradient(135deg, #FF9900, #e88800);
  color: #111; font-weight: 700;
  box-shadow: 0 4px 16px rgba(255,153,0,0.4);
}
.btn-amazon:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,153,0,0.5); }
.btn-amazon svg { width: 20px; height: 20px; }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.logo-link { display: flex; align-items: center; }
.logo-img { height: 52px; width: auto; object-fit: contain; }

.main-nav { display: flex; gap: 32px; align-items: center; }
.main-nav a {
  font-size: 15px; font-weight: 500; color: var(--text);
  position: relative; padding-bottom: 3px; transition: color var(--transition);
}
.main-nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--green);
  transition: width var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--green); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ---- Hero Section ---- */
.hero {
  background: linear-gradient(135deg, #0f2e0f 0%, #1e5c1e 45%, #2D6A2D 100%);
  color: var(--white); padding: 80px 0 60px; position: relative; overflow: hidden;
}
.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='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }
.hero-badge {
  display: inline-block; background: rgba(232,98,10,0.2); color: #ffb347;
  border: 1px solid rgba(232,98,10,0.4); padding: 6px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 16px; color: var(--white); }
.hero h1 span { color: #8fce5a; }
.hero p { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 32px; max-width: 460px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image { position: relative; }
.hero-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }
.hero-image-badge {
  position: absolute; top: -16px; right: -16px;
  background: var(--orange); color: white; padding: 10px 14px;
  border-radius: var(--radius); font-size: 12px; font-weight: 700;
  text-align: center; line-height: 1.3; box-shadow: var(--shadow);
}

/* Trust Badges */
.trust-bar { background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 18px 0; }
.trust-items { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--green-dark); }
.trust-item span.icon { font-size: 18px; }

/* ---- Section Styles ---- */
.section { padding: 80px 0; }
.section-alt { background: var(--cream); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .label {
  display: inline-block; background: rgba(45,106,45,0.1); color: var(--green);
  padding: 5px 14px; border-radius: 50px; font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px;
}
.section-header h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); color: var(--text); margin-bottom: 12px; }
.section-header p { color: var(--text-muted); font-size: 16px; max-width: 520px; margin: 0 auto; }

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

.product-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  transition: var(--transition); position: relative;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.card-image-wrap { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--cream); }
.card-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .card-image-wrap img { transform: scale(1.06); }
.card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--orange); color: white;
  padding: 4px 12px; border-radius: 50px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.card-category { font-size: 11px; color: var(--green); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.card-title { font-family: 'Playfair Display', serif; font-size: 17px; margin-bottom: 6px; line-height: 1.3; }
.card-weight { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.card-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 14px; flex: 1; line-height: 1.5; }
.card-price { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.price-current { font-size: 20px; font-weight: 700; color: var(--green-dark); }
.price-original { font-size: 14px; color: var(--text-muted); text-decoration: line-through; }
.price-save { font-size: 12px; background: #e8f5e9; color: var(--green); padding: 2px 8px; border-radius: 50px; font-weight: 600; }

.card-actions { display: flex; gap: 8px; }
.card-actions .btn { flex: 1; font-size: 13px; padding: 10px 14px; }

/* ---- Product Detail Page ---- */
.product-detail { padding: 60px 0; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--text-muted); margin-bottom: 32px; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: var(--text-muted); }

.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.product-image-main {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); background: var(--cream);
  aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center;
}
.product-image-main img { width: 100%; height: 100%; object-fit: cover; }

.product-info .category-tag {
  display: inline-block; background: rgba(45,106,45,0.1); color: var(--green);
  padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;
}
.product-info h1 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 6px; }
.product-info .subtitle { font-size: 16px; color: var(--text-muted); margin-bottom: 6px; }
.product-info .weight-tag { font-size: 13px; font-weight: 600; color: var(--green); margin-bottom: 16px; }

.product-stars { display: flex; gap: 3px; margin-bottom: 4px; }
.product-stars .star { color: #f59e0b; font-size: 18px; }
.rating-count { font-size: 13px; color: var(--text-muted); }

.product-price-wrap { margin: 20px 0; display: flex; align-items: center; gap: 14px; }
.product-price { font-size: 34px; font-weight: 700; color: var(--green-dark); font-family: 'DM Sans', sans-serif; }
.product-price-original { font-size: 20px; color: var(--text-muted); text-decoration: line-through; }
.product-save-badge {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9); color: var(--green-dark);
  padding: 4px 14px; border-radius: 50px; font-size: 13px; font-weight: 700;
}

.product-short-desc { font-size: 15px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }

.product-cta-box { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.product-cta-box .btn { flex: 1; min-width: 160px; justify-content: center; }

.product-trust { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.trust-pill {
  display: flex; align-items: center; gap: 6px;
  background: var(--cream); border: 1px solid var(--border);
  padding: 7px 14px; border-radius: 50px; font-size: 12px; font-weight: 600; color: var(--green-dark);
}

/* Tabs */
.product-tabs { margin-top: 16px; }
.tab-buttons { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 24px; overflow-x: auto; }
.tab-btn {
  padding: 12px 20px; background: none; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--text-muted); border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: var(--transition); white-space: nowrap;
}
.tab-btn.active { color: var(--green); border-bottom-color: var(--green); }
.tab-panel { display: none; animation: fadeIn 0.3s ease; }
.tab-panel.active { display: block; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.benefits-list { list-style: none; }
.benefits-list li {
  display: flex; align-items: flex-start; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid var(--border); font-size: 15px;
}
.benefits-list li:last-child { border-bottom: none; }
.benefits-list li::before {
  content: '✓'; width: 22px; height: 22px; background: var(--green);
  color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}

.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.feature-pill {
  display: flex; align-items: center; gap: 8px;
  background: var(--cream); border: 1px solid var(--border);
  padding: 12px 16px; border-radius: var(--radius); font-size: 14px; font-weight: 500;
}
.feature-pill::before { content: '🌿'; font-size: 16px; }

.usage-steps { display: flex; flex-direction: column; gap: 16px; }
.usage-step { display: flex; gap: 16px; align-items: flex-start; padding: 16px; background: var(--cream); border-radius: var(--radius); border: 1px solid var(--border); }
.usage-step-num {
  width: 32px; height: 32px; background: var(--green); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.usage-step h5 { font-size: 15px; margin-bottom: 4px; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.usage-step p { font-size: 14px; color: var(--text-muted); }

/* ---- Reviews ---- */
.reviews-section { padding: 60px 0; background: var(--cream); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.review-card {
  background: var(--white); border-radius: var(--radius); padding: 24px;
  border: 1px solid var(--border); position: relative;
}
.review-card::before {
  content: '"'; position: absolute; top: 10px; right: 20px;
  font-size: 60px; color: var(--green); opacity: 0.1; font-family: 'Playfair Display', serif; line-height: 1;
}
.review-stars { display: flex; gap: 2px; margin-bottom: 10px; }
.review-stars .star { color: #f59e0b; font-size: 15px; }
.review-text { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 14px;
}
.review-name { font-size: 14px; font-weight: 600; }
.review-date { font-size: 12px; color: var(--text-muted); }
.verified-badge { display: inline-flex; align-items: center; gap: 3px; font-size: 11px; color: var(--green); font-weight: 600; background: rgba(45,106,45,0.08); padding: 2px 7px; border-radius: 50px; margin-top: 2px; }

/* ---- Shop Page ---- */
.shop-header { background: linear-gradient(135deg, var(--green-dark), var(--green)); color: white; padding: 50px 0 40px; text-align: center; }
.shop-header h1 { color: white; font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 10px; }
.shop-header p { color: rgba(255,255,255,0.8); }

.filter-bar { padding: 24px 0; border-bottom: 1px solid var(--border); margin-bottom: 36px; }
.filter-items { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-btn { padding: 8px 20px; border: 2px solid var(--border); border-radius: 50px; background: none; cursor: pointer; font-size: 13px; font-weight: 600; font-family: 'DM Sans', sans-serif; transition: var(--transition); color: var(--text-muted); }
.filter-btn:hover, .filter-btn.active { border-color: var(--green); color: var(--green); background: rgba(45,106,45,0.06); }

/* ---- About Page ---- */
.about-hero { background: linear-gradient(135deg, var(--green-dark), var(--green)); color: white; padding: 70px 0; }
.about-hero h1 { color: white; font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 16px; }
.about-hero p { color: rgba(255,255,255,0.85); font-size: 17px; max-width: 600px; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 16px; }
.about-text p { color: var(--text-muted); font-size: 15px; line-height: 1.8; margin-bottom: 14px; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; margin-top: 48px; }
.value-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; transition: var(--transition); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-icon { font-size: 36px; margin-bottom: 14px; }
.value-card h4 { font-size: 16px; margin-bottom: 8px; }
.value-card p { font-size: 13px; color: var(--text-muted); }

/* ---- Contact Page ---- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; }
.contact-info h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 16px; }
.contact-info p { color: var(--text-muted); margin-bottom: 28px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-item .icon { width: 44px; height: 44px; background: rgba(45,106,45,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-item h5 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.contact-item p { font-size: 14px; color: var(--text-muted); margin: 0; }

.contact-form { background: var(--cream); border-radius: var(--radius-lg); padding: 36px; border: 1px solid var(--border); }
.contact-form h3 { font-size: 1.4rem; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--green-dark); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: 'DM Sans', sans-serif; font-size: 15px;
  background: var(--white); transition: border-color var(--transition); color: var(--text);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--green); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-success { background: #e8f5e9; border: 1px solid #a5d6a7; color: var(--green-dark); padding: 14px 18px; border-radius: var(--radius); font-size: 14px; font-weight: 500; display: none; margin-bottom: 16px; }

/* ---- Floating Buy Button (mobile) ---- */
.float-buy-btn {
  display: none; position: fixed; bottom: 80px; left: 0; right: 0; z-index: 900; padding: 0 16px;
}
.float-buy-btn a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 16px; background: var(--orange); color: white;
  border-radius: var(--radius-lg); font-size: 16px; font-weight: 700;
  box-shadow: 0 8px 32px rgba(232,98,10,0.5); text-decoration: none;
}

/* ---- WhatsApp Float ---- */
.float-whatsapp {
  position: fixed; bottom: 24px; right: 20px; z-index: 999;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5); transition: var(--transition);
}
.float-whatsapp:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.6); }

/* ---- Related Products ---- */
.related-section { padding: 60px 0; }

/* ---- Footer ---- */
.site-footer { background: var(--green-dark); color: rgba(255,255,255,0.85); padding: 60px 0 0; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 48px; }
.footer-logo { height: 56px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.7); max-width: 260px; }
.social-links { display: flex; gap: 10px; margin-top: 16px; }
.social-links a { width: 38px; height: 38px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.social-links a:hover { background: var(--orange); }
.footer-col h4 { font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; font-size: 14px; color: rgba(255,255,255,0.75); }
.footer-col ul li a { transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--orange-light); }
.amazon-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,153,0,0.15); border: 1px solid rgba(255,153,0,0.3); padding: 8px 14px; border-radius: 50px; font-size: 13px; font-weight: 600; color: #FF9900; margin-top: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.amazon-disclaimer { font-size: 11px !important; }

/* ---- Misc ---- */
.page-hero { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%); color: white; padding: 56px 0; }
.page-hero h1 { color: white; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 16px; }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag { padding: 5px 14px; background: rgba(45,106,45,0.1); color: var(--green); border-radius: 50px; font-size: 12px; font-weight: 600; }

/* =============================================
   RESPONSIVE — MOBILE FIRST
============================================= */
@media (max-width: 900px) {
  .hero-inner, .about-grid, .product-layout, .contact-layout { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding: 50px 0 40px; }
  .hero-image { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .float-buy-btn { display: block; }
  .float-whatsapp { bottom: 88px; }
}

@media (max-width: 640px) {
  .main-nav { display: none; position: fixed; inset: 70px 0 0 0; background: white; flex-direction: column; padding: 32px 24px; gap: 0; z-index: 999; border-top: 1px solid var(--border); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 16px 0; border-bottom: 1px solid var(--border); font-size: 17px; }
  .hamburger { display: flex; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 50px 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .product-cta-box { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .trust-items { gap: 16px; }
  .filter-items { gap: 6px; }
  .card-body { padding: 14px; }
}

@media (max-width: 380px) {
  .products-grid { grid-template-columns: 1fr; }
}
