/* ============================================================
   SWATHI GOLD MASALA FOODS — Main Stylesheet
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,700;0,900;1,700&family=Nunito:wght@300;400;600;700;800&display=swap');

:root {
  --red: #C0000A;
  --red-dark: #8B0000;
  --gold: #C8960C;
  --gold-light: #F0C040;
  --cream: #FFF8EE;
  --cream-dark: #F5ECD8;
  --dark: #1A0800;
  --text: #2A1500;
  --muted: #7A5C3A;
  --white: #FFFFFF;
  --green: #25D366;
  --font-h: 'Playfair Display', Georgia, serif;
  --font-b: 'Nunito', sans-serif;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 8px 40px rgba(139,0,0,0.13);
  --shadow-lg: 0 20px 60px rgba(139,0,0,0.20);
  --trans: 0.35s cubic-bezier(0.4,0,0.2,1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-b); background: var(--cream); color: var(--text); overflow-x: hidden; line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--trans); }
ul { list-style: none; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,248,238,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--gold-light);
  transition: box-shadow var(--trans);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(200,150,12,0.18); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 76px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 54px; width: auto; object-fit: contain; }
.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 0.82rem; font-weight: 800; color: var(--text);
  letter-spacing: 0.5px; text-transform: uppercase;
  position: relative; padding-bottom: 3px;
}
.nav-link::after {
  content:''; position:absolute; bottom:0; left:0;
  width:0; height:2px; background:var(--gold);
  border-radius:2px; transition:width var(--trans);
}
.nav-link:hover::after,.nav-link.active::after { width:100%; }
.nav-link:hover,.nav-link.active { color: var(--red); }
.nav-cta {
  background: var(--red); color: var(--white) !important;
  padding: 10px 22px; border-radius: 50px;
  font-weight: 800; font-size: 0.82rem; letter-spacing: 0.5px; text-transform: uppercase;
  transition: background var(--trans), transform var(--trans);
 
}
.nav-cta:hover { background: var(--gold); transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 6px;
   position: relative;
  z-index: 9999;
}
.hamburger span {
  display: block; width: 25px; height: 2.5px;
  background: var(--red); border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO SLIDER — banner images show 100%, NO overlay, NO text
   ============================================================ */
.hero-slider {
  position: relative; width: 100%;
  height: calc(100vw * 700 / 1920);
  min-height: 340px; max-height: 720px;
  overflow: hidden;
}
.slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 0.9s ease;
}
.slide.active { opacity: 1; z-index: 2; }
.slide-bg { position: absolute; inset: 0; z-index: 0; }
.slide-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
/* Kill ALL overlays and text — banner designs are complete as-is */
.slide-overlay { display: none !important; }
.slide-content  { display: none !important; }
.slide-packet   { display: none !important; }
.slide-tag,.slide-title,.slide-sub,.slide-btns { display: none !important; }

