/* ===== VEGE WORLD – GLOBAL STYLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #1B8A3B;
  --green-dark: #146b2d;
  --green-light: #A5D6A7;
  --orange: #FF7A00;
  --orange-dark: #e06a00;
  --bg: #F9FBF9;
  --white: #ffffff;
  --text: #333333;
  --text-light: #666666;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 32px rgba(27,138,59,0.18);
  --radius: 16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.bg-light { background: #f0f7f0; }
.bg-green { background: linear-gradient(135deg, var(--green) 0%, #2ecc71 100%); }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 { font-size: 2rem; font-weight: 700; color: var(--text); }
.section-header.light h2 { color: #fff; }
.section-tag { display: inline-block; background: rgba(27,138,59,0.1); color: var(--green); font-size: 0.8rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 14px; border-radius: 20px; margin-bottom: 10px; }
.section-header.light .section-tag { background: rgba(255,255,255,0.2); color: #fff; }

/* ===== BUTTONS ===== */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: #fff; padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: 0.95rem; border: none; cursor: pointer; transition: all 0.3s; }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,122,0,0.35); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: #fff; padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: 0.95rem; border: 2px solid rgba(255,255,255,0.7); cursor: pointer; transition: all 0.3s; }
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.center-btn { text-align: center; margin-top: 40px; }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); box-shadow: 0 2px 20px rgba(0,0,0,0.08); transition: all 0.3s; }
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.12); }
.nav-container { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; max-width: 1300px; margin: 0 auto; gap: 16px; }
.logo { display: flex; align-items: center; }
.logo-img { height: 52px; width: auto; object-fit: contain; display: block; }
.footer-brand .logo-img { height: 48px; }
.nav-links { display: flex; gap: 8px; }
.nav-links a { padding: 8px 16px; border-radius: 8px; font-weight: 500; font-size: 0.9rem; color: var(--text); transition: all 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--green); background: rgba(27,138,59,0.08); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-email { font-size: 0.8rem; color: var(--text-light); display: flex; align-items: center; gap: 6px; }
.nav-email:hover { color: var(--green); }
.cart-btn { position: relative; font-size: 1.1rem; color: var(--text); padding: 8px; }
.cart-btn:hover { color: var(--green); }
.cart-count { position: absolute; top: 0; right: 0; background: var(--orange); color: #fff; font-size: 0.65rem; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.btn-login { background: var(--orange); color: #fff; padding: 9px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; transition: all 0.3s; }
.btn-login:hover { background: var(--orange-dark); }
.hamburger { display: none; background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--text); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 80px 80px;
  background: linear-gradient(135deg, #0d4f22 0%, #1B8A3B 45%, #25a84a 100%);
  position: relative;
  overflow: hidden;
  gap: 40px;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(255,122,0,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(165,214,167,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,122,0,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(165,214,167,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-leaves { position: absolute; inset: 0; pointer-events: none; }
.leaf { position: absolute; font-size: 2rem; opacity: 0.12; animation: floatLeaf 6s ease-in-out infinite; }
.leaf1 { top: 15%; left: 5%; animation-delay: 0s; font-size: 2.5rem; }
.leaf2 { top: 30%; left: 15%; animation-delay: 1s; }
.leaf3 { top: 60%; left: 8%; animation-delay: 2s; }
.leaf4 { top: 20%; right: 10%; animation-delay: 1.5s; }
.leaf5 { top: 70%; right: 5%; animation-delay: 0.5s; }
.leaf6 { top: 80%; left: 30%; animation-delay: 3s; font-size: 1.5rem; }
.leaf7 { top: 10%; right: 30%; animation-delay: 2.5s; font-size: 1.5rem; }
@keyframes floatLeaf { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-22px) rotate(18deg); } }

/* Hero content */
.hero-content { flex: 1; max-width: 580px; animation: fadeInUp 0.8s ease; position: relative; z-index: 1; }
.hero-tag-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.hero-dot { width: 10px; height: 10px; background: var(--orange); border-radius: 50%; box-shadow: 0 0 0 4px rgba(255,122,0,0.25); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(255,122,0,0.25); } 50% { box-shadow: 0 0 0 8px rgba(255,122,0,0.1); } }
.hero-tag { display: inline-block; background: rgba(255,255,255,0.15); color: #fff; font-size: 0.82rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 16px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.25); backdrop-filter: blur(8px); }
.hero-content h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 800; line-height: 1.15; color: #fff; margin-bottom: 18px; text-shadow: 0 2px 20px rgba(0,0,0,0.15); }
.hero-content h1 span { color: #FFD166; position: relative; }
.hero-content h1 span::after { content: ''; position: absolute; bottom: 2px; left: 0; right: 0; height: 3px; background: rgba(255,209,102,0.4); border-radius: 2px; }
.hero-sub { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 36px; max-width: 460px; line-height: 1.7; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.hero-content .btn-primary { background: var(--orange); box-shadow: 0 6px 24px rgba(255,122,0,0.4); }
.hero-content .btn-outline { border-color: rgba(255,255,255,0.6); color: #fff; }
.hero-content .btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

/* Hero stats */
.hero-stats { display: flex; align-items: center; gap: 0; background: rgba(255,255,255,0.1); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.2); border-radius: 16px; padding: 16px 24px; width: fit-content; }
.hero-stat { text-align: center; padding: 0 20px; }
.hero-stat strong { display: block; font-size: 1.4rem; font-weight: 800; color: #FFD166; line-height: 1; }
.hero-stat span { font-size: 0.75rem; color: rgba(255,255,255,0.75); margin-top: 3px; display: block; }
.hero-stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.2); flex-shrink: 0; }

/* Hero image */
.hero-image { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; position: relative; max-width: 500px; animation: fadeInRight 0.9s ease; z-index: 1; }
.hero-img-glow { position: absolute; width: 420px; height: 420px; background: radial-gradient(circle, rgba(255,209,102,0.2) 0%, transparent 70%); border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%); animation: glowPulse 3s ease-in-out infinite; pointer-events: none; }
@keyframes glowPulse { 0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.6; } 50% { transform: translate(-50%,-50%) scale(1.1); opacity: 1; } }

/* Badges row above image */
.hero-badges-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; position: relative; z-index: 2; }
.hero-badge-pill { background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.3); border-radius: 50px; padding: 8px 16px; font-size: 0.8rem; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 7px; white-space: nowrap; }
.hero-badge-pill i { color: #FFD166; font-size: 0.85rem; }

.hero-img-circle { width: 380px; height: 380px; border-radius: 50%; overflow: hidden; border: 5px solid rgba(255,255,255,0.2); box-shadow: 0 24px 80px rgba(0,0,0,0.3), 0 0 0 12px rgba(255,255,255,0.06); position: relative; z-index: 1; flex-shrink: 0; }
.hero-img-circle img { width: 100%; height: 100%; object-fit: cover; transition: transform 6s ease; }
.hero-img-circle:hover img { transform: scale(1.06); }

/* Floating product card below image */
.hero-floating-card { background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-radius: 14px; padding: 12px 18px; display: flex; align-items: center; gap: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.15); border: 1px solid rgba(255,255,255,0.8); min-width: 220px; position: relative; z-index: 2; animation: fadeInUp 1s ease 0.4s both; }
.hero-floating-card img { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.hero-floating-card strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text); }
.hero-floating-card span { font-size: 0.75rem; color: var(--green); font-weight: 500; }
.hero-floating-card i { color: var(--orange); font-size: 1.1rem; margin-left: auto; cursor: pointer; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }

