/*
Theme Name: HayGrocer
Theme URI: https://haygrocer.com
Author: HayGrocer
Author URI: https://haygrocer.com
Description: Custom theme for HayGrocer — Your Everyday Essentials, Elevated
Version: 1.9.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: haygrocer
*/

/* ===================== DESIGN TOKENS ===================== */
:root {
  --bg: #f6f5f0;
  --white: #ffffff;
  --lime: #c8e64e;
  --lime-dark: #a8c63a;
  --forest: #1b3a2d;
  --dark: #141414;
  --text: #2b2b2b;
  --text-light: #7a7a72;
  --border: #e5e3db;
  --peach: #f4a983;
  --sky: #7ec8e3;
  --lavender: #b8a9c9;
  --warm: #e8c97a;
  --card-shadow: 0 8px 40px rgba(0,0,0,0.06);
  --transition: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===================== RESET / BASE ===================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--lime); color: var(--forest); }
.container { max-width: 1300px; margin: 0 auto; padding: 0 32px; }

/* ===================== NAVBAR ===================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  background: rgba(246, 245, 240, 0.9);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s var(--transition);
}
nav.scrolled { padding: 12px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.04); }
nav .container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
  width: 38px; height: 38px; background: var(--lime); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transform: rotate(-6deg); transition: transform 0.4s var(--transition);
}
.logo:hover .logo-icon { transform: rotate(0deg) scale(1.05); }
.logo-text {
  font-family: "Syne", sans-serif; font-size: 1.35rem; font-weight: 700;
  color: var(--dark); letter-spacing: -0.5px;
}
.logo-text span { color: var(--forest); }
.nav-center { display: flex; gap: 36px; list-style: none; }
.nav-center a {
  font-size: 0.88rem; font-weight: 500; color: var(--text-light);
  text-decoration: none; transition: color 0.3s; position: relative;
}
.nav-center a:hover, .nav-center a.active { color: var(--dark); }
.nav-center a::after {
  content: ""; position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--lime); border-radius: 2px;
  transition: width 0.3s var(--transition);
}
.nav-center a:hover::after, .nav-center a.active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-search {
  width: 200px; padding: 10px 16px; border: 1px solid var(--border); border-radius: 50px;
  background: var(--white); font-family: "DM Sans", sans-serif; font-size: 0.82rem;
  color: var(--text); outline: none; transition: all 0.3s;
}
.nav-search::placeholder { color: var(--text-light); }
.nav-search:focus { border-color: var(--lime); box-shadow: 0 0 0 3px rgba(200,230,78,0.2); }
.nav-cart {
  width: 42px; height: 42px; border-radius: 50%; background: var(--forest);
  color: var(--white); border: none; cursor: pointer; display: flex;
  align-items: center; justify-content: center; font-size: 1rem;
  position: relative; transition: all 0.3s;
}
.nav-cart:hover { background: var(--dark); transform: scale(1.05); }
.nav-cart-badge {
  position: absolute; top: -3px; right: -3px; width: 18px; height: 18px;
  border-radius: 50%; background: var(--lime); color: var(--forest);
  font-size: 0.6rem; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.hamburger span { width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; }

/* ===================== NAV DROPDOWN ===================== */
.nav-dropdown { position: relative; }
.dropdown-arrow { font-size: 0.65rem; margin-left: 2px; transition: transform 0.3s; }
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 220px; background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 12px 0; box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  opacity: 0; visibility: hidden; transition: all 0.3s var(--transition);
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block; padding: 10px 24px; font-size: 0.85rem; font-weight: 500;
  color: var(--text-light); text-decoration: none; transition: all 0.2s;
}
.nav-dropdown-menu a:hover { background: rgba(200,230,78,0.1); color: var(--forest); }
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu .view-all-link {
  border-top: 1px solid var(--border); margin-top: 8px; padding-top: 14px;
  font-weight: 600; color: var(--forest);
}

/* ===================== HERO CAROUSEL (fullscreen) ===================== */
.hero-carousel {
  position: relative; width: 100%; height: 100vh; min-height: 600px;
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1s ease; z-index: 1;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
}
.hero-slide-content {
  position: relative; z-index: 3; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 650px; padding-top: 80px;
}
.hero-slide-content .hero-pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 50px;
  font-size: 0.78rem; font-weight: 500; color: var(--white); margin-bottom: 24px;
  width: fit-content;
}
.hero-slide-content .hero-pill .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--lime);
  animation: blink 2s ease infinite;
}
.hero-slide-content h1 {
  font-family: "Syne", sans-serif; font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; line-height: 1.12; letter-spacing: -2px; color: var(--white);
  margin-bottom: 20px;
}
.hero-slide-content h1 .highlight {
  position: relative; display: inline-block; color: var(--lime);
}
.hero-slide-content p {
  font-size: 1.05rem; line-height: 1.75; color: rgba(255,255,255,0.8);
  margin-bottom: 32px; max-width: 500px;
}
.hero-slide-content .hero-actions { display: flex; gap: 14px; align-items: center; }
.hero-carousel-dots {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.5);
  background: transparent; cursor: pointer; transition: all 0.4s; padding: 0;
}
.hero-dot.active { background: var(--lime); border-color: var(--lime); width: 28px; border-radius: 5px; }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2); color: var(--white);
  font-size: 1.1rem; cursor: pointer; display: flex; align-items: center;
  justify-content: center; transition: all 0.3s;
}
.hero-arrow:hover { background: rgba(255,255,255,0.25); }
.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }

/* ===================== SHOP BY BRAND ===================== */
.shop-by-brand { padding: 100px 0; background: var(--white); }
.brands-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px;
}
.brand-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 28px 16px; background: var(--bg); border: 1px solid var(--border);
  border-radius: 20px; text-decoration: none; transition: all 0.4s var(--transition);
}
.brand-card:hover {
  border-color: var(--lime); transform: translateY(-6px); box-shadow: var(--card-shadow);
  background: var(--white);
}
.brand-logo {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s;
}
.brand-card:hover .brand-logo { transform: scale(1.1); }
.brand-logo span {
  font-family: "Syne", sans-serif; font-size: 1.2rem; font-weight: 800;
  color: var(--forest);
}
.brand-logo img {
  width: 100%; height: 100%; object-fit: contain; border-radius: 50%;
}
.brand-name {
  font-family: "Syne", sans-serif; font-size: 0.82rem; font-weight: 600;
  color: var(--dark); text-align: center;
}
.brand-count {
  font-size: 0.72rem; color: var(--text-light);
}
.latest-arrivals-section { padding-top: 100px; }

/* ===================== BUTTONS ===================== */
.btn {
  font-family: "DM Sans", sans-serif; font-size: 0.88rem; font-weight: 500;
  padding: 15px 32px; border-radius: 50px; border: none; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.4s var(--transition);
}
.btn-primary { background: var(--forest); color: var(--white); }
.btn-primary:hover {
  background: var(--dark); transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(27,58,45,0.25);
}
.btn-secondary { background: var(--white); color: var(--dark); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--lime); background: rgba(200,230,78,0.08); }
.btn-lime { background: var(--lime); color: var(--forest); font-weight: 600; }
.btn-lime:hover {
  background: var(--lime-dark); transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200,230,78,0.3);
}
.btn-outline-white {
  background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4);
}

/* ===================== BRANDS BAR ===================== */
.brands-bar {
  padding: 32px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden; background: var(--white);
}
.brands-track {
  display: flex; gap: 80px; animation: marquee 30s linear infinite; width: max-content;
}
.brands-track span {
  font-family: "Syne", sans-serif; font-size: 1.1rem; font-weight: 700;
  color: var(--dark); white-space: nowrap; opacity: 0.7; letter-spacing: 2px;
  display: flex; align-items: center; text-transform: uppercase;
  transition: opacity 0.4s;
}
.brands-track span:hover { opacity: 1; }
.brand-marquee-item { opacity: 1; }
.brand-marquee-item img {
  height: 48px; width: auto; object-fit: contain;
  filter: grayscale(100%); opacity: 0.6;
  transition: all 0.4s;
}
.brand-marquee-item img:hover {
  filter: grayscale(0%); opacity: 1;
}

/* ===================== SECTION HEADER ===================== */
.section-header {
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px;
}
.section-header-left .section-tag {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: var(--forest); background: rgba(200,230,78,0.25); padding: 5px 14px;
  border-radius: 50px; display: inline-block; margin-bottom: 12px;
}
.section-header-left h2 {
  font-family: "Syne", sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; letter-spacing: -1px; color: var(--dark);
}
.section-header-left h2 em { font-style: normal; color: var(--forest); }
.section-link {
  font-size: 0.85rem; font-weight: 500; color: var(--forest); text-decoration: none;
  display: flex; align-items: center; gap: 6px; transition: gap 0.3s;
}
.section-link:hover { gap: 12px; }

/* ===================== CATEGORIES ===================== */
.categories { padding: 100px 0; }
.categories-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.cat-card {
  text-align: center; cursor: pointer; padding: 24px 16px; border-radius: 20px;
  background: var(--white); border: 1px solid var(--border); transition: all 0.4s var(--transition);
}
.cat-card:hover { border-color: var(--lime); transform: translateY(-6px); box-shadow: var(--card-shadow); }
.cat-icon {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  transition: transform 0.4s;
}
.cat-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-card:hover .cat-icon { transform: scale(1.15) rotate(-5deg); }
.cat-card:nth-child(1) .cat-icon { background: rgba(200,230,78,0.2); }
.cat-card:nth-child(2) .cat-icon { background: rgba(244,169,131,0.2); }
.cat-card:nth-child(3) .cat-icon { background: rgba(126,200,227,0.2); }
.cat-card:nth-child(4) .cat-icon { background: rgba(184,169,201,0.2); }
.cat-card:nth-child(5) .cat-icon { background: rgba(232,201,122,0.2); }
.cat-card:nth-child(6) .cat-icon { background: rgba(200,230,78,0.2); }
.cat-card h3 {
  font-family: "Syne", sans-serif; font-size: 0.88rem; font-weight: 600;
  color: var(--dark); margin-bottom: 4px;
}
.cat-card span { font-size: 0.75rem; color: var(--text-light); }