/* Slider arrows */
.slider-prev,.slider-next {
  position: absolute; top: 50%; z-index: 10;
  transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.18); border: 2px solid rgba(255,255,255,0.4);
  color: var(--white); font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--trans); backdrop-filter: blur(6px);
}
.slider-prev { left: 18px; }
.slider-next { right: 18px; }
.slider-prev:hover,.slider-next:hover { background: var(--gold); border-color: var(--gold); }
.slider-dots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: 10px;
}
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer;
  transition: all var(--trans); border: none;
}
.dot.active { background: var(--gold-light); transform: scale(1.35); }

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: var(--red); padding: 12px 0; overflow: hidden;
  border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold);
}
.marquee-track {
  display: flex; gap: 60px;
  animation: marquee 22s linear infinite;
  white-space: nowrap; width: max-content;
}
.marquee-track span { font-size: 0.85rem; font-weight: 800; color: var(--white); letter-spacing: 2px; text-transform: uppercase; }
.marquee-track .sep { color: var(--gold-light); font-size: 1.1rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   SECTION GLOBALS
   ============================================================ */
section { padding: 80px 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.sec-tag { display: inline-block; color: var(--gold); font-size: 0.78rem; font-weight: 800; letter-spacing: 3.5px; text-transform: uppercase; margin-bottom: 12px; }
.sec-title { font-family: var(--font-h); font-size: clamp(1.8rem,4vw,3rem); font-weight: 900; color: var(--red-dark); line-height: 1.2; margin-bottom: 16px; }
.sec-sub { font-size: 1rem; color: var(--muted); max-width: 540px; line-height: 1.85; }
.sec-header { margin-bottom: 48px; }
.sec-header.center { text-align: center; }
.sec-header.center .sec-sub { margin: 0 auto; }
.gold-line { width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px; margin: 16px 0 0; }
.center .gold-line { margin: 16px auto 0; }

/* ============================================================
   WELCOME SECTION
   ============================================================ */
.welcome-section { background: var(--white); padding: 80px 24px; }
.welcome-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.welcome-text .sec-sub { max-width: none; }
.welcome-text p { margin-top: 16px; color: var(--muted); font-size: 0.95rem; line-height: 1.9; }
.welcome-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(200,150,12,0.1); border: 1.5px solid rgba(200,150,12,0.3);
  color: var(--text); padding: 8px 16px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 700;
}
.welcome-imgs {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr; gap: 12px; height: 420px;
}
.welcome-imgs .wi {
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 6px 24px rgba(139,0,0,0.12);
}
.welcome-imgs .wi img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.welcome-imgs .wi:first-child { grid-row: span 2; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: linear-gradient(135deg, var(--dark) 0%, #3A0800 100%);
  padding: 60px 24px; position: relative; overflow: hidden;
}
.stats-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat-item { color: var(--white); }
.stat-num { font-family: var(--font-h); font-size: clamp(2.4rem,4vw,3.4rem); font-weight: 900; color: var(--gold-light); line-height: 1; margin-bottom: 10px; }
.stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.65); letter-spacing: 0.5px; }

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products-section { background: var(--cream); }

/* ── Filter Buttons — premium pill style ── */
.filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 44px; justify-content: center;
}
.filter-btn {
  font-family: var(--font-b); font-size: 0.82rem; font-weight: 800;
  letter-spacing: 0.8px; text-transform: uppercase;
  padding: 10px 24px; border-radius: 50px;
  border: 2px solid rgba(200,150,12,0.35);
  background: var(--white); color: var(--muted);
  cursor: pointer; transition: all var(--trans);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.filter-btn:hover {
  border-color: var(--gold); color: var(--red-dark);
  background: rgba(200,150,12,0.07); transform: translateY(-1px);
}
.filter-btn.active {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-color: var(--red-dark); color: var(--white);
  box-shadow: 0 6px 20px rgba(192,0,10,0.28); transform: translateY(-1px);
}

/* ── Products Grid ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 26px;
}

/* ── Product Card ── */
.product-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  border: 1.5px solid rgba(200,150,12,0.18);
  box-shadow: 0 4px 20px rgba(139,0,0,0.07);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(139,0,0,0.16);
  border-color: rgba(200,150,12,0.45);
}

/* ── Product Image — full cover, no padding ── */
.product-img {
  height: 280px; position: relative; overflow: hidden;
  background: linear-gradient(160deg, #fff8ee 0%, #f5ecd8 100%);
  display: flex; align-items: center; justify-content: center;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  transition: transform 0.5s ease;
  padding: 0;
}
.product-card:hover .product-img img { transform: scale(1.05) translateY(-4px); }

.product-ribbon {
  position: absolute; top: 14px; left: 0;
  background: var(--red); color: var(--white);
  padding: 5px 14px; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  border-radius: 0 6px 6px 0;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.22);
}

.product-body { padding: 20px 18px; flex: 1; display: flex; flex-direction: column; }
.product-name { font-family: var(--font-h); font-size: 1.15rem; font-weight: 700; color: var(--red-dark); margin-bottom: 3px; }
.product-tamil { font-size: 0.8rem; color: var(--muted); margin-bottom: 4px; }
.product-desc { font-size: 0.86rem; color: var(--muted); line-height: 1.65; margin-bottom: 14px; flex: 1; }

