/* ═══════════════════════════════════════════════════════════
   Chillmist Website — style.css
   ═══════════════════════════════════════════════════════════
   HOW TO EDIT COLOURS:
   Find the :root block at the top and change:
     --red    → brand red colour
     --yellow → brand yellow colour
     --dark   → page background
   ─────────────────────────────────────────────────────────── */

/* ═══════════ CSS VARIABLES — EDIT COLOURS HERE ═══════════ */
:root {
  --red:    #e31e24;       /* Brand red   */
  --yellow: #f5c000;       /* Brand yellow */
  --dark:   #1b1818;       /* Background  */
  --dark2:  #1a1a1a;       /* Card bg     */
  --dark3:  #242424;       /* Section bg  */
  --white:  #ffffff;
  --grey:   #a0a0a0;
  --light:  #f5f0e8;
  --radius: 18px;
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* ═══════════ RESET & BASE ═══════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ═══════════ SCROLLBAR ═══════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ═══════════ NAVBAR ═══════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  background: rgba(15,15,15,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s;
}
nav.scrolled {
  background: rgba(15,15,15,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-logo img { height: 44px; object-fit: contain; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--grey); text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--yellow); }
.nav-cta {
  background: var(--red); color: var(--white);
  padding: 9px 24px; border-radius: 30px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}
.nav-cta:hover { background: #c41a20; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--dark2);
  padding: 24px 5%; z-index: 999;
  flex-direction: column; gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--white); text-decoration: none; font-size: 1.1rem; font-weight: 600; }

/* ═══════════ HERO ═══════════ */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%,
    rgba(227,30,36,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 80%,
    rgba(245,192,0,0.10) 0%, transparent 60%),
    var(--dark);
}
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-eyebrow {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--yellow);
  background: rgba(245,192,0,0.12);
  border: 1px solid rgba(245,192,0,0.3);
  padding: 6px 20px; border-radius: 30px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.hero-logo {
  margin-bottom: 28px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-logo img { height: 90px; filter: drop-shadow(0 6px 30px rgba(227,30,36,0.5)); }
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 900; line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-title .red { color: var(--red); }
.hero-title .yellow { color: var(--yellow); }
.hero-tagline {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--yellow);
  margin: 18px 0 32px;
  animation: fadeUp 0.8s 0.35s ease both;
}
.hero-desc {
  font-size: 1.1rem; color: var(--grey);
  max-width: 560px; margin: 0 auto 44px;
  line-height: 1.7;
  animation: fadeUp 0.8s 0.45s ease both;
}
.hero-btns {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.55s ease both;
}
.btn-primary {
  background: var(--red); color: var(--white);
  padding: 14px 36px; border-radius: 50px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none;
  border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 30px rgba(227,30,36,0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(227,30,36,0.5); }
.btn-outline {
  border: 2px solid var(--yellow); color: var(--yellow);
  padding: 14px 36px; border-radius: 50px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--yellow); color: var(--dark); }

.hero-stats {
  display: flex; gap: 48px; justify-content: center; flex-wrap: wrap;
  margin-top: 70px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeUp 0.8s 0.7s ease both;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--yellow), var(--red));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 0.8rem; color: var(--grey); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }

/* Scroll indicator */
.scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--grey); font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; animation: fadeUp 1s 1s ease both;
}
.scroll-arrow { width: 20px; height: 20px; border-right: 2px solid var(--grey); border-bottom: 2px solid var(--grey); transform: rotate(45deg); animation: bounce 1.5s infinite; }
@keyframes bounce { 0%,100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(6px); } }

/* ═══════════ TRUST BAR ═══════════ */
.trust-bar {
  background: var(--red);
  padding: 16px 5%;
  display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
  align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
}
.trust-item .icon { font-size: 1.2rem; }

/* ═══════════ SECTION STYLES ═══════════ */
section { padding: 80px 5%; }
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--yellow);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900; line-height: 1;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title span { color: var(--red); }
.section-sub { color: var(--grey); font-size: 1rem; line-height: 1.6; max-width: 550px; }

/* ═══════════ PRODUCTS SECTION ═══════════ */
#products { background: var(--dark3); }
.products-header { text-align: center; margin-bottom: 48px; }
.products-header .section-sub { margin: 0 auto; }

/* Filter tabs */
.filter-tabs {
  display: flex; gap: 10px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 48px;
}
.filter-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 22px; border-radius: 30px;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: transparent; color: var(--grey);
  cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--yellow); color: var(--yellow); }
.filter-btn.active { background: var(--red); border-color: var(--red); color: var(--white); }

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
  max-width: 1400px; margin: 0 auto;
}

/* Product cards */
.product-card {
  background: var(--dark2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
  animation: cardIn 0.5s ease both;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  border-color: rgba(227,30,36,0.3);
}
.product-card.hidden { display: none; }

.product-img-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #111;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(15,15,15,0.85);
  border: 1.5px solid #2d8a2d;
  color: var(--white);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 5px;
}
.veg-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2d8a2d;
  display: inline-block;
}