/* ===================== PRODUCTS GRID ===================== */
.products { padding: 0 0 100px; }
.product-tabs {
  display: flex; gap: 8px; margin-bottom: 40px; flex-wrap: wrap;
}
.product-tab {
  font-family: "DM Sans", sans-serif; font-size: 0.82rem; font-weight: 500;
  padding: 10px 22px; border-radius: 50px; border: 1px solid var(--border);
  background: var(--white); color: var(--text-light); cursor: pointer; transition: all 0.3s;
}
.product-tab.active, .product-tab:hover {
  background: var(--forest); color: var(--white); border-color: var(--forest);
}
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.products-grid.list-view { grid-template-columns: 1fr; gap: 16px; }
.product-card {
  background: var(--white); border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border); transition: all 0.4s var(--transition);
  cursor: pointer; position: relative;
}
.product-card:hover {
  transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border-color: transparent;
}
.list-view .product-card { display: grid; grid-template-columns: 220px 1fr; }
.list-view .product-card:hover { transform: translateY(-4px); }
.list-view .product-img { aspect-ratio: 1; }
.list-view .product-body { display: flex; flex-direction: column; justify-content: center; padding: 24px 28px; }
.list-view .product-body h3 { font-size: 1.1rem; }
.list-view .product-description { display: block; }
.product-img { aspect-ratio: 1; overflow: hidden; position: relative; background: var(--bg); }
.product-img img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--transition);
}
.product-card:hover .product-img img { transform: scale(1.08); }
.product-tag {
  position: absolute; top: 14px; left: 14px; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; padding: 5px 12px; border-radius: 50px; z-index: 2;
}
.tag-sale { background: var(--peach); color: var(--white); }
.tag-new { background: var(--lime); color: var(--forest); }
.tag-best { background: var(--forest); color: var(--white); }
.tag-organic { background: var(--sky); color: var(--white); }
.product-wishlist {
  position: absolute; top: 14px; right: 14px; width: 36px; height: 36px;
  border-radius: 50%; background: var(--white); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08); opacity: 0; transform: scale(0.8);
  transition: all 0.3s; z-index: 2;
}
.product-card:hover .product-wishlist { opacity: 1; transform: scale(1); }
.product-wishlist:hover { background: var(--peach); color: white; }
.product-actions {
  position: absolute; bottom: 14px; right: 14px; display: flex; gap: 8px; z-index: 2;
}
.product-add-btn {
  width: 40px; height: 40px; border-radius: 50%; background: var(--forest);
  color: var(--white); border: none; cursor: pointer; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(10px); transition: all 0.3s var(--transition); z-index: 2;
}
.product-card:hover .product-add-btn { opacity: 1; transform: translateY(0); }
.product-add-btn:hover { background: var(--lime); color: var(--forest); }
.product-quick-view {
  width: 40px; height: 40px; border-radius: 50%; background: var(--white);
  color: var(--dark); border: none; cursor: pointer; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(10px); transition: all 0.3s var(--transition);
  transition-delay: 0.05s; box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.product-card:hover .product-quick-view { opacity: 1; transform: translateY(0); }
.product-quick-view:hover { background: var(--forest); color: var(--white); }
.product-body { padding: 18px 20px 22px; }
.product-body .cat {
  font-size: 0.7rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 2px; color: var(--text-light); margin-bottom: 6px;
}
.product-body h3 {
  font-family: "Syne", sans-serif; font-size: 1rem; font-weight: 600;
  color: var(--dark); margin-bottom: 10px; letter-spacing: -0.3px; transition: color 0.3s;
}
.product-card:hover .product-body h3 { color: var(--forest); }
.product-description {
  display: none; font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 12px;
}
.product-meta {
  display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
}
.product-weight {
  font-size: 0.72rem; color: var(--text-light); background: var(--bg);
  padding: 3px 10px; border-radius: 50px;
}
.product-stock { font-size: 0.72rem; font-weight: 500; }
.stock-in { color: var(--forest); }
.stock-low { color: var(--peach); }
.product-price-row {
  display: flex; align-items: center; justify-content: space-between;
}
.product-price {
  font-family: "Syne", sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--forest);
}
.product-price .old {
  font-size: 0.82rem; font-weight: 400; color: var(--text-light);
  text-decoration: line-through; margin-left: 8px;
}
.product-rating {
  font-size: 0.72rem; color: var(--warm); display: flex; align-items: center; gap: 4px;
}
.product-rating span { color: var(--text-light); }

/* ===================== DEALS BANNER ===================== */
.deals-banner {
  padding: 80px 0; background: var(--forest); position: relative; overflow: hidden;
}
.deals-banner::before {
  content: ""; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,230,78,0.15) 0%, transparent 60%);
}
.deals-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 2;
}
.deals-text { color: var(--white); }
.deals-tag {
  display: inline-block; background: rgba(200,230,78,0.2); color: var(--lime);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 20px;
}
.deals-text h2 {
  font-family: "Syne", sans-serif; font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; letter-spacing: -1px; margin-bottom: 14px;
}
.deals-text h2 span { color: var(--lime); }
.deals-text p {
  font-size: 0.95rem; line-height: 1.8; color: rgba(255,255,255,0.6); margin-bottom: 32px;
  max-width: 440px;
}
.countdown {
  display: flex; align-items: center; gap: 12px; margin-bottom: 36px;
}
.cd-item { text-align: center; }
.cd-num {
  font-family: "Syne", sans-serif; font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: var(--lime); line-height: 1;
}
.cd-label {
  font-size: 0.72rem; color: rgba(255,255,255,0.4); text-transform: uppercase;
  letter-spacing: 2px; margin-top: 6px;
}
.cd-sep {
  font-family: "Syne", sans-serif; font-size: 2rem; font-weight: 700;
  color: rgba(255,255,255,0.2); margin-top: -20px;
}
.deals-visual { border-radius: 24px; overflow: hidden; }
.deals-visual img { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; }

/* ===================== HOW IT WORKS ===================== */
.how-it-works { padding: 100px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 24px;
  padding: 36px 28px; text-align: center; transition: all 0.4s var(--transition);
}
.step-card:hover { border-color: var(--lime); transform: translateY(-6px); box-shadow: var(--card-shadow); }
.step-num {
  font-family: "Syne", sans-serif; font-size: 3rem; font-weight: 800;
  color: rgba(200,230,78,0.2); line-height: 1; margin-bottom: 16px;
}
.step-icon { font-size: 2rem; margin-bottom: 16px; }
.step-card h3 {
  font-family: "Syne", sans-serif; font-size: 1rem; font-weight: 700;
  color: var(--dark); margin-bottom: 10px;
}
.step-card p { font-size: 0.88rem; line-height: 1.7; color: var(--text-light); }

/* ===================== SNACKS GRID ===================== */
.snacks { padding: 0 0 100px; }
.snacks-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 20px; height: 520px;
}
.snack-item { border-radius: 20px; overflow: hidden; position: relative; cursor: pointer; }
.snack-item:first-child { grid-row: 1 / 3; }
.snack-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--transition); }
.snack-item:hover img { transform: scale(1.06); }
.snack-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.6) 0%, transparent 50%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
}
.snack-overlay h3 { font-family: "Syne", sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--white); }
.snack-overlay span { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ===================== ABOUT (index) ===================== */
.about { padding: 100px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img { border-radius: 24px; overflow: hidden; aspect-ratio: 4/5; position: relative; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge {
  position: absolute; bottom: 24px; left: 24px; background: var(--lime); color: var(--forest);
  font-family: "Syne", sans-serif; font-size: 0.78rem; font-weight: 700;
  padding: 12px 22px; border-radius: 14px; display: flex; align-items: center; gap: 8px;
}
.about-text .section-tag {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: var(--forest); background: rgba(200,230,78,0.25); padding: 5px 14px;
  border-radius: 50px; display: inline-block; margin-bottom: 16px;
}
.about-text h2 {
  font-family: "Syne", sans-serif; font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700; letter-spacing: -1px; color: var(--dark); line-height: 1.15; margin-bottom: 20px;
}
.about-text h2 em { font-style: normal; color: var(--forest); }
.about-text p { font-size: 0.95rem; line-height: 1.85; color: var(--text-light); margin-bottom: 16px; }
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--border);
}
.about-stat .num { font-family: "Syne", sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--forest); }
.about-stat .lbl { font-size: 0.75rem; color: var(--text-light); margin-top: 4px; }