/* ── Weight Buttons — premium ── */
.weight-options { display: flex; gap: 7px; margin: 10px 0 12px; flex-wrap: wrap; }
.weight-btn {
  font-family: var(--font-b); font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.5px; text-transform: uppercase;
  padding: 6px 13px; border-radius: 50px;
  border: 2px solid rgba(200,150,12,0.3);
  background: var(--white); color: var(--muted);
  cursor: pointer; transition: all 0.2s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.weight-btn:hover {
  border-color: var(--gold); color: var(--red-dark);
  transform: translateY(-1px);
}
.weight-btn.selected {
  background: linear-gradient(135deg, var(--red) 0%, #9B0000 100%);
  border-color: var(--red-dark); color: var(--white);
  box-shadow: 0 3px 12px rgba(192,0,10,0.32); transform: translateY(-1px);
}

/* ── Price & Qty Row ── */
.price-qty-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px; padding: 9px 12px;
  background: var(--cream); border-radius: var(--radius-sm);
  border: 1px solid rgba(200,150,12,0.15);
}
.qty-selector {
  display: flex; align-items: center;
  border: 2px solid rgba(200,150,12,0.3); border-radius: 50px; overflow: hidden;
}
.qty-btn {
  background: transparent; border: none;
  padding: 4px 13px; cursor: pointer;
  font-size: 1.1rem; font-weight: 700; color: var(--red);
  transition: background var(--trans); font-family: var(--font-b);
}
.qty-btn:hover { background: rgba(192,0,10,0.08); }
.qty-val { padding: 0 10px; font-weight: 800; font-size: 0.92rem; color: var(--text); min-width: 24px; text-align: center; }
.current-price { font-family: var(--font-h); font-size: 1.3rem; font-weight: 900; color: var(--red-dark); }

/* ── WhatsApp Order Button ── */
.btn-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--green); color: var(--white);
  padding: 12px 18px; border-radius: var(--radius-sm);
  font-weight: 800; font-size: 0.88rem;
  transition: all var(--trans); margin-top: auto;
}
.btn-wa:hover {
  background: #1da851; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

/* ── View All Button ── */
.btn-red {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white); padding: 14px 36px; border-radius: 50px;
  font-family: var(--font-b); font-weight: 800; font-size: 0.92rem;
  letter-spacing: 0.5px; transition: all var(--trans);
  box-shadow: 0 6px 24px rgba(192,0,10,0.28);
}
.btn-red:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark); transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(200,150,12,0.35);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  background: linear-gradient(135deg, var(--red-dark) 0%, #5c0000 100%);
  padding: 80px 24px; position: relative; overflow: hidden;
}
.why-section .sec-tag { color: var(--gold-light); opacity: 0.8; }
.why-section .sec-title { color: var(--gold-light); }
.why-section .sec-sub { color: rgba(255,255,255,0.7); }
.why-section .gold-line { background: linear-gradient(90deg, var(--gold-light), transparent); }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.why-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius); padding: 34px 22px; text-align: center;
  transition: background var(--trans), transform var(--trans);
}
.why-card:hover { background: rgba(255,255,255,0.13); transform: translateY(-5px); }
.why-icon { font-size: 2.6rem; margin-bottom: 16px; display: block; }
.why-title { font-family: var(--font-h); font-size: 1.05rem; font-weight: 700; color: var(--gold-light); margin-bottom: 10px; }
.why-desc { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.75; }

/* ============================================================
   PROMO BANNER STRIP
   ============================================================ */