.product-info { padding: 20px; }
.product-tagline {
  font-size: 0.78rem; font-weight: 500;
  color: var(--yellow); letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 6px;
}
.product-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.45rem; font-weight: 800; line-height: 1.1;
  text-transform: uppercase; margin-bottom: 14px;
}
.product-meta {
  display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px;
}
.meta-pill {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 10px; border-radius: 20px;
  font-size: 0.72rem; color: var(--grey);
}
.product-badges-row { display: flex; gap: 6px; flex-wrap: wrap; }
.badge-tag {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px;
  background: rgba(227,30,36,0.15);
  border: 1px solid rgba(227,30,36,0.3);
  color: #ff6b6b;
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════ WHY CHILLMIST ═══════════ */
#why { background: var(--dark); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.feature-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 0.3s, transform 0.3s;
}
.feature-card:hover { border-color: var(--yellow); transform: translateY(-4px); }
.feature-icon { font-size: 2rem; margin-bottom: 12px; }
.feature-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 800; text-transform: uppercase;
  margin-bottom: 6px;
}
.feature-desc { font-size: 0.88rem; color: var(--grey); line-height: 1.5; }
.why-visual {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  aspect-ratio: 1/1;
}
.why-img {
  border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow);
}
.why-img img { width: 100%; height: 100%; object-fit: cover; }
.why-img:nth-child(1) { grid-column: 1/2; grid-row: 1/2; }
.why-img:nth-child(2) { grid-column: 2/3; grid-row: 1/3; border-radius: 14px; }
.why-img:nth-child(3) { grid-column: 1/2; grid-row: 2/3; }

/* ═══════════ ABOUT ═══════════ */
#about {
  background: var(--dark3);
  text-align: center;
}
.about-inner { max-width: 820px; margin: 0 auto; }
.about-tagline {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--yellow); margin: 16px 0 24px;
}
.about-text { color: var(--grey); font-size: 1rem; line-height: 1.8; margin-bottom: 20px; }
.about-pillars {
  display: flex; gap: 20px; justify-content: center;
  flex-wrap: wrap; margin-top: 40px;
}
.pillar {
  background: var(--dark2);
  border: 1px solid rgba(245,192,0,0.25);
  border-radius: 12px;
  padding: 20px 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 800;
  text-transform: uppercase;
  color: var(--yellow);
}

/* ═══════════ CONTACT ═══════════ */
#contact { background: var(--dark); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; max-width: 1100px; margin: 48px auto 0;
  align-items: start;
}
.contact-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem; font-weight: 900; text-transform: uppercase;
  margin-bottom: 24px;
}
/* ── CONTACT DETAILS — Edit these values ──────────── */
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 20px;
}
.contact-item .c-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(227,30,36,0.15);
  border: 1px solid rgba(227,30,36,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-item .c-label { font-size: 0.78rem; color: var(--grey); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 3px; }
.contact-item .c-value { font-size: 1rem; font-weight: 600; }
.contact-item a { color: var(--white); text-decoration: none; }
.contact-item a:hover { color: var(--yellow); }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group input, .form-group textarea {
  width: 100%;
  background: var(--dark2);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--white); font-family: 'Barlow', sans-serif; font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--red); }
.form-group textarea { height: 130px; resize: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--grey); }
.form-submit {
  background: var(--red); color: var(--white);
  padding: 14px; border-radius: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.form-submit:hover { background: #c41a20; transform: translateY(-2px); }

/* ═══════════ FOOTER ═══════════ */
footer {
  background: #080808;
  padding: 48px 5% 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 40px; margin-bottom: 40px;
}
.footer-brand img { height: 50px; margin-bottom: 12px; }
.footer-brand p { color: var(--grey); font-size: 0.88rem; max-width: 260px; line-height: 1.6; }
.footer-links h4, .footer-social h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 16px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--grey); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.social-icons { display: flex; gap: 12px; }
.social-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey); text-decoration: none; font-size: 1rem;
  transition: all 0.2s;
}
.social-icon:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  font-size: 0.82rem; color: var(--grey);
}
.footer-bottom a { color: var(--grey); text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }
.fssai-badge {
  background: var(--dark2); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 6px 14px;
  font-size: 0.78rem; color: var(--grey); letter-spacing: 0.05em;
}
.fssai-badge span { color: var(--yellow); font-weight: 700; }

/* ═══════════ ANIMATIONS ═══════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  section { padding: 60px 5%; }
  .why-features { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; }
  .about-pillars { flex-direction: column; align-items: center; }
  .footer-top { flex-direction: column; }
  .trust-bar { gap: 20px; }
}

/* ═══════════ PRODUCT MODAL ═══════════ */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.85); backdrop-filter: blur(10px);
  z-index: 2000; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--dark2);
  border-radius: 20px;
  max-width: 600px; width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
.modal-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.modal-body { padding: 28px; }
.modal-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem; font-weight: 900; text-transform: uppercase;
  margin-bottom: 8px;
}
.modal-tagline { color: var(--yellow); font-size: 0.95rem; margin-bottom: 16px; }
.modal-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.modal-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.modal-close {
  width: 100%; padding: 13px;
  background: var(--red); color: var(--white); border: none;
  border-radius: 10px; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}