/* ===================== REVIEWS / TESTIMONIALS ===================== */
.reviews { padding: 100px 0; }
.review-slider { position: relative; overflow: hidden; }
.review-track {
  display: flex; transition: transform 0.6s var(--transition);
}
.review-card {
  min-width: 100%; padding: 48px; background: var(--white); border: 1px solid var(--border);
  border-radius: 24px; text-align: center;
}
.review-stars { font-size: 1rem; color: var(--warm); letter-spacing: 4px; margin-bottom: 24px; }
.review-quote {
  font-size: 1.1rem; line-height: 1.85; color: var(--text-light); margin-bottom: 32px;
  font-style: italic; max-width: 640px; margin-left: auto; margin-right: auto;
}
.reviewer { display: flex; align-items: center; gap: 16px; justify-content: center; }
.reviewer-avatar {
  width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-family: "Syne", sans-serif; font-size: 1.2rem;
  font-weight: 700; color: var(--forest);
}
.reviewer-info { text-align: left; }
.reviewer-name {
  font-family: "Syne", sans-serif; font-size: 0.95rem; font-weight: 600;
  color: var(--dark); display: block;
}
.reviewer-title { font-size: 0.78rem; color: var(--text-light); }
.review-controls {
  display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 32px;
}
.review-prev, .review-next {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--white); color: var(--dark); cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}
.review-prev:hover, .review-next:hover {
  background: var(--forest); color: var(--white); border-color: var(--forest);
}
.review-dots { display: flex; gap: 8px; }
.review-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--border);
  border: none; cursor: pointer; transition: all 0.3s; padding: 0;
}
.review-dot.active { background: var(--forest); width: 24px; border-radius: 4px; }

/* ===================== APP CTA ===================== */
.app-cta {
  padding: 80px 0; background: var(--forest); border-radius: 32px;
  margin: 0 32px 100px; position: relative; overflow: hidden;
}
.app-cta::before {
  content: ""; position: absolute; top: -50%; right: -20%;
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,230,78,0.12) 0%, transparent 60%);
}
.app-cta .container { text-align: center; position: relative; z-index: 2; }
.app-cta h2 {
  font-family: "Syne", sans-serif; font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: var(--white); letter-spacing: -1px; margin-bottom: 12px;
}
.app-cta p {
  font-size: 1rem; color: rgba(255,255,255,0.6); margin-bottom: 36px;
  max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.7;
}
.app-cta .btn-lime { font-size: 0.92rem; padding: 18px 40px; }

/* ===================== NEWSLETTER ===================== */
.newsletter { padding: 80px 0; background: var(--white); text-align: center; }
.newsletter-content { max-width: 560px; margin: 0 auto; }
.newsletter h2 {
  font-family: "Syne", sans-serif; font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; color: var(--dark); margin-bottom: 10px; letter-spacing: -0.5px;
}
.newsletter p { font-size: 0.92rem; color: var(--text-light); margin-bottom: 28px; }
.newsletter-form { display: flex; max-width: 460px; margin: 0 auto; gap: 0; }
.newsletter-form input {
  flex: 1; padding: 16px 24px; border: 1px solid var(--border); border-right: none;
  border-radius: 50px 0 0 50px; font-family: "DM Sans", sans-serif; font-size: 0.88rem;
  color: var(--text); outline: none; background: var(--bg); transition: border-color 0.3s;
}
.newsletter-form input::placeholder { color: var(--text-light); }
.newsletter-form input:focus { border-color: var(--lime); }
.newsletter-form .btn-lime {
  border-radius: 0 50px 50px 0; white-space: nowrap;
}
.newsletter-note {
  display: block; font-size: 0.78rem; color: var(--text-light); margin-top: 16px;
}

/* ===================== FOOTER ===================== */
footer { padding: 72px 0 36px; background: var(--dark); color: rgba(255,255,255,0.5); }
.footer-top {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px;
}
.footer-brand .logo-text { color: var(--white); font-size: 1.4rem; }
.footer-brand .logo-text span { color: var(--lime); }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; margin-top: 14px; max-width: 300px; }
.footer-col h4 {
  font-family: "Syne", sans-serif; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.88rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom {
  padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem;
}
.footer-socials { display: flex; gap: 20px; }
.footer-socials a { color: rgba(255,255,255,0.3); text-decoration: none; font-size: 0.78rem; transition: color 0.3s; }
.footer-socials a:hover { color: var(--lime); }

/* ===================== PAGE HERO ===================== */
.page-hero { padding: 160px 0 100px; position: relative; overflow: hidden; text-align: center; }
.page-hero::before {
  content: ""; position: absolute; top: -200px; right: -150px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,230,78,0.12) 0%, transparent 70%);
  animation: heroPulse 8s ease-in-out infinite;
}
.page-hero::after {
  content: ""; position: absolute; bottom: -150px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,169,131,0.08) 0%, transparent 70%);
  animation: heroPulse 10s ease-in-out infinite reverse;
}
.page-hero-content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.page-hero .section-tag {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: var(--forest); background: rgba(200,230,78,0.25); padding: 6px 18px;
  border-radius: 50px; display: inline-block; margin-bottom: 20px;
}
.page-hero h1 {
  font-family: "Syne", sans-serif; font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800; letter-spacing: -2px; color: var(--dark); line-height: 1.1; margin-bottom: 20px;
}
.page-hero h1 em { font-style: normal; color: var(--forest); }
.page-hero h1 .highlight { position: relative; display: inline-block; }
.page-hero h1 .highlight::after {
  content: ""; position: absolute; bottom: 4px; left: -4px; right: -4px;
  height: 14px; background: var(--lime); opacity: 0.4; z-index: -1;
  border-radius: 3px; transform: skewX(-3deg);
}
.page-hero p { font-size: 1.1rem; line-height: 1.8; color: var(--text-light); max-width: 560px; margin: 0 auto; }
.page-hero .last-updated { font-size: 0.78rem; color: var(--text-light); margin-top: 12px; }

/* ===================== ABOUT PAGE: STORY ===================== */
.story { padding: 100px 0; background: var(--white); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-img { border-radius: 24px; overflow: hidden; aspect-ratio: 4/5; position: relative; }
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-img-badge {
  position: absolute; bottom: 24px; left: 24px; background: var(--lime); color: var(--forest);
  font-family: "Syne", sans-serif; font-size: 0.78rem; font-weight: 700;
  padding: 12px 22px; border-radius: 14px; display: flex; align-items: center; gap: 8px;
}
.story-text .section-tag {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: var(--forest); background: rgba(200,230,78,0.25); padding: 5px 14px;
  border-radius: 50px; display: inline-block; margin-bottom: 16px;
}
.story-text h2 {
  font-family: "Syne", sans-serif; font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700; letter-spacing: -1px; color: var(--dark); line-height: 1.15; margin-bottom: 20px;
}
.story-text h2 em { font-style: normal; color: var(--forest); }
.story-text p { font-size: 0.95rem; line-height: 1.85; color: var(--text-light); margin-bottom: 16px; }

/* ===================== ABOUT PAGE: STATS BAR ===================== */
.stats-bar { padding: 72px 0; background: var(--forest); position: relative; overflow: hidden; }
.stats-bar::before {
  content: ""; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,230,78,0.12) 0%, transparent 60%);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  position: relative; z-index: 2; text-align: center;
}
.stat-num {
  font-family: "Syne", sans-serif; font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: var(--lime); line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.5); }
.stat-divider { width: 1px; background: rgba(255,255,255,0.08); margin: 0 auto; }

/* ===================== ABOUT PAGE: MISSION ===================== */
.mission { padding: 100px 0; }
.mission-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.mission-header .section-tag {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: var(--forest); background: rgba(200,230,78,0.25); padding: 5px 14px;
  border-radius: 50px; display: inline-block; margin-bottom: 16px;
}
.mission-header h2 {
  font-family: "Syne", sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; letter-spacing: -1px; color: var(--dark); margin-bottom: 14px;
}
.mission-header h2 em { font-style: normal; color: var(--forest); }
.mission-header p { font-size: 0.95rem; line-height: 1.8; color: var(--text-light); }
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mission-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 24px;
  padding: 40px 32px; text-align: center; transition: all 0.4s var(--transition);
}
.mission-card:hover { border-color: var(--lime); transform: translateY(-6px); box-shadow: var(--card-shadow); }
.mission-icon {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
}
.mission-card:nth-child(1) .mission-icon { background: rgba(200,230,78,0.2); }
.mission-card:nth-child(2) .mission-icon { background: rgba(244,169,131,0.2); }
.mission-card:nth-child(3) .mission-icon { background: rgba(126,200,227,0.2); }
.mission-card h3 {
  font-family: "Syne", sans-serif; font-size: 1.05rem; font-weight: 700;
  color: var(--dark); margin-bottom: 10px;
}
.mission-card p { font-size: 0.88rem; line-height: 1.75; color: var(--text-light); }