.banner-strip {
  background: var(--cream-dark); padding: 52px 24px;
  border-top: 3px solid var(--gold-light); border-bottom: 3px solid var(--gold-light);
}
.banner-strip h3 { text-align: center; font-family: var(--font-h); font-size: 1.3rem; color: var(--red-dark); margin-bottom: 26px; font-weight: 700; }
.promo-slider { position: relative; overflow: hidden; border-radius: var(--radius); }
.promo-track { display: flex; transition: transform 0.6s ease; }
.promo-slide { min-width: 100%; border-radius: var(--radius); overflow: hidden; }
.promo-slide img { width: 100%; height: 360px; object-fit: cover; object-position: center; border-radius: var(--radius); }
.promo-arrows { display: flex; justify-content: center; gap: 12px; margin-top: 16px; }
.promo-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--red); border: none; color: var(--white);
  font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background var(--trans);
}
.promo-arrow:hover { background: var(--gold); }
.promo-dots { display: flex; justify-content: center; gap: 8px; margin-top: 12px; }
.promo-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(192,0,10,0.25); border: none; cursor: pointer; transition: all var(--trans);
}
.promo-dot.active { background: var(--red); transform: scale(1.3); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.testi-card {
  background: var(--cream); border: 1px solid rgba(200,150,12,0.2);
  border-radius: var(--radius); padding: 30px 24px; position: relative;
  transition: transform var(--trans), box-shadow var(--trans);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testi-card::before { content: '\201C'; font-family: var(--font-h); font-size: 5rem; color: var(--gold-light); opacity: 0.5; position: absolute; top: 6px; left: 18px; line-height: 1; }
.testi-text { font-size: 0.9rem; color: var(--muted); line-height: 1.85; margin-bottom: 18px; padding-top: 26px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--red); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: 0.88rem; color: var(--text); }
.testi-loc { font-size: 0.76rem; color: var(--muted); }
.stars { color: var(--gold); font-size: 0.82rem; margin-top: 2px; }

/* ============================================================
   PAGE HERO — inner pages (products, about, contact)
   Banner image shows fully, only subtle bottom gradient for text
   ============================================================ */
.page-hero {
  position: relative; overflow: hidden;
  width: 100%;
  /* Aspect ratio matches banner images: 1920×700 */
  height: calc(100vw * 700 / 1920);
  min-height: 260px; max-height: 640px;
  background-color: var(--dark);
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
/* NO overlay at all — show image 100% clean */
.page-hero::after { display: none; }

/* Hide ALL text inside hero — it moves below */
.page-hero-content { display: none; }

/* Page title section shown BELOW the banner image */
.page-title-bar {
  background: var(--white);
  border-bottom: 3px solid var(--gold-light);
  padding: 28px 24px;
  text-align: center;
}
.page-title-bar h1 {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900; color: var(--red-dark); margin-bottom: 8px;
}
.page-title-bar p {
  color: var(--muted); font-size: 0.95rem; max-width: 500px; margin: 0 auto 14px;
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; font-size: 0.84rem; color: var(--muted);
}
.breadcrumb a { color: var(--red); font-weight: 700; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span:last-child { color: var(--gold); font-weight: 700; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-section { background: var(--white); }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-wrap img { width: 100%; height: 480px; object-fit: cover; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { background: var(--white); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.contact-info-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); background: rgba(192,0,10,0.08); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-info-title { font-weight: 700; font-size: 0.93rem; color: var(--red-dark); margin-bottom: 4px; }
.contact-info-text { font-size: 0.87rem; color: var(--muted); line-height: 1.65; }
.contact-form-wrap { background: var(--cream); border: 1px solid rgba(200,150,12,0.2); border-radius: var(--radius); padding: 38px; }
.contact-form-wrap h3 { font-family: var(--font-h); font-size: 1.45rem; color: var(--red-dark); margin-bottom: 26px; font-weight: 700; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.84rem; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.form-control { width: 100%; padding: 12px 15px; border: 1.5px solid rgba(200,150,12,0.25); border-radius: var(--radius-sm); background: var(--white); font-family: var(--font-b); font-size: 0.91rem; color: var(--text); transition: border-color var(--trans), box-shadow var(--trans); outline: none; }
.form-control:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(192,0,10,0.08); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-submit { display: inline-flex; align-items: center; gap: 10px; background: var(--red); color: var(--white); padding: 14px 34px; border-radius: 50px; font-family: var(--font-b); font-size: 0.93rem; font-weight: 800; border: none; cursor: pointer; transition: all var(--trans); }
.form-submit:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(200,150,12,0.3); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); color: rgba(255,255,255,0.72); padding: 68px 24px 28px; border-top: 4px solid var(--gold); }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 44px; margin-bottom: 48px; }
.footer-logo img { height: 54px; margin-bottom: 14px; }
.footer-about { font-size: 0.86rem; color: rgba(255,255,255,0.5); line-height: 1.85; max-width: 270px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: all var(--trans); }
.social-btn:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.footer-col h4 { color: var(--white); font-family: var(--font-h); font-size: 1rem; font-weight: 700; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(200,150,12,0.3); }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 0.86rem; color: rgba(255,255,255,0.5); transition: color var(--trans); }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 13px; font-size: 0.86rem; color: rgba(255,255,255,0.5); }
.footer-contact-item .ico { font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.81rem; color: rgba(255,255,255,0.3); }

/* ============================================================
   FLOATING WHATSAPP + BACK TO TOP
   ============================================================ */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 900; }