/* Responsive hero */
@media (max-width: 1024px) {
  .hero { padding: 120px 40px 60px; }
  .hero-img-circle { width: 320px; height: 320px; }
  .hero-img-glow { width: 340px; height: 340px; }
}
@media (max-width: 768px) {
  .hero { flex-direction: column; text-align: center; padding: 100px 24px 60px; }
  .hero-tag-wrap { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-stats { flex-wrap: wrap; justify-content: center; width: 100%; }
  .hero-image { order: -1; }
  .hero-img-circle { width: 260px; height: 260px; }
  .hero-img-glow { width: 280px; height: 280px; }
  .hero-content h1 { font-size: 2rem; }
}

/* ===== SEARCH SECTION ===== */
.search-section { background: #fff; padding: 24px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.search-box { display: flex; gap: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1.5px solid #e0ede0; }
.store-select { display: flex; align-items: center; gap: 10px; padding: 0 20px; background: #f0f7f0; border-right: 1.5px solid #e0ede0; min-width: 220px; color: var(--green); }
.store-select select { border: none; background: transparent; font-family: 'Poppins', sans-serif; font-size: 0.9rem; color: var(--text); cursor: pointer; outline: none; }
.search-input { flex: 1; display: flex; align-items: center; gap: 12px; padding: 0 20px; background: #fff; }
.search-input i { color: var(--text-light); }
.search-input input { flex: 1; border: none; outline: none; font-family: 'Poppins', sans-serif; font-size: 0.95rem; color: var(--text); }
.btn-search { background: var(--green); color: #fff; border: none; padding: 16px 28px; font-family: 'Poppins', sans-serif; font-weight: 600; cursor: pointer; transition: background 0.3s; }
.btn-search:hover { background: var(--green-dark); }

/* ===== CATEGORIES ===== */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; }
.cat-card { background: #fff; border-radius: var(--radius); padding: 28px 20px; text-align: center; box-shadow: var(--shadow); transition: all 0.3s; border: 2px solid transparent; }
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--green-light); }
.cat-icon { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; margin: 0 auto 14px; border: 3px solid rgba(27,138,59,0.12); transition: transform 0.3s; }
.cat-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-card:hover .cat-icon { transform: scale(1.08); }
.cat-card h3 { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.cat-card p { font-size: 0.8rem; color: var(--text-light); }

/* ===== PRODUCT CARDS ===== */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.product-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: all 0.3s; position: relative; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.product-badge { position: absolute; top: 12px; left: 12px; background: var(--green); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; z-index: 1; }
.product-badge.sale { background: var(--orange); }
.product-img { height: 200px; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-info { padding: 16px; }
.product-store { font-size: 0.75rem; color: var(--text-light); display: flex; align-items: center; gap: 5px; margin-bottom: 6px; }
.product-info h4 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.stock { font-size: 0.75rem; font-weight: 500; display: flex; align-items: center; gap: 5px; margin-bottom: 8px; }
.in-stock { color: var(--green); }
.out-stock { color: #e53935; }
.stock i { font-size: 0.5rem; }
.product-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 12px; }
.price { font-size: 1.2rem; font-weight: 700; color: var(--green); }
.old-price { font-size: 0.85rem; color: var(--text-light); text-decoration: line-through; }
.unit { font-size: 0.8rem; color: var(--text-light); }
.btn-cart { width: 100%; background: var(--green); color: #fff; border: none; padding: 10px; border-radius: var(--radius-sm); font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.85rem; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-cart:hover:not(:disabled) { background: var(--green-dark); }
.btn-cart:disabled { background: #ccc; cursor: not-allowed; }

/* ===== STORES ===== */
.stores-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.store-card { background: #fff; border-radius: var(--radius); padding: 28px 20px; text-align: center; box-shadow: var(--shadow); transition: all 0.3s; }
.store-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.store-card.light { background: rgba(255,255,255,0.15); color: #fff; }
.store-card.light h4, .store-card.light p { color: #fff; }
.store-icon { width: 56px; height: 56px; background: rgba(27,138,59,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 1.4rem; color: var(--green); }
.store-card.light .store-icon { background: rgba(255,255,255,0.2); color: #fff; }
.store-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.store-card p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 4px; }
.store-dist { font-size: 0.8rem; color: var(--green); font-weight: 500; display: block; margin-bottom: 14px; }
.btn-store { display: inline-block; background: var(--green); color: #fff; padding: 8px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; transition: all 0.3s; }
.btn-store:hover { background: var(--green-dark); }

/* ===== WHY CHOOSE US ===== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; }
.why-card { background: rgba(255,255,255,0.12); border-radius: var(--radius); padding: 28px 20px; text-align: center; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2); transition: all 0.3s; }
.why-card:hover { background: rgba(255,255,255,0.2); transform: translateY(-4px); }
.why-icon { width: 60px; height: 60px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 1.5rem; color: #fff; }
.why-card h4 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { color: rgba(255,255,255,0.85); font-size: 0.85rem; }

/* ===== MEMBERSHIP PLANS ===== */
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.plans-grid.four-col { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.plan-card { background: #fff; border-radius: var(--radius); padding: 32px 24px; text-align: center; box-shadow: var(--shadow); transition: all 0.3s; position: relative; border: 2px solid transparent; }
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--green-light); }
.plan-card.popular { border-color: var(--green); }
.plan-card.gold { border-color: #FFD700; }
.popular-tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--green); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 4px 16px; border-radius: 20px; white-space: nowrap; }
.plan-icon { font-size: 2rem; color: var(--green); margin-bottom: 12px; }
.plan-card.gold .plan-icon { color: #FFD700; }
.plan-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.plan-price { font-size: 2rem; font-weight: 800; color: var(--green); margin-bottom: 4px; }
.plan-price span { font-size: 0.9rem; font-weight: 400; color: var(--text-light); }
.plan-save { font-size: 0.78rem; color: var(--orange); font-weight: 600; margin-bottom: 16px; }
.plan-card ul { text-align: left; margin-bottom: 24px; }
.plan-card ul li { font-size: 0.85rem; padding: 5px 0; display: flex; align-items: center; gap: 8px; color: var(--text); }
.plan-card ul li.disabled { color: #bbb; }
.plan-card ul li i.fa-check { color: var(--green); }
.plan-card ul li i.fa-times { color: #ddd; }
.btn-plan { display: inline-block; background: var(--green); color: #fff; padding: 10px 28px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; transition: all 0.3s; }
.btn-plan:hover { background: var(--green-dark); transform: translateY(-2px); }
.plan-card.popular .btn-plan { background: var(--orange); }
.plan-card.popular .btn-plan:hover { background: var(--orange-dark); }

/* ===== PLANS TABLE ===== */
.plans-table-wrap { overflow-x: auto; }
.plans-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.plans-table th, .plans-table td { padding: 16px 20px; text-align: center; border-bottom: 1px solid #f0f0f0; font-size: 0.9rem; }
.plans-table th { background: var(--green); color: #fff; font-weight: 700; }
.plans-table th:first-child { text-align: left; }
.plans-table td:first-child { text-align: left; font-weight: 500; }
.plans-table .highlight-col { background: rgba(27,138,59,0.06); }
.plans-table th.highlight-col { background: var(--green-dark); }
.plans-table tr:last-child td { border-bottom: none; }
.plans-table tr:hover td { background: #f9fbf9; }
.plans-table tr:hover td.highlight-col { background: rgba(27,138,59,0.1); }
.green { color: var(--green); }
.red { color: #e53935; }
.plans-table th span { display: block; font-size: 0.85rem; font-weight: 400; opacity: 0.9; margin-top: 2px; }

/* ===== OFFERS ===== */
.offers-banner { display: flex; align-items: center; gap: 40px; background: linear-gradient(135deg, var(--orange) 0%, #ff9a3c 100%); border-radius: var(--radius); padding: 48px 48px; overflow: hidden; position: relative; }
.offer-text { flex: 1; color: #fff; }
.offer-tag { font-size: 0.8rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.9; margin-bottom: 8px; }
.offer-text h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; }
.offer-text p { opacity: 0.9; margin-bottom: 24px; }
.offer-text .btn-primary { background: #fff; color: var(--orange); }
.offer-text .btn-primary:hover { background: #fff3e0; }
.offer-image { flex: 0 0 280px; border-radius: var(--radius); overflow: hidden; }
.offer-image img { width: 100%; height: 200px; object-fit: cover; }

/* ===== TESTIMONIALS ===== */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testi-card { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); transition: all 0.3s; }
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.testi-stars { color: #FFB800; font-size: 1.1rem; margin-bottom: 12px; }
.testi-card p { font-size: 0.9rem; color: var(--text-light); font-style: italic; margin-bottom: 20px; line-height: 1.7; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--green), #2ecc71); color: #fff; font-size: 1.1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testi-author strong { display: block; font-size: 0.9rem; }
.testi-author span { font-size: 0.78rem; color: var(--text-light); }

/* ===== HOW IT WORKS ===== */
.steps-grid { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; }
.step-card { background: #fff; border-radius: var(--radius); padding: 28px 20px; text-align: center; box-shadow: var(--shadow); flex: 1; min-width: 160px; max-width: 200px; transition: all 0.3s; }
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.step-num { font-size: 2rem; font-weight: 800; color: rgba(27,138,59,0.12); line-height: 1; margin-bottom: 8px; }
.step-icon { font-size: 1.8rem; color: var(--green); margin-bottom: 10px; }
.step-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.step-card p { font-size: 0.8rem; color: var(--text-light); }
.step-arrow { font-size: 1.2rem; color: var(--green-light); flex-shrink: 0; }

/* ===== NEWSLETTER ===== */
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.newsletter-text h2 { color: #fff; font-size: 1.6rem; font-weight: 700; margin-bottom: 6px; }
.newsletter-text p { color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.newsletter-form { display: flex; gap: 0; border-radius: 50px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.15); flex: 1; max-width: 480px; }
.newsletter-form input { flex: 1; border: none; padding: 14px 24px; font-family: 'Poppins', sans-serif; font-size: 0.9rem; outline: none; }
.newsletter-form .btn-primary { border-radius: 0; padding: 14px 24px; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-item i { font-size: 1.2rem; color: var(--green); margin-top: 3px; flex-shrink: 0; }
.contact-item h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.contact-item p { font-size: 0.85rem; color: var(--text-light); }
.map-embed iframe { width: 100%; height: 280px; border: none; border-radius: var(--radius); }
.contact-form h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 20px; color: var(--text); }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: 12px 16px; border: 1.5px solid #e0ede0; border-radius: var(--radius-sm); font-family: 'Poppins', sans-serif; font-size: 0.9rem; color: var(--text); background: #fff; margin-bottom: 14px; outline: none; transition: border-color 0.3s; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--green); }
.contact-form textarea { resize: vertical; }

/* ===== PAGE HERO ===== */
.page-hero { position: relative; background: linear-gradient(135deg, var(--green) 0%, #2ecc71 100%); padding: 140px 20px 80px; text-align: center; overflow: hidden; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(27,138,59,0.82) 0%, rgba(20,107,45,0.75) 100%); z-index: 0; }
.page-hero-content { position: relative; z-index: 1; }
.page-hero-content h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.page-hero-content p { color: rgba(255,255,255,0.88); font-size: 1rem; max-width: 500px; margin: 0 auto; }
.page-hero .section-tag { background: rgba(255,255,255,0.2); color: #fff; }

/* ===== ABOUT PAGE ===== */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-image { position: relative; }
.story-image img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.story-badge { position: absolute; bottom: -16px; right: -16px; background: var(--orange); color: #fff; padding: 16px 20px; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.9rem; box-shadow: var(--shadow); }
.story-text h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 16px; }
.story-text p { color: var(--text-light); margin-bottom: 14px; font-size: 0.95rem; }
.story-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 28px; }
.stat { text-align: center; background: #f0f7f0; border-radius: var(--radius-sm); padding: 16px 8px; }
.stat h3 { font-size: 1.5rem; font-weight: 800; color: var(--green); }
.stat p { font-size: 0.78rem; color: var(--text-light); }
.mv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.mv-card { background: #fff; border-radius: var(--radius); padding: 32px 24px; text-align: center; box-shadow: var(--shadow); transition: all 0.3s; }
.mv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.mv-icon { width: 64px; height: 64px; background: rgba(27,138,59,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.6rem; color: var(--green); }
.mv-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.mv-card p { font-size: 0.88rem; color: var(--text-light); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; }
.team-card { background: #fff; border-radius: var(--radius); padding: 24px; text-align: center; box-shadow: var(--shadow); transition: all 0.3s; }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.team-card img { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; margin: 0 auto 14px; border: 3px solid var(--green-light); }
.team-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.team-card p { font-size: 0.8rem; color: var(--text-light); }

/* ===== PRODUCTS PAGE ===== */
.products-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
.filters-sidebar { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); position: sticky; top: 90px; }
.filters-sidebar h3 { font-size: 1rem; font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; color: var(--green); }
.filter-group { margin-bottom: 24px; border-bottom: 1px solid #f0f0f0; padding-bottom: 20px; }
.filter-group:last-of-type { border-bottom: none; }
.filter-group h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 10px; color: var(--text); text-transform: uppercase; letter-spacing: 0.5px; }
.filter-group label { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-light); margin-bottom: 6px; cursor: pointer; }
.filter-group label:hover { color: var(--green); }
.filter-group input[type="range"] { width: 100%; accent-color: var(--green); }
.filter-group p { font-size: 0.82rem; color: var(--text-light); margin-top: 4px; }
.products-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.results-count { font-size: 0.9rem; color: var(--text-light); }
.toolbar-right { display: flex; align-items: center; gap: 12px; }
.sort-select { padding: 8px 14px; border: 1.5px solid #e0ede0; border-radius: var(--radius-sm); font-family: 'Poppins', sans-serif; font-size: 0.85rem; outline: none; cursor: pointer; }
.view-toggle { display: flex; gap: 4px; }
.view-btn { background: #f0f7f0; border: none; padding: 8px 12px; border-radius: var(--radius-sm); cursor: pointer; color: var(--text-light); transition: all 0.2s; }
.view-btn.active { background: var(--green); color: #fff; }
.store-map-grid { display: flex; gap: 32px; flex-wrap: wrap; }
.stores-list { flex: 1; min-width: 260px; display: flex; flex-direction: column; gap: 12px; }
.store-list-item { display: flex; align-items: flex-start; gap: 14px; background: #fff; border-radius: var(--radius-sm); padding: 14px 16px; box-shadow: var(--shadow); }
.store-list-item i { color: var(--green); font-size: 1.1rem; margin-top: 2px; }
.store-list-item strong { font-size: 0.9rem; display: block; margin-bottom: 2px; }
.store-list-item p { font-size: 0.8rem; color: var(--text-light); margin: 0; }

/* ===== MEMBERSHIP PAGE ===== */
.join-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.join-text h2 { margin-bottom: 12px; }
.join-perks { margin-top: 20px; }
.join-perks li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.9); font-size: 0.9rem; margin-bottom: 10px; }
.join-perks li i { color: #A5D6A7; }
.join-form { background: #fff; border-radius: var(--radius); padding: 36px 32px; box-shadow: 0 8px 40px rgba(0,0,0,0.15); }
.join-form h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 20px; color: var(--text); }

/* ===== FOOTER ===== */
.footer { background: #1a2e1a; color: rgba(255,255,255,0.8); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: all 0.3s; }
.social-links a:hover { background: var(--green); color: #fff; }
.footer-links h4, .footer-contact h4 { color: #fff; font-size: 0.95rem; font-weight: 700; margin-bottom: 16px; }
.footer-links ul li { margin-bottom: 8px; }
.footer-links ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links ul li a:hover { color: var(--green-light); }
.footer-contact p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.footer-contact p i { color: var(--green-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { padding: 120px 40px 60px; }
  .hero-img-circle { width: 300px; height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .products-layout { grid-template-columns: 220px 1fr; }
  .story-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 16px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-email { display: none; }
  .hamburger { display: block; }
  .hero { flex-direction: column; text-align: center; padding: 100px 24px 60px; }
  .hero-btns { justify-content: center; }
  .hero-image { order: -1; }
  .hero-img-circle { width: 240px; height: 240px; }
  .badge1, .badge2 { display: none; }
  .search-box { flex-direction: column; border-radius: var(--radius); }
  .store-select { border-right: none; border-bottom: 1.5px solid #e0ede0; padding: 14px 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .story-stats { grid-template-columns: repeat(2, 1fr); }
  .products-layout { grid-template-columns: 1fr; }
  .filters-sidebar { position: static; }
  .join-grid { grid-template-columns: 1fr; }
  .offers-banner { flex-direction: column; padding: 32px 24px; }
  .offer-image { flex: none; width: 100%; }
  .steps-grid { gap: 16px; }
  .step-arrow { transform: rotate(90deg); }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .plans-table { font-size: 0.8rem; }
  .plans-table th, .plans-table td { padding: 10px 12px; }
}

@media (max-width: 480px) {
  .section-pad { padding: 56px 0; }
  .hero-content h1 { font-size: 1.8rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .plans-grid.four-col { grid-template-columns: 1fr; }
  .story-stats { grid-template-columns: repeat(2, 1fr); }
  .nav-right .btn-login { display: none; }
}

/* ===== QTY CONTROL ===== */
.product-actions { display: flex; flex-direction: column; gap: 8px; }
.qty-control { display: flex; align-items: center; gap: 0; border: 1.5px solid #e0ede0; border-radius: var(--radius-sm); overflow: hidden; }
.qty-control button { background: #f0f7f0; border: none; width: 34px; height: 34px; font-size: 1rem; cursor: pointer; color: var(--green); font-weight: 700; transition: background 0.2s; }
.qty-control button:hover { background: var(--green-light); }
.qty-control .qty { flex: 1; text-align: center; font-weight: 600; font-size: 0.9rem; padding: 0 8px; }
.btn-notify { background: #f0f7f0; color: var(--green); border: 1.5px solid var(--green-light); }
.btn-notify:hover { background: var(--green-light); }

/* ===== STORE TABS ===== */
.store-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.store-tab { background: #fff; border: 1.5px solid #e0ede0; border-radius: 50px; padding: 10px 22px; font-family: 'Poppins', sans-serif; font-size: 0.88rem; font-weight: 600; cursor: pointer; color: var(--text-light); transition: all 0.25s; display: flex; align-items: center; gap: 7px; }
.store-tab:hover { border-color: var(--green); color: var(--green); }
.store-tab.active { background: var(--green); border-color: var(--green); color: #fff; }

/* ===== STORE DETAIL ===== */
.store-detail { display: none; }
.store-detail.active { display: block; animation: fadeInUp 0.4s ease; }
.store-detail-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 32px; align-items: start; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.store-detail-info { padding: 32px; }
.store-detail-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.store-icon-lg { width: 56px; height: 56px; background: rgba(27,138,59,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--green); flex-shrink: 0; }
.store-detail-header h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.store-status { font-size: 0.78rem; font-weight: 600; display: flex; align-items: center; gap: 5px; }
.store-status.open { color: var(--green); }
.store-status i { font-size: 0.5rem; }
.store-detail-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.store-detail-item { display: flex; gap: 14px; align-items: flex-start; }
.store-detail-item i { color: var(--green); font-size: 1rem; margin-top: 3px; flex-shrink: 0; width: 18px; }
.store-detail-item strong { display: block; font-size: 0.82rem; font-weight: 700; margin-bottom: 2px; }
.store-detail-item p { font-size: 0.82rem; color: var(--text-light); margin: 0; }
.store-map iframe { width: 100%; height: 380px; border: none; display: block; }

/* ===== CART TOAST ===== */
.cart-toast { position: fixed; bottom: 28px; right: 28px; background: var(--green); color: #fff; padding: 14px 22px; border-radius: 50px; font-size: 0.9rem; font-weight: 600; display: flex; align-items: center; gap: 10px; box-shadow: 0 6px 24px rgba(27,138,59,0.35); transform: translateY(80px); opacity: 0; transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1); z-index: 9999; pointer-events: none; }
.cart-toast.show { transform: translateY(0); opacity: 1; }

/* ===== RESPONSIVE STORE DETAIL ===== */
@media (max-width: 768px) {
  .store-detail-grid { grid-template-columns: 1fr; }
  .store-map iframe { height: 260px; }
  .store-tabs { gap: 6px; }
  .store-tab { padding: 8px 14px; font-size: 0.8rem; }
}

/* ===== STORE ADDRESS CARDS ===== */
.addr-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.addr-card { background: #fff; border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow); border-top: 4px solid var(--green); transition: all 0.3s; display: flex; flex-direction: column; gap: 14px; }
.addr-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.addr-icon { width: 52px; height: 52px; background: rgba(27,138,59,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--green); }
.addr-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--text); }
.addr-card ul { list-style: none; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.addr-card ul li { font-size: 0.83rem; color: var(--text-light); display: flex; align-items: flex-start; gap: 9px; line-height: 1.5; }
.addr-card ul li i { color: var(--green); font-size: 0.8rem; margin-top: 3px; flex-shrink: 0; width: 14px; }
.addr-card .btn-store { align-self: flex-start; margin-top: 4px; display: inline-flex; align-items: center; gap: 7px; cursor: pointer; border: none; font-family: 'Poppins', sans-serif; font-size: 0.85rem; }