/* ===================== ABOUT PAGE: TIMELINE ===================== */
.timeline-section { padding: 100px 0; background: var(--white); }
.timeline-header { text-align: center; max-width: 560px; margin: 0 auto 72px; }
.timeline-header .section-tag {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: var(--forest); background: rgba(200,230,78,0.25); padding: 5px 14px;
  border-radius: 50px; display: inline-block; margin-bottom: 16px;
}
.timeline-header h2 {
  font-family: "Syne", sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; letter-spacing: -1px; color: var(--dark);
}
.timeline-header h2 em { font-style: normal; color: var(--forest); }
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before {
  content: ""; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: var(--border); transform: translateX(-50%);
}
.timeline-item { display: flex; align-items: flex-start; margin-bottom: 48px; position: relative; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item:nth-child(odd) { flex-direction: row-reverse; text-align: right; }
.timeline-dot {
  position: absolute; left: 50%; top: 8px; transform: translateX(-50%);
  width: 16px; height: 16px; border-radius: 50%; background: var(--lime);
  border: 3px solid var(--white); z-index: 2; box-shadow: 0 0 0 4px rgba(200,230,78,0.25);
}
.timeline-content {
  width: calc(50% - 40px); padding: 24px 28px;
  background: var(--bg); border: 1px solid var(--border); border-radius: 20px;
  transition: all 0.4s var(--transition);
}
.timeline-content:hover { border-color: var(--lime); box-shadow: var(--card-shadow); transform: translateY(-4px); }
.timeline-year {
  font-family: "Syne", sans-serif; font-size: 0.78rem; font-weight: 700;
  color: var(--forest); background: rgba(200,230,78,0.2); padding: 4px 12px;
  border-radius: 50px; display: inline-block; margin-bottom: 10px;
}
.timeline-content h3 {
  font-family: "Syne", sans-serif; font-size: 1rem; font-weight: 700;
  color: var(--dark); margin-bottom: 8px; letter-spacing: -0.3px;
}
.timeline-content p { font-size: 0.85rem; line-height: 1.7; color: var(--text-light); }

/* ===================== ABOUT PAGE: VALUES ===================== */
.values { padding: 100px 0; background: var(--white); }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.values-text .section-tag {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: var(--forest); background: rgba(200,230,78,0.25); padding: 5px 14px;
  border-radius: 50px; display: inline-block; margin-bottom: 16px;
}
.values-text h2 {
  font-family: "Syne", sans-serif; font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700; letter-spacing: -1px; color: var(--dark); line-height: 1.15; margin-bottom: 20px;
}
.values-text h2 em { font-style: normal; color: var(--forest); }
.values-text > p { font-size: 0.95rem; line-height: 1.85; color: var(--text-light); margin-bottom: 28px; }
.values-list { display: flex; flex-direction: column; gap: 20px; }
.value-item { display: flex; align-items: flex-start; gap: 16px; }
.value-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.value-item:nth-child(1) .value-icon { background: rgba(200,230,78,0.2); }
.value-item:nth-child(2) .value-icon { background: rgba(244,169,131,0.2); }
.value-item:nth-child(3) .value-icon { background: rgba(126,200,227,0.2); }
.value-item:nth-child(4) .value-icon { background: rgba(184,169,201,0.2); }
.value-item-text h4 {
  font-family: "Syne", sans-serif; font-size: 0.92rem; font-weight: 700;
  color: var(--dark); margin-bottom: 4px;
}
.value-item-text p { font-size: 0.85rem; line-height: 1.7; color: var(--text-light); }
.values-img { border-radius: 24px; overflow: hidden; aspect-ratio: 4/5; position: relative; }
.values-img img { width: 100%; height: 100%; object-fit: cover; }
.values-img-badge {
  position: absolute; bottom: 24px; right: 24px; background: var(--forest); color: var(--white);
  font-family: "Syne", sans-serif; font-size: 0.78rem; font-weight: 700;
  padding: 14px 24px; border-radius: 14px; display: flex; align-items: center; gap: 8px;
}
.values-img-badge .badge-lime { color: var(--lime); }

/* ===================== ABOUT CTA ===================== */
.about-cta {
  padding: 80px 0; background: var(--forest); border-radius: 32px;
  margin: 0 32px 100px; position: relative; overflow: hidden;
}
.about-cta::before {
  content: ""; position: absolute; top: -50%; right: -20%;
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,230,78,0.12) 0%, transparent 60%);
}
.about-cta .container { text-align: center; position: relative; z-index: 2; }
.about-cta h2 {
  font-family: "Syne", sans-serif; font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: var(--white); letter-spacing: -1px; margin-bottom: 12px;
}
.about-cta p {
  font-size: 1rem; color: rgba(255,255,255,0.6); margin-bottom: 36px;
  max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.7;
}
.about-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===================== CONTACT PAGE: CARDS ===================== */
.contact-cards { padding: 0 0 80px; }
.contact-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 24px;
  padding: 40px 32px; text-align: center; transition: all 0.4s var(--transition);
}
.contact-card:hover { border-color: var(--lime); transform: translateY(-6px); box-shadow: var(--card-shadow); }
.contact-card-icon {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
}
.contact-card:nth-child(1) .contact-card-icon { background: rgba(200,230,78,0.2); }
.contact-card:nth-child(2) .contact-card-icon { background: rgba(244,169,131,0.2); }
.contact-card:nth-child(3) .contact-card-icon { background: rgba(126,200,227,0.2); }
.contact-card h3 {
  font-family: "Syne", sans-serif; font-size: 1.05rem; font-weight: 700;
  color: var(--dark); margin-bottom: 8px;
}
.contact-card p { font-size: 0.88rem; line-height: 1.7; color: var(--text-light); margin-bottom: 16px; }
.contact-card a { font-size: 0.88rem; font-weight: 600; color: var(--forest); text-decoration: none; transition: color 0.3s; }
.contact-card a:hover { color: var(--lime-dark); }

/* ===================== CONTACT PAGE: FORM ===================== */
.contact-section { padding: 100px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-form-side .section-tag {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: var(--forest); background: rgba(200,230,78,0.25); padding: 5px 14px;
  border-radius: 50px; display: inline-block; margin-bottom: 16px;
}
.contact-form-side h2 {
  font-family: "Syne", sans-serif; font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700; letter-spacing: -1px; color: var(--dark); line-height: 1.15; margin-bottom: 12px;
}
.contact-form-side h2 em { font-style: normal; color: var(--forest); }
.contact-form-side > p { font-size: 0.95rem; line-height: 1.8; color: var(--text-light); margin-bottom: 36px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: "Syne", sans-serif; font-size: 0.82rem; font-weight: 600;
  color: var(--dark); letter-spacing: -0.2px;
}
.form-group label .required { color: var(--peach); }
.form-input {
  padding: 14px 20px; border: 1px solid var(--border); border-radius: 14px;
  background: var(--bg); font-family: "DM Sans", sans-serif; font-size: 0.88rem;
  color: var(--text); outline: none; transition: all 0.3s;
}
.form-input::placeholder { color: var(--text-light); }
.form-input:focus {
  border-color: var(--lime); background: var(--white);
  box-shadow: 0 0 0 3px rgba(200,230,78,0.15);
}
textarea.form-input { resize: vertical; min-height: 140px; line-height: 1.7; }
.form-select {
  padding: 14px 20px; border: 1px solid var(--border); border-radius: 14px;
  background: var(--bg); font-family: "DM Sans", sans-serif; font-size: 0.88rem;
  color: var(--text); outline: none; transition: all 0.3s;
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%237a7a72' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.form-select:focus {
  border-color: var(--lime); background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(200,230,78,0.15);
}
.form-submit {
  font-family: "DM Sans", sans-serif; font-size: 0.92rem; font-weight: 600;
  padding: 16px 36px; border-radius: 50px; border: none;
  background: var(--forest); color: var(--white); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: all 0.4s var(--transition); align-self: flex-start;
}
.form-submit:hover {
  background: var(--dark); transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(27,58,45,0.25);
}
.form-submit.success { background: var(--lime); color: var(--forest); }

/* ===================== CONTACT PAGE: MAP & INFO ===================== */
.contact-info-side { position: sticky; top: 100px; }
.contact-map {
  border-radius: 24px; overflow: hidden; aspect-ratio: 4/3;
  background: var(--bg); border: 1px solid var(--border); margin-bottom: 28px;
}
.contact-map iframe { width: 100%; height: 100%; border: none; display: block; }
.contact-map-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px; color: var(--text-light);
}
.contact-map-placeholder span { font-size: 2.5rem; }
.contact-map-placeholder p { font-size: 0.85rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-info-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  background: rgba(200,230,78,0.15);
}
.contact-info-text h4 {
  font-family: "Syne", sans-serif; font-size: 0.88rem; font-weight: 700;
  color: var(--dark); margin-bottom: 4px;
}
.contact-info-text p { font-size: 0.85rem; line-height: 1.7; color: var(--text-light); }
.contact-info-text a { color: var(--forest); text-decoration: none; font-weight: 500; transition: color 0.3s; }
.contact-info-text a:hover { color: var(--lime-dark); }

/* ===================== CONTACT PAGE: FAQ ===================== */
.faq-section { padding: 100px 0; }
.faq-header { text-align: center; max-width: 560px; margin: 0 auto 60px; }
.faq-header .section-tag {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: var(--forest); background: rgba(200,230,78,0.25); padding: 5px 14px;
  border-radius: 50px; display: inline-block; margin-bottom: 16px;
}
.faq-header h2 {
  font-family: "Syne", sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; letter-spacing: -1px; color: var(--dark); margin-bottom: 14px;
}
.faq-header h2 em { font-style: normal; color: var(--forest); }
.faq-header p { font-size: 0.95rem; line-height: 1.8; color: var(--text-light); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border: 1px solid var(--border); border-radius: 18px;
  overflow: hidden; transition: all 0.3s;
}
.faq-item:hover { border-color: var(--lime); }
.faq-item.open { border-color: var(--lime); box-shadow: var(--card-shadow); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px; cursor: pointer; gap: 16px;
  font-family: "Syne", sans-serif; font-size: 0.95rem; font-weight: 600;
  color: var(--dark); letter-spacing: -0.3px;
  background: none; border: none; width: 100%; text-align: left; transition: color 0.3s;
}
.faq-question:hover { color: var(--forest); }
.faq-icon {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: var(--bg); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--text-light); transition: all 0.3s;
}
.faq-item.open .faq-icon { background: var(--lime); color: var(--forest); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--transition); }
.faq-answer-inner { padding: 0 28px 24px; font-size: 0.9rem; line-height: 1.8; color: var(--text-light); }