.wa-float a { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: var(--green); font-size: 1.6rem; box-shadow: 0 6px 24px rgba(37,211,102,0.45); animation: waPulse 2.5s infinite; transition: transform var(--trans); }
.wa-float a:hover { transform: scale(1.1); animation: none; }
@keyframes waPulse { 0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); } 50% { box-shadow: 0 6px 36px rgba(37,211,102,0.7); } }
#btt { position: fixed; bottom: 92px; right: 24px; z-index: 800; width: 40px; height: 40px; border-radius: 50%; background: var(--red); color: var(--white); border: none; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all var(--trans); box-shadow: 0 4px 16px rgba(192,0,10,0.35); }
#btt.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#btt:hover { background: var(--gold); transform: translateY(-3px); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.anim { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.anim.visible { opacity: 1; transform: translateY(0); }
.anim:nth-child(2) { transition-delay: 0.08s; }
.anim:nth-child(3) { transition-delay: 0.16s; }
.anim:nth-child(4) { transition-delay: 0.24s; }
.anim:nth-child(5) { transition-delay: 0.32s; }
.anim:nth-child(6) { transition-delay: 0.40s; }

/* ============================================================
   RESPONSIVE — TABLET ≤ 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .welcome-layout { grid-template-columns: 1fr; gap: 36px; }
  .welcome-imgs { height: 300px; }
  .about-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .page-hero { height: calc(100vw * 700 / 1920); min-height: 180px; max-height: 400px; }
}

/* ============================================================
   RESPONSIVE — MOBILE ≤ 768px
   ============================================================ */
@media (max-width: 768px) {
  /* Nav */
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed; top: 76px; left: 0; right: 0;
    background: var(--white); flex-direction: column;
    align-items: flex-start; padding: 12px 20px 24px; gap: 0;
    border-bottom: 2px solid var(--gold-light); box-shadow: var(--shadow);
    transform: translateY(-110%); transition: transform var(--trans);
    z-index: 999; max-height: calc(100vh - 76px); overflow-y: auto;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu li { width: 100%; }
  .nav-link { display: block; padding: 13px 4px; border-bottom: 1px solid var(--cream-dark); }
  .nav-cta { display: block; margin-top: 12px; text-align: center; border-bottom: none !important; }

  /* Sections */
  section { padding: 56px 16px; }

  /* Hero */
  .hero-slider { height: calc(100vw * 700 / 1920); min-height: 200px; max-height: 420px; }
  .slider-prev { left: 10px; }
  .slider-next { right: 10px; }

  /* Page hero */
  .page-hero { height: calc(100vw * 700 / 1920); min-height: 160px; }
  .page-hero h1 { font-size: clamp(1.6rem,6vw,2.4rem); }
  .page-hero p { font-size: 0.9rem; }

  /* Products */
  .products-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .product-img { height: 220px; }
  .product-body { padding: 14px 12px; }
  .product-name { font-size: 1rem; }
  .weight-btn { padding: 5px 10px; font-size: 0.7rem; }
  .current-price { font-size: 1.1rem; }

  /* Filter */
  .filter-bar { gap: 7px; }
  .filter-btn { padding: 8px 16px; font-size: 0.76rem; }

  /* Why */
  .why-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .why-card { padding: 24px 16px; }

  /* Testi */
  .testi-grid { grid-template-columns: 1fr; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2,1fr); }

  /* Promo */
  .promo-slide img { height: 220px; }

  /* Welcome */
  .welcome-layout { grid-template-columns: 1fr; }
  .welcome-imgs { height: 220px; grid-template-columns: 1fr 1fr; }
  .welcome-imgs .wi:first-child { grid-row: span 1; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Contact */
  .contact-form-wrap { padding: 22px 16px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE ≤ 480px
   ============================================================ */
@media (max-width: 480px) {
  .nav-inner { height: 64px; padding: 0 14px; }
  .nav-logo img { height: 44px; }
  .nav-menu { top: 24px; }

  .hero-slider { height: calc(100vw * 700 / 1920); min-height: 180px; }

  .products-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-img { height: 280px; }

  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .why-grid { grid-template-columns: 1fr; }

  .welcome-imgs { height: 200px; }

  .page-hero { height: calc(100vw * 700 / 1920); min-height: 140px; }
}