/* ===================== CONTACT CTA ===================== */
.contact-cta {
  padding: 80px 0; background: var(--forest); border-radius: 32px;
  margin: 0 32px 100px; position: relative; overflow: hidden;
}
.contact-cta::before {
  content: ""; position: absolute; top: -50%; right: -20%;
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,230,78,0.12) 0%, transparent 60%);
}
.contact-cta .container { text-align: center; position: relative; z-index: 2; }
.contact-cta h2 {
  font-family: "Syne", sans-serif; font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: var(--white); letter-spacing: -1px; margin-bottom: 12px;
}
.contact-cta p {
  font-size: 1rem; color: rgba(255,255,255,0.6); margin-bottom: 36px;
  max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.7;
}
.contact-cta-socials { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.social-btn {
  font-family: "DM Sans", sans-serif; font-size: 0.85rem; font-weight: 500;
  padding: 14px 28px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.15);
  background: transparent; color: var(--white); cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s;
}
.social-btn:hover {
  background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

/* ===================== LEGAL PAGES ===================== */
.legal-content { padding: 60px 0 100px; }
.legal-layout { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
.legal-sidebar { position: sticky; top: 100px; }
.legal-sidebar-inner {
  background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 24px;
}
.legal-sidebar h3 {
  font-family: "Syne", sans-serif; font-size: 0.85rem; font-weight: 700;
  color: var(--dark); margin-bottom: 16px;
}
.legal-nav { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.legal-nav a {
  display: block; font-size: 0.82rem; color: var(--text-light); text-decoration: none;
  padding: 8px 14px; border-radius: 10px; transition: all 0.2s;
}
.legal-nav a:hover, .legal-nav a.active {
  background: rgba(200,230,78,0.12); color: var(--forest); font-weight: 500;
}
.legal-body { max-width: 780px; }
.legal-section { margin-bottom: 48px; }
.legal-section:last-child { margin-bottom: 0; }
.legal-section h2 {
  font-family: "Syne", sans-serif; font-size: 1.3rem; font-weight: 700;
  color: var(--dark); letter-spacing: -0.5px; margin-bottom: 16px;
  padding-bottom: 16px; border-bottom: 1px solid var(--border); scroll-margin-top: 100px;
}
.legal-section h3 {
  font-family: "Syne", sans-serif; font-size: 1rem; font-weight: 600;
  color: var(--dark); margin: 20px 0 10px;
}
.legal-section p { font-size: 0.92rem; line-height: 1.85; color: var(--text-light); margin-bottom: 14px; }
.legal-section ul, .legal-section ol { padding-left: 20px; margin-bottom: 14px; }
.legal-section li { font-size: 0.92rem; line-height: 1.85; color: var(--text-light); margin-bottom: 6px; }
.legal-highlight {
  background: rgba(200,230,78,0.1); border-left: 3px solid var(--lime);
  padding: 16px 20px; border-radius: 0 12px 12px 0; margin: 20px 0;
}
.legal-highlight p { margin-bottom: 0; color: var(--text); font-weight: 500; }
.legal-section a { color: var(--forest); text-decoration: none; transition: color 0.3s; }
.legal-section a:hover { color: var(--lime-dark); }

/* ===================== SHOP PAGE: BREADCRUMB ===================== */
.breadcrumb-section { padding: 110px 0 0; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px; font-size: 0.82rem;
  color: var(--text-light); list-style: none;
}
.breadcrumb a { color: var(--text-light); text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--forest); }
.breadcrumb .separator { color: var(--border); font-size: 0.7rem; }
.breadcrumb .current { color: var(--dark); font-weight: 500; }

/* ===================== SHOP PAGE: HEADER ===================== */
.shop-header { padding: 32px 0 40px; }
.shop-header-inner {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
}
.shop-header-left h1 {
  font-family: "Syne", sans-serif; font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800; letter-spacing: -1.5px; color: var(--dark); line-height: 1.1;
}
.shop-header-left h1 em { font-style: normal; color: var(--forest); }
.shop-header-left .result-count { font-size: 0.88rem; color: var(--text-light); margin-top: 8px; }
.shop-toolbar { display: flex; align-items: center; gap: 12px; }
.shop-sort {
  font-family: "DM Sans", sans-serif; font-size: 0.82rem; color: var(--text);
  padding: 10px 18px; border: 1px solid var(--border); border-radius: 50px;
  background: var(--white); cursor: pointer; outline: none;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%237a7a72' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px; transition: all 0.3s;
}
.shop-sort:focus { border-color: var(--lime); box-shadow: 0 0 0 3px rgba(200,230,78,0.2); }
.view-toggle { display: flex; gap: 4px; }
.view-btn {
  width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border);
  background: var(--white); color: var(--text-light); cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: all 0.3s;
}
.view-btn.active, .view-btn:hover {
  background: var(--forest); color: var(--white); border-color: var(--forest);
}

/* ===================== SHOP PAGE: SECTION ===================== */
.shop-section { padding: 0 0 80px; }
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px; gap: 16px;
}
.shop-results { font-size: 0.85rem; color: var(--text-light); }
.shop-toolbar-right { display: flex; align-items: center; gap: 12px; }

/* ===================== SHOP PAGE: LAYOUT ===================== */
.shop-layout { display: grid; grid-template-columns: 280px 1fr; gap: 36px; }

/* ===================== SHOP PAGE: SIDEBAR ===================== */
.shop-sidebar { position: sticky; top: 100px; align-self: start; }
.shop-sidebar h3 {
  font-family: "Syne", sans-serif; font-size: 0.85rem; font-weight: 700;
  color: var(--dark); margin-bottom: 14px;
}
.shop-sidebar .filter-group:first-child h3 {
  font-size: 0.92rem; margin-bottom: 12px;
}
.sidebar-inner {
  background: var(--white); border: 1px solid var(--border); border-radius: 24px; padding: 28px;
}
.sidebar-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--border);
}
.sidebar-header h3 {
  font-family: "Syne", sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--dark);
}
.clear-filters {
  font-family: "DM Sans", sans-serif; font-size: 0.75rem; font-weight: 500;
  color: var(--peach); background: none; border: none; cursor: pointer; transition: color 0.3s;
}
.clear-filters:hover { color: var(--dark); }
.filter-group { margin-bottom: 28px; }
.filter-group:last-child { margin-bottom: 0; }
.filter-title {
  font-family: "Syne", sans-serif; font-size: 0.82rem; font-weight: 600;
  color: var(--dark); margin-bottom: 14px; letter-spacing: -0.2px;
}
.filter-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.filter-list li { display: flex; align-items: center; gap: 10px; }
.filter-list input[type="checkbox"] {
  appearance: none; -webkit-appearance: none; width: 18px; height: 18px;
  border: 1.5px solid var(--border); border-radius: 5px; cursor: pointer;
  transition: all 0.2s; flex-shrink: 0; position: relative;
}
.filter-list input[type="checkbox"]:checked { background: var(--forest); border-color: var(--forest); }
.filter-list input[type="checkbox"]:checked::after {
  content: ""; position: absolute; left: 5px; top: 2px; width: 5px; height: 9px;
  border: 2px solid var(--white); border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.filter-list label {
  font-size: 0.85rem; color: var(--text); cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  flex: 1; transition: color 0.2s;
}
.filter-list label:hover { color: var(--forest); }
.filter-count {
  font-size: 0.72rem; color: var(--text-light); background: var(--bg);
  padding: 2px 8px; border-radius: 50px;
}

/* ===================== SHOP PAGE: FILTER STYLES ===================== */
.filter-section { display: flex; flex-direction: column; gap: 10px; }
.filter-check, .filter-radio {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  font-size: 0.85rem; color: var(--text); transition: color 0.2s;
}
.filter-check:hover, .filter-radio:hover { color: var(--forest); }
.filter-check input[type="checkbox"], .filter-radio input[type="radio"] {
  appearance: none; -webkit-appearance: none; width: 18px; height: 18px;
  border: 1.5px solid var(--border); cursor: pointer;
  transition: all 0.2s; flex-shrink: 0; position: relative;
}
.filter-check input[type="checkbox"] { border-radius: 5px; }
.filter-radio input[type="radio"] { border-radius: 50%; }
.filter-check input[type="checkbox"]:checked { background: var(--forest); border-color: var(--forest); }
.filter-radio input[type="radio"]:checked { background: var(--forest); border-color: var(--forest); }
.filter-check input[type="checkbox"]:checked::after {
  content: ""; position: absolute; left: 5px; top: 2px; width: 5px; height: 9px;
  border: 2px solid var(--white); border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.filter-radio input[type="radio"]:checked::after {
  content: ""; position: absolute; left: 4px; top: 4px; width: 8px; height: 8px;
  border-radius: 50%; background: var(--white);
}
.filter-pill {
  display: inline-flex; align-items: center; gap: 6px; font-size: 0.75rem; font-weight: 500;
  padding: 6px 14px; border-radius: 50px;
  background: rgba(200,230,78,0.15); color: var(--forest); border: 1px solid rgba(200,230,78,0.3);
}
.filter-pill button {
  background: none; border: none; color: var(--forest); cursor: pointer;
  font-size: 0.88rem; line-height: 1; opacity: 0.6; transition: opacity 0.2s;
}
.filter-pill button:hover { opacity: 1; }
.range-slider {
  -webkit-appearance: none; appearance: none; width: 100%; height: 4px;
  background: var(--border); border-radius: 4px; outline: none; cursor: pointer;
}
.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--forest); cursor: grab;
  box-shadow: 0 0 0 4px rgba(27,58,45,0.08);
}
.range-slider::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--forest); cursor: grab;
}
.price-labels {
  display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--text-light);
  margin-top: 4px;
}
.page-dots { font-size: 0.88rem; color: var(--text-light); padding: 0 4px; }
.page-next {
  font-family: "DM Sans", sans-serif; font-size: 0.82rem; font-weight: 500;
  padding: 10px 20px; border-radius: 12px; border: 1px solid var(--border);
  background: var(--white); color: var(--text); cursor: pointer;
  display: flex; align-items: center; gap: 6px; transition: all 0.3s;
}
.page-next:hover { border-color: var(--lime); background: rgba(200,230,78,0.08); }

/* ===================== SHOP PAGE: PRICE RANGE ===================== */
.price-range { display: flex; flex-direction: column; gap: 12px; }
.price-slider { position: relative; height: 4px; background: var(--border); border-radius: 4px; }
.price-slider-fill {
  position: absolute; height: 100%; background: var(--lime); border-radius: 4px;
  left: 10%; right: 20%;
}
.price-slider-handle {
  position: absolute; top: 50%; transform: translate(-50%, -50%);
  width: 18px; height: 18px; border-radius: 50%; background: var(--white);
  border: 2px solid var(--forest); cursor: grab; z-index: 2; transition: box-shadow 0.2s;
}
.price-slider-handle:hover { box-shadow: 0 0 0 4px rgba(27,58,45,0.12); }
.price-slider-handle.min { left: 10%; }
.price-slider-handle.max { left: 80%; }
.price-inputs { display: flex; gap: 10px; align-items: center; }
.price-input {
  flex: 1; padding: 8px 12px; border: 1px solid var(--border); border-radius: 10px;
  font-family: "DM Sans", sans-serif; font-size: 0.82rem; color: var(--text);
  text-align: center; outline: none; background: var(--bg); transition: border-color 0.3s;
}
.price-input:focus { border-color: var(--lime); }
.price-separator { font-size: 0.82rem; color: var(--text-light); }

/* ===================== SHOP PAGE: RATING FILTER ===================== */
.rating-filter { display: flex; flex-direction: column; gap: 8px; }
.rating-option {
  display: flex; align-items: center; gap: 8px; cursor: pointer;
  padding: 6px 10px; border-radius: 8px; transition: background 0.2s;
}
.rating-option:hover { background: var(--bg); }
.rating-option input[type="radio"] { display: none; }
.rating-stars { font-size: 0.78rem; color: var(--warm); letter-spacing: 2px; }
.rating-label { font-size: 0.78rem; color: var(--text-light); }

/* ===================== SHOP PAGE: TAG FILTERS ===================== */
.tag-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-filter {
  font-family: "DM Sans", sans-serif; font-size: 0.75rem; font-weight: 500;
  padding: 6px 14px; border-radius: 50px; border: 1px solid var(--border);
  background: var(--white); color: var(--text-light); cursor: pointer; transition: all 0.3s;
}
.tag-filter:hover, .tag-filter.active {
  background: var(--forest); color: var(--white); border-color: var(--forest);
}

/* ===================== SHOP PAGE: ACTIVE FILTERS ===================== */
.active-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.active-filter-tag {
  display: inline-flex; align-items: center; gap: 6px; font-size: 0.75rem; font-weight: 500;
  padding: 6px 14px; border-radius: 50px;
  background: rgba(200,230,78,0.15); color: var(--forest); border: 1px solid rgba(200,230,78,0.3);
}
.active-filter-tag button {
  background: none; border: none; color: var(--forest); cursor: pointer;
  font-size: 0.82rem; line-height: 1; opacity: 0.6; transition: opacity 0.2s;
}
.active-filter-tag button:hover { opacity: 1; }

/* ===================== SHOP PAGE: PAGINATION ===================== */
.shop-pagination {
  display: flex; align-items: center; justify-content: center; gap: 8px; padding: 48px 0 0;
}
.page-btn {
  width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--border);
  background: var(--white); color: var(--text); font-family: "DM Sans", sans-serif;
  font-size: 0.88rem; font-weight: 500; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}
.page-btn:hover { border-color: var(--lime); background: rgba(200,230,78,0.08); }
.page-btn.active { background: var(--forest); color: var(--white); border-color: var(--forest); }
.page-btn.nav-arrow { font-size: 0.75rem; }
.page-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.page-ellipsis { font-size: 0.88rem; color: var(--text-light); padding: 0 4px; }

/* ===================== SHOP PAGE: MOBILE FILTER ===================== */
.filter-toggle-mobile {
  display: none; align-items: center; gap: 8px;
  font-family: "DM Sans", sans-serif; font-size: 0.85rem; font-weight: 500;
  padding: 12px 22px; border-radius: 50px; border: 1px solid var(--border);
  background: var(--white); color: var(--dark); cursor: pointer; transition: all 0.3s;
}
.filter-toggle-mobile:hover { border-color: var(--forest); }
.filter-backdrop {
  display: none; position: fixed; inset: 0; background: rgba(20,20,20,0.4);
  z-index: 999; opacity: 0; transition: opacity 0.3s;
}
.filter-backdrop.active { opacity: 1; }
.shop-sidebar.mobile-open {
  position: fixed; top: 0; left: 0; bottom: 0; width: 320px;
  z-index: 1000; overflow-y: auto; background: var(--bg); padding: 24px;
  transform: translateX(0);
}
.filter-close {
  display: none; position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--white); color: var(--dark); cursor: pointer; font-size: 1rem;
  align-items: center; justify-content: center;
}

/* ===================== SINGLE PRODUCT: DETAIL ===================== */
.product-detail { padding: 40px 0 80px; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

/* --- Gallery --- */
.product-gallery { position: sticky; top: 100px; }
.gallery-main {
  border-radius: 24px; overflow: hidden; background: var(--white);
  border: 1px solid var(--border); aspect-ratio: 1; position: relative; cursor: zoom-in;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--transition); }
.gallery-main:hover img { transform: scale(1.05); }
.gallery-tag {
  position: absolute; top: 20px; left: 20px; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; padding: 6px 16px; border-radius: 50px; z-index: 2;
}
.gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px;
  border-radius: 50%; background: var(--white); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08); transition: all 0.3s; z-index: 3; opacity: 0;
}
.gallery-main:hover .gallery-nav { opacity: 1; }
.gallery-nav:hover { background: var(--forest); color: var(--white); }
.gallery-nav.prev { left: 16px; }
.gallery-nav.next { right: 16px; }
.gallery-wishlist {
  position: absolute; top: 20px; right: 20px; width: 44px; height: 44px;
  border-radius: 50%; background: var(--white); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08); z-index: 3; transition: all 0.3s;
}
.gallery-wishlist:hover { background: var(--peach); color: var(--white); }
.gallery-wishlist.liked { background: var(--peach); color: var(--white); }
.gallery-thumbs { display: flex; gap: 12px; margin-top: 16px; }
.gallery-thumb {
  width: 80px; height: 80px; border-radius: 14px; overflow: hidden;
  border: 2px solid var(--border); cursor: pointer; transition: all 0.3s; flex-shrink: 0;
}
.gallery-thumb.active { border-color: var(--forest); }
.gallery-thumb:hover { border-color: var(--lime); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* --- Product Info --- */
.product-info { padding-top: 8px; }
.product-info-badge {
  display: inline-flex; align-items: center; gap: 6px; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--forest);
  background: rgba(200,230,78,0.2); padding: 6px 16px; border-radius: 50px; margin-bottom: 16px;
}
.product-info-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); }
.product-info h1 {
  font-family: "Syne", sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800; letter-spacing: -1.5px; color: var(--dark); line-height: 1.15; margin-bottom: 16px;
}
.product-info-rating { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.info-stars { font-size: 0.88rem; color: var(--warm); letter-spacing: 3px; }
.info-rating-text { font-size: 0.82rem; color: var(--text-light); }
.info-rating-text strong { color: var(--dark); font-weight: 600; }
.info-reviews-link {
  font-size: 0.82rem; color: var(--forest); text-decoration: none; font-weight: 500; transition: color 0.3s;
}
.info-reviews-link:hover { color: var(--lime-dark); }
.product-info-price {
  display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px;
  padding-bottom: 20px; border-bottom: 1px solid var(--border);
}
.info-price-current {
  font-family: "Syne", sans-serif; font-size: 2rem; font-weight: 800; color: var(--forest);
}
.info-price-old { font-size: 1.1rem; color: var(--text-light); text-decoration: line-through; }
.info-price-save {
  font-size: 0.78rem; font-weight: 600; color: var(--white);
  background: var(--peach); padding: 4px 12px; border-radius: 50px;
}
.product-info-desc { font-size: 0.95rem; line-height: 1.85; color: var(--text-light); margin-bottom: 24px; }
.product-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
.highlight-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--text); }
.highlight-icon {
  width: 32px; height: 32px; border-radius: 8px; background: rgba(200,230,78,0.15);
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0;
}
.product-option { margin-bottom: 24px; }
.product-option-label {
  font-family: "Syne", sans-serif; font-size: 0.82rem; font-weight: 600;
  color: var(--dark); margin-bottom: 10px; letter-spacing: -0.2px;
}
.product-option-label span { font-family: "DM Sans", sans-serif; font-weight: 400; color: var(--text-light); margin-left: 4px; }
.option-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.option-chip {
  font-family: "DM Sans", sans-serif; font-size: 0.82rem; font-weight: 500;
  padding: 10px 20px; border-radius: 50px; border: 1px solid var(--border);
  background: var(--white); color: var(--text); cursor: pointer; transition: all 0.3s;
}
.option-chip:hover { border-color: var(--lime); }
.option-chip.active { background: var(--forest); color: var(--white); border-color: var(--forest); }
.option-chip.disabled { opacity: 0.35; cursor: not-allowed; }

/* --- Add to Cart --- */
.product-add-section {
  display: flex; gap: 12px; align-items: center; margin-bottom: 28px;
  padding-bottom: 28px; border-bottom: 1px solid var(--border);
}
.qty-selector {
  display: flex; align-items: center; border: 1px solid var(--border);
  border-radius: 50px; background: var(--white); overflow: hidden;
}
.qty-btn {
  width: 44px; height: 48px; border: none; background: none; cursor: pointer;
  font-size: 1.1rem; color: var(--text); display: flex; align-items: center;
  justify-content: center; transition: all 0.2s;
}
.qty-btn:hover { background: var(--bg); color: var(--forest); }
.qty-value {
  width: 40px; text-align: center; font-family: "DM Sans", sans-serif;
  font-size: 0.95rem; font-weight: 600; color: var(--dark);
  border: none; outline: none; background: none;
}
.add-to-cart-btn {
  flex: 1; font-family: "DM Sans", sans-serif; font-size: 0.92rem; font-weight: 600;
  padding: 15px 32px; border-radius: 50px; border: none; background: var(--forest);
  color: var(--white); cursor: pointer; display: flex; align-items: center;
  justify-content: center; gap: 10px; transition: all 0.4s var(--transition);
}
.add-to-cart-btn:hover {
  background: var(--dark); transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(27,58,45,0.25);
}
.buy-now-btn {
  font-family: "DM Sans", sans-serif; font-size: 0.92rem; font-weight: 600;
  padding: 15px 28px; border-radius: 50px; border: none; background: var(--lime);
  color: var(--forest); cursor: pointer; transition: all 0.4s var(--transition);
}
.buy-now-btn:hover {
  background: var(--lime-dark); transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200,230,78,0.3);
}

/* --- Product Meta Info --- */
.product-meta-info { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.meta-row { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; }
.meta-label { color: var(--text-light); min-width: 80px; }
.meta-value { color: var(--dark); font-weight: 500; }
.meta-value a { color: var(--forest); text-decoration: none; transition: color 0.3s; }
.meta-value a:hover { color: var(--lime-dark); }

/* --- Trust Badges --- */
.trust-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.trust-badge {
  text-align: center; padding: 16px 12px; border-radius: 16px;
  background: var(--white); border: 1px solid var(--border); transition: all 0.3s;
}
.trust-badge:hover { border-color: var(--lime); transform: translateY(-2px); }
.trust-badge-icon { font-size: 1.3rem; margin-bottom: 6px; }
.trust-badge-text { font-size: 0.72rem; font-weight: 500; color: var(--text-light); line-height: 1.4; }

/* ===================== SINGLE PRODUCT: TABS ===================== */
.product-tabs-section { padding: 0 0 80px; }
.product-tabs-nav {
  display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 36px;
}
.ptab-btn {
  font-family: "DM Sans", sans-serif; font-size: 0.88rem; font-weight: 500;
  padding: 16px 28px; border: none; background: none; color: var(--text-light);
  cursor: pointer; position: relative; transition: color 0.3s;
}
.ptab-btn:hover { color: var(--dark); }
.ptab-btn::after {
  content: ""; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--forest); border-radius: 2px 2px 0 0;
  transform: scaleX(0); transition: transform 0.3s var(--transition);
}
.ptab-btn.active { color: var(--dark); font-weight: 600; }
.ptab-btn.active::after { transform: scaleX(1); }
.ptab-content { display: none; }
.ptab-content.active { display: block; }
.desc-content { max-width: 800px; }
.desc-content h3 {
  font-family: "Syne", sans-serif; font-size: 1.2rem; font-weight: 700;
  color: var(--dark); margin-bottom: 12px; letter-spacing: -0.5px;
}
.desc-content p { font-size: 0.92rem; line-height: 1.85; color: var(--text-light); margin-bottom: 20px; }
.desc-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.desc-feature { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text); }
.desc-feature-check {
  width: 22px; height: 22px; border-radius: 50%; background: rgba(200,230,78,0.2);
  color: var(--forest); display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; flex-shrink: 0;
}
.info-table { width: 100%; max-width: 600px; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid var(--border); }
.info-table tr:last-child { border-bottom: none; }
.info-table th {
  text-align: left; font-family: "Syne", sans-serif; font-size: 0.85rem; font-weight: 600;
  color: var(--dark); padding: 14px 20px 14px 0; width: 180px; vertical-align: top;
}
.info-table td { font-size: 0.88rem; color: var(--text-light); padding: 14px 0; line-height: 1.6; }

/* --- Reviews Tab --- */
.reviews-summary {
  display: flex; gap: 48px; align-items: center; margin-bottom: 40px;
  padding-bottom: 40px; border-bottom: 1px solid var(--border);
}
.reviews-score { text-align: center; min-width: 140px; }
.reviews-score-num {
  font-family: "Syne", sans-serif; font-size: 3.5rem; font-weight: 800; color: var(--dark); line-height: 1;
}
.reviews-score-stars { font-size: 0.92rem; color: var(--warm); letter-spacing: 3px; margin: 8px 0 4px; }
.reviews-score-count { font-size: 0.78rem; color: var(--text-light); }
.reviews-bars { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.review-bar-row { display: flex; align-items: center; gap: 12px; }
.review-bar-label { font-size: 0.78rem; color: var(--text-light); min-width: 44px; }
.review-bar { flex: 1; height: 6px; background: var(--border); border-radius: 6px; overflow: hidden; }
.review-bar-fill { height: 100%; background: var(--warm); border-radius: 6px; transition: width 0.6s var(--transition); }
.review-bar-count { font-size: 0.75rem; color: var(--text-light); min-width: 28px; text-align: right; }
.reviews-list { display: flex; flex-direction: column; gap: 24px; }
.review-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 20px;
  padding: 28px; transition: all 0.3s;
}
.review-card:hover { border-color: var(--lime); }
.review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--lime); }
.review-author-name { font-family: "Syne", sans-serif; font-size: 0.9rem; font-weight: 600; color: var(--dark); }
.review-author-date { font-size: 0.72rem; color: var(--text-light); margin-top: 2px; }
.review-stars { font-size: 0.78rem; color: var(--warm); letter-spacing: 2px; }
.review-text { font-size: 0.9rem; line-height: 1.8; color: var(--text-light); }
.review-verified {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.72rem; font-weight: 500; color: var(--forest); margin-top: 12px;
}
.write-review-btn {
  font-family: "DM Sans", sans-serif; font-size: 0.85rem; font-weight: 500;
  padding: 12px 28px; border-radius: 50px; border: 1px solid var(--border);
  background: var(--white); color: var(--dark); cursor: pointer; transition: all 0.3s; margin-top: 28px;
}
.write-review-btn:hover { border-color: var(--forest); background: var(--forest); color: var(--white); }

/* ===================== SINGLE PRODUCT: RELATED ===================== */
.related-products { padding: 0 0 100px; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-wishlist-sm {
  position: absolute; top: 14px; right: 14px; width: 36px; height: 36px;
  border-radius: 50%; background: var(--white); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08); opacity: 0; transform: scale(0.8);
  transition: all 0.3s; z-index: 2;
}
.product-card:hover .product-wishlist-sm { opacity: 1; transform: scale(1); }
.product-wishlist-sm:hover { background: var(--peach); color: white; }
.product-add-btn-sm {
  position: absolute; bottom: 14px; right: 14px; width: 40px; height: 40px;
  border-radius: 50%; background: var(--forest); color: var(--white); border: none;
  cursor: pointer; font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(10px); transition: all 0.3s var(--transition); z-index: 2;
}
.product-card:hover .product-add-btn-sm { opacity: 1; transform: translateY(0); }
.product-add-btn-sm:hover { background: var(--lime); color: var(--forest); }

/* ===================== REVEAL ANIMATION ===================== */
.reveal { opacity: 0; transform: translateY(36px); transition: all 0.8s var(--transition); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: 0.08s; }
.rd2 { transition-delay: 0.16s; }
.rd3 { transition-delay: 0.24s; }
.rd4 { transition-delay: 0.32s; }
.rd5 { transition-delay: 0.4s; }
.rd6 { transition-delay: 0.48s; }

/* ===================== KEYFRAMES ===================== */
@keyframes heroPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===================== RESPONSIVE: 1100px ===================== */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .timeline::before { left: 24px; }
  .timeline-dot { left: 24px; }
  .timeline-item, .timeline-item:nth-child(odd) { flex-direction: row; text-align: left; padding-left: 56px; }
  .timeline-content { width: 100%; }
  .contact-grid { gap: 48px; }
  .shop-layout { grid-template-columns: 240px 1fr; gap: 24px; }
  .product-detail-grid { gap: 40px; }
  .related-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-summary { gap: 32px; }
}

/* ===================== RESPONSIVE: 768px ===================== */
@media (max-width: 768px) {
  .container { padding: 0 16px; }

  /* Mobile Nav */
  .nav-center, .nav-search { display: none; }
  .hamburger { display: flex; }

  /* When mobile menu is open, nav becomes fullscreen */
  nav#navbar.mobile-menu-open {
    position: fixed; top: 0; left: 0; right: 0; height: 70vh;
    width: 100%;
    background: var(--forest); padding: 0;
    backdrop-filter: none; border-bottom: none;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    z-index: 9999; overflow-y: auto;
  }
  nav#navbar.mobile-menu-open .container {
    flex-direction: column; align-items: center; justify-content: flex-start;
    height: 100%; padding-top: 24px; max-width: 100%;
  }
  nav#navbar.mobile-menu-open .logo {
    align-self: flex-start; margin-bottom: 20px; padding-left: 8px;
  }
  nav#navbar.mobile-menu-open .logo-text { color: var(--white); }
  nav#navbar.mobile-menu-open .hamburger {
    position: absolute; top: 28px; right: 24px;
  }
  nav#navbar.mobile-menu-open .hamburger span { background: var(--white); }
  nav#navbar.mobile-menu-open .nav-right { display: none; }

  nav#navbar.mobile-menu-open .nav-center {
    display: flex; flex-direction: column; align-items: center;
    gap: 6px; width: 100%; padding: 20px 0; list-style: none;
    flex: 1; justify-content: center;
  }
  nav#navbar.mobile-menu-open .nav-center > li { width: 100%; text-align: center; }
  nav#navbar.mobile-menu-open .nav-center > li > a {
    color: var(--white); font-size: 1.15rem; font-weight: 600;
    display: block; padding: 12px 0;
  }
  nav#navbar.mobile-menu-open .nav-center > li > a:hover { color: var(--lime); }
  nav#navbar.mobile-menu-open .nav-center > li > a::after { display: none; }

  /* Mobile dropdowns - hidden by default, toggle on tap */
  nav#navbar.mobile-menu-open .nav-dropdown-menu {
    position: static; transform: none;
    box-shadow: none; border: none; padding: 0; min-width: auto;
    background: rgba(255,255,255,0.08); border-radius: 12px;
    display: none; flex-direction: column; gap: 0;
    align-items: center; margin: 6px 24px 0;
    opacity: 1; visibility: visible;
  }
  nav#navbar.mobile-menu-open .nav-dropdown.open .nav-dropdown-menu { display: flex; }
  nav#navbar.mobile-menu-open .nav-dropdown-menu a {
    color: rgba(255,255,255,0.75); padding: 10px 16px; font-size: 0.9rem;
    width: 100%; text-align: center;
  }
  nav#navbar.mobile-menu-open .nav-dropdown-menu a:hover { color: var(--lime); background: rgba(255,255,255,0.05); }
  nav#navbar.mobile-menu-open .nav-dropdown-menu .view-all-link { color: var(--lime); font-weight: 600; }
  .dropdown-arrow { display: none; }

  /* Hero - Mobile */
  .hero-carousel { height: 75vh; min-height: 500px; }
  .hero-slide-content { padding: 60px 0 40px; max-width: 100%; }
  .hero-slide-content h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); letter-spacing: -1px; }
  .hero-slide-content p { font-size: 0.92rem; line-height: 1.65; max-width: 100%; }
  .hero-slide-content .hero-pill { font-size: 0.72rem; padding: 6px 14px; margin-bottom: 16px; }
  .hero-actions .btn { padding: 12px 24px; font-size: 0.82rem; }
  .hero-arrow { display: none; }
  .hero-carousel-dots { bottom: 20px; }

  /* Brands bar */
  .brands-bar { padding: 20px 0; }
  .brand-marquee-item img { height: 28px; }

  /* Section spacing */
  .categories { padding: 60px 0; }
  .products { padding: 0 0 60px; }
  .shop-by-brand { padding: 60px 0; }
  .latest-arrivals-section { padding-top: 60px; }
  .deals-banner { padding: 50px 0; }
  .how-it-works { padding: 60px 0; }
  .reviews { padding: 60px 0; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 28px; }
  .section-header h2 { font-size: clamp(1.4rem, 5vw, 1.8rem); }

  /* Grids */
  .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .cat-card { padding: 16px 10px; border-radius: 14px; }
  .cat-card h3 { font-size: 0.78rem; }
  .cat-icon { width: 48px; height: 48px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card { border-radius: 14px; }
  .product-body h3 { font-size: 0.82rem; }
  .product-body .cat { font-size: 0.62rem; }
  .product-price { font-size: 0.85rem; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .brand-card { padding: 18px 10px; border-radius: 14px; }
  .brand-logo { width: 48px; height: 48px; }
  .brand-name { font-size: 0.75rem; }
  .brand-count { font-size: 0.65rem; }
  .deals-grid { grid-template-columns: 1fr; }
  .deals-text h2 { font-size: clamp(1.3rem, 5vw, 1.8rem); }
  .countdown { gap: 12px; }
  .cd-num { font-size: 1.4rem; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .step-card { padding: 24px 16px; border-radius: 16px; }

  /* Reviews */
  .review-card { padding: 24px 20px; }
  .review-quote { font-size: 0.88rem; }

  /* Shop page */
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar {
    display: none; position: fixed; top: 0; left: 0; bottom: 0; width: 320px;
    z-index: 1000; overflow-y: auto; background: var(--bg); padding: 24px;
    transform: translateX(-100%); transition: transform 0.4s var(--transition);
  }
  .shop-sidebar.mobile-open { display: block; transform: translateX(0); }
  .filter-backdrop.active { display: block; opacity: 1; }
  .filter-toggle-mobile { display: inline-flex; }
  .filter-close { display: flex; }
  .shop-header-inner { flex-direction: column; align-items: flex-start; }
  .shop-toolbar { width: 100%; justify-content: space-between; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .footer-socials { justify-content: center; }
  footer { padding: 48px 0 24px; }

  /* Other pages */
  .page-hero { padding: 110px 0 50px; }
  .page-hero h1 { font-size: clamp(1.4rem, 5vw, 2rem); }
  .snacks-grid { grid-template-columns: 1fr 1fr; height: auto; }
  .snacks-grid .snack-item:first-child { grid-row: auto; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .app-cta { margin: 0 16px 60px; border-radius: 24px; }
  .story-grid, .values-grid { grid-template-columns: 1fr; gap: 40px; }
  .mission-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .about-cta { margin: 0 16px 60px; border-radius: 24px; }
  .contact-cards-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-info-side { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .contact-cta { margin: 0 16px 60px; border-radius: 24px; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-sidebar { position: static; }

  /* Product detail */
  .list-view .product-card { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .product-gallery { position: static; }
  .gallery-thumbs { overflow-x: auto; padding-bottom: 8px; }
  .product-highlights { grid-template-columns: 1fr; }
  .product-add-section { flex-wrap: wrap; }
  .add-to-cart-btn { min-width: 0; }
  .trust-badges { grid-template-columns: repeat(3, 1fr); }
  .product-tabs-nav { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .ptab-btn { white-space: nowrap; padding: 14px 20px; font-size: 0.82rem; }
  .reviews-summary { flex-direction: column; gap: 24px; align-items: flex-start; }
  .desc-features { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ===================== RESPONSIVE: 480px (iPhone) ===================== */
@media (max-width: 480px) {
  .container { padding: 0 14px; }

  /* Hero - iPhone */
  .hero-carousel { height: 85vh; min-height: 480px; }
  .hero-slide-content { padding: 50px 0 30px; }
  .hero-slide-content h1 { font-size: clamp(1.4rem, 7vw, 1.9rem); letter-spacing: -0.5px; line-height: 1.2; }
  .hero-slide-content p { font-size: 0.85rem; line-height: 1.6; margin-bottom: 24px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-actions .btn { text-align: center; justify-content: center; padding: 13px 20px; font-size: 0.85rem; }
  .hero-carousel-dots { bottom: 16px; gap: 8px; }
  .hero-dot { width: 8px; height: 8px; }
  .hero-dot.active { width: 24px; }

  /* Section spacing - tighter on phone */
  .categories { padding: 40px 0; }
  .products { padding: 0 0 40px; }
  .shop-by-brand { padding: 40px 0; }
  .latest-arrivals-section { padding-top: 40px; }
  .deals-banner { padding: 40px 0; }
  .how-it-works { padding: 40px 0; }
  .reviews { padding: 40px 0; }
  .section-header h2 { font-size: clamp(1.2rem, 5.5vw, 1.5rem); }
  .section-tag { font-size: 0.7rem; }

  /* Grids - 2 cols on phone */
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cat-card { padding: 14px 8px; }
  .cat-icon { width: 40px; height: 40px; }
  .cat-card h3 { font-size: 0.72rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-card { border-radius: 12px; }
  .product-body { padding: 10px 12px 14px; }
  .product-body h3 { font-size: 0.78rem; line-height: 1.3; }
  .product-body .cat { font-size: 0.6rem; }
  .product-price { font-size: 0.8rem; }
  .product-rating { font-size: 0.65rem; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .brand-card { padding: 14px 8px; }
  .brand-logo { width: 40px; height: 40px; }
  .brand-name { font-size: 0.7rem; }
  .steps-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Deals */
  .deals-text h2 { font-size: 1.3rem; }
  .countdown { gap: 8px; }
  .cd-item { padding: 10px; }
  .cd-num { font-size: 1.2rem; }
  .cd-label { font-size: 0.6rem; }

  /* Reviews */
  .review-card { padding: 20px 16px; border-radius: 16px; }
  .review-quote { font-size: 0.82rem; line-height: 1.7; }
  .reviewer-name { font-size: 0.82rem; }

  /* Shop page */
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .shop-sidebar.mobile-open { width: 100%; }
  .page-hero { padding: 100px 0 40px; }
  .page-hero h1 { font-size: clamp(1.2rem, 6vw, 1.6rem); }

  /* Footer */
  .footer-brand p { font-size: 0.82rem; }
  .footer-col h4 { font-size: 0.9rem; margin-bottom: 12px; }
  .footer-col ul li a { font-size: 0.82rem; }

  /* Other */
  .snacks-grid { grid-template-columns: 1fr; height: auto; }
  .hiw-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .about-cta-actions { flex-direction: column; align-items: center; }
  .contact-cta-socials { flex-direction: column; align-items: center; }
  .form-submit { width: 100%; }
  .breadcrumb-section { padding: 100px 0 0; }
  .product-add-section { flex-direction: column; }
  .qty-selector { align-self: flex-start; }
  .add-to-cart-btn, .buy-now-btn { width: 100%; justify-content: center; }
  .trust-badges { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-thumbs { gap: 8px; }
  .gallery-thumb { width: 56px; height: 56px; }
}
