/* ═══════════════════════════════════════
   KRISHNA GENERAL STORE — STYLES
   Theme: Rose Pink & White
═══════════════════════════════════════ */

:root {
  --pink-deep:   #C2185B;
  --pink-main:   #E91E8C;
  --pink-mid:    #F06292;
  --pink-light:  #FCE4EC;
  --pink-blush:  #FFF0F6;
  --gold:        #F9A825;
  --white:       #FFFFFF;
  --off-white:   #FDF8FB;
  --text-dark:   #1A0A12;
  --text-mid:    #4A2035;
  --text-soft:   #8B5A72;
  --border:      #F8D7E8;
  --shadow-pink: 0 8px 32px rgba(233,30,140,0.12);
  --shadow-card: 0 4px 24px rgba(194,24,91,0.08);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --transition:  0.3s 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: 'Plus Jakarta Sans', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }

/* ── PETALS ── */
.petals-container {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.petal {
  position: absolute;
  width: 12px; height: 16px;
  background: linear-gradient(135deg, #F48FB1, #F06292);
  border-radius: 50% 0 50% 0;
  opacity: 0;
  animation: petalFall linear infinite;
}
.petal:nth-child(1)  { left:5%;  animation-duration:8s;  animation-delay:0s;   width:10px; height:14px; }
.petal:nth-child(2)  { left:15%; animation-duration:10s; animation-delay:1s;   background:linear-gradient(135deg,#FFB3C6,#FF80AB); }
.petal:nth-child(3)  { left:25%; animation-duration:7s;  animation-delay:2s;   width:8px; height:12px; }
.petal:nth-child(4)  { left:35%; animation-duration:11s; animation-delay:0.5s; background:linear-gradient(135deg,#F8BBD9,#F48FB1); }
.petal:nth-child(5)  { left:45%; animation-duration:9s;  animation-delay:3s; }
.petal:nth-child(6)  { left:55%; animation-duration:8s;  animation-delay:1.5s; width:14px; height:18px; }
.petal:nth-child(7)  { left:65%; animation-duration:12s; animation-delay:0.8s; background:linear-gradient(135deg,#FFB3C6,#FF4081); }
.petal:nth-child(8)  { left:72%; animation-duration:7s;  animation-delay:2.5s; width:9px; height:13px; }
.petal:nth-child(9)  { left:80%; animation-duration:10s; animation-delay:4s; }
.petal:nth-child(10) { left:88%; animation-duration:9s;  animation-delay:1.2s; background:linear-gradient(135deg,#F8BBD9,#E91E8C); }
.petal:nth-child(11) { left:93%; animation-duration:8s;  animation-delay:3.5s; width:11px; height:15px; }
.petal:nth-child(12) { left:10%; animation-duration:11s; animation-delay:5s;   background:linear-gradient(135deg,#FFB3C6,#F06292); }

@keyframes petalFall {
  0%   { transform: translateY(-20px) rotate(0deg);   opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
}

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(233,30,140,0.1); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 70px; display: flex; align-items: center; gap: 24px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo { font-size: 28px; line-height: 1; }
.nav-text { display: flex; flex-direction: column; }
.nav-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 700; color: var(--pink-deep); line-height: 1.2;
}
.nav-sub { font-size: 11px; color: var(--text-soft); font-weight: 500; letter-spacing: 0.05em; }
.nav-links { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-mid);
  transition: var(--transition); position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--pink-main); border-radius: 2px; transition: var(--transition);
}
.nav-links a:hover { color: var(--pink-main); }
.nav-links a:hover::after { width: 100%; }
.btn-wa-nav {
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white; padding: 10px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 600; white-space: nowrap;
  transition: var(--transition); box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.btn-wa-nav:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--pink-deep); border-radius: 2px; transition: var(--transition);
}

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding-top: 70px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(194,24,91,0.82) 0%,
    rgba(233,30,140,0.65) 40%,
    rgba(26,10,18,0.75) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 40px 24px; max-width: 800px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white; padding: 8px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.05em; margin-bottom: 20px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800; color: white; line-height: 1.1; margin-bottom: 20px;
}
.hero-title-hindi {
  display: block; font-size: clamp(20px, 3vw, 36px);
  font-weight: 400; font-style: italic;
  color: rgba(255,255,255,0.8); margin-bottom: 4px;
}
.hero-tagline {
  font-size: clamp(15px, 2vw, 20px); color: rgba(255,255,255,0.9);
  margin-bottom: 36px; line-height: 1.6;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white; padding: 16px 32px; border-radius: 50px;
  font-size: 16px; font-weight: 700;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4); transition: var(--transition);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(37,211,102,0.5); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.5);
  color: white; padding: 14px 32px; border-radius: 50px;
  font-size: 16px; font-weight: 600; transition: var(--transition);
}
.btn-secondary:hover { background: rgba(255,255,255,0.25); transform: translateY(-3px); }
.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 32px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg); padding: 20px 40px; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 800; color: white;
}
.stat-label { font-size: 12px; color: rgba(255,255,255,0.75); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.3); }
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; text-align: center; color: rgba(255,255,255,0.7);
  font-size: 12px; font-weight: 500; letter-spacing: 0.1em;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,0.6);
  border-bottom: 2px solid rgba(255,255,255,0.6);
  transform: rotate(45deg); margin: 8px auto 0;
  animation: bounce 1.5s infinite;
}
@keyframes bounce {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(45deg) translateY(6px); }
}

/* ── MARQUEE ── */
.marquee-strip {
  background: linear-gradient(135deg, var(--pink-deep), var(--pink-main));
  padding: 14px 0; overflow: hidden; position: relative; z-index: 1;
}
.marquee-track {
  display: flex; gap: 48px; width: max-content;
  animation: marquee 25s linear infinite;
}
.marquee-track span {
  color: white; font-size: 14px; font-weight: 600;
  white-space: nowrap; letter-spacing: 0.03em;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  background: var(--pink-light); color: var(--pink-deep);
  padding: 6px 16px; border-radius: 50px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px); font-weight: 800;
  color: var(--text-dark); line-height: 1.2; margin-bottom: 12px;
}
.section-title em { color: var(--pink-main); font-style: italic; }
.section-title.left { text-align: left; }
.section-sub { font-size: 16px; color: var(--text-soft); max-width: 500px; margin: 0 auto; }

/* ── CATEGORIES ── */
.categories { background: var(--white); }
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cat-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--white); box-shadow: var(--shadow-card);
  transition: var(--transition); border: 1px solid var(--border);
}
.cat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-pink); }
.cat-img-wrap { position: relative; height: 200px; overflow: hidden; }
.cat-img-wrap img { transition: transform 0.5s ease; }
.cat-card:hover .cat-img-wrap img { transform: scale(1.08); }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(194,24,91,0.85), transparent);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 20px; opacity: 0; transition: var(--transition);
}
.cat-card:hover .cat-overlay { opacity: 1; }
.cat-btn {
  background: white; color: var(--pink-deep);
  padding: 8px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 700; transition: var(--transition);
}
.cat-btn:hover { background: var(--pink-main); color: white; }
.cat-info { padding: 20px; }
.cat-icon { font-size: 28px; margin-bottom: 8px; }
.cat-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px;
}
.cat-info p { font-size: 13px; color: var(--text-soft); line-height: 1.5; margin-bottom: 10px; }
.cat-count {
  display: inline-block; background: var(--pink-light);
  color: var(--pink-deep); padding: 4px 12px; border-radius: 50px;
  font-size: 11px; font-weight: 700;
}

/* ── PRODUCTS ── */
.arrivals { background: var(--pink-blush); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-card);
  border: 1px solid var(--border); transition: var(--transition);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-pink); }
.product-img-wrap { position: relative; height: 220px; overflow: hidden; }
.product-img-wrap img { 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: var(--pink-main); color: white;
  padding: 4px 12px; border-radius: 50px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em;
}
.product-badge.hot  { background: #FF5722; }
.product-badge.sale { background: var(--gold); color: var(--text-dark); }
.product-info { padding: 18px; }
.product-cat {
  font-size: 11px; font-weight: 700; color: var(--pink-mid);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.product-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 700; color: var(--text-dark);
  margin: 6px 0 10px; line-height: 1.3;
}
.product-price { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.price-current {
  font-size: 20px; font-weight: 800; color: var(--pink-deep);
  font-family: 'Playfair Display', serif;
}
.price-old { font-size: 14px; color: var(--text-soft); text-decoration: line-through; }
.btn-product-wa {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; background: linear-gradient(135deg, #25D366, #128C7E);
  color: white; padding: 11px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600; transition: var(--transition);
}
.btn-product-wa:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }

/* ── FESTIVAL ── */
.festival { background: var(--white); }
.festival-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.festival-card {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-card); border: 1px solid var(--border);
  transition: var(--transition); background: var(--white);
}
.festival-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(233,30,140,0.18); }
.festival-img { position: relative; height: 220px; overflow: hidden; }
.festival-img img { transition: transform 0.6s ease; }
.festival-card:hover .festival-img img { transform: scale(1.08); }
.festival-glow {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(194,24,91,0.6) 0%, transparent 60%);
}
.festival-content { padding: 24px; }
.festival-emoji { font-size: 32px; margin-bottom: 10px; }
.festival-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 800; color: var(--text-dark); margin-bottom: 8px;
}
.festival-content p { font-size: 14px; color: var(--text-soft); line-height: 1.6; margin-bottom: 16px; }
.festival-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.festival-tags span {
  background: var(--pink-light); color: var(--pink-deep);
  padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 600;
}
.btn-festival {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, var(--pink-deep), var(--pink-main));
  color: white; padding: 12px 28px; border-radius: 50px;
  font-size: 14px; font-weight: 700; transition: var(--transition);
  box-shadow: 0 4px 16px rgba(233,30,140,0.3);
}
.btn-festival:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(233,30,140,0.4); }

/* ── ABOUT ── */
.about { background: var(--pink-blush); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-frame {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  height: 480px; box-shadow: 0 20px 60px rgba(194,24,91,0.2);
}
.about-badge-float {
  position: absolute; bottom: 24px; right: 24px;
  background: linear-gradient(135deg, var(--pink-deep), var(--pink-main));
  color: white; padding: 16px 20px; border-radius: var(--radius-md);
  text-align: center; box-shadow: 0 8px 24px rgba(194,24,91,0.4);
}
.about-badge-year { display: block; font-size: 12px; font-weight: 600; opacity: 0.85; }
.about-badge-num {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 800; line-height: 1;
}
.about-text-col .section-tag { display: inline-block; margin-bottom: 12px; }
.about-desc { font-size: 15px; color: var(--text-soft); line-height: 1.8; margin-bottom: 16px; }
.about-values { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.value-item {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); padding: 16px 20px; border-radius: var(--radius-md);
  border: 1px solid var(--border); transition: var(--transition);
}
.value-item:hover { border-color: var(--pink-mid); box-shadow: var(--shadow-card); }
.value-icon { font-size: 24px; flex-shrink: 0; }
.value-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--text-dark); }
.value-item span { font-size: 13px; color: var(--text-soft); }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--pink-blush); border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid var(--border); transition: var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-pink); }
.testi-stars { color: var(--gold); font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-deep), var(--pink-main));
  color: white; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 14px; font-weight: 700; color: var(--text-dark); }
.testi-author span { font-size: 12px; color: var(--text-soft); }

/* ── CONTACT ── */
.contact { background: var(--pink-blush); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 24px; border: 1px solid var(--border); transition: var(--transition);
}
.contact-card:hover { border-color: var(--pink-mid); box-shadow: var(--shadow-card); }
.contact-icon { font-size: 28px; margin-bottom: 10px; }
.contact-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px;
}
.contact-card p { font-size: 14px; color: var(--text-soft); line-height: 1.6; }
.contact-link {
  display: inline-block; margin-top: 10px;
  color: var(--pink-main); font-size: 13px; font-weight: 700;
  border-bottom: 1px solid var(--pink-mid);
}
.contact-actions {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 40px; border: 1px solid var(--border); box-shadow: var(--shadow-card);
}
.contact-actions h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 800; color: var(--text-dark); margin-bottom: 8px;
}
.contact-actions p { font-size: 15px; color: var(--text-soft); margin-bottom: 28px; }
.contact-btns { display: flex; flex-direction: column; gap: 14px; }
.btn-wa-big {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white; padding: 16px 28px; border-radius: 50px;
  font-size: 16px; font-weight: 700; transition: var(--transition);
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
}
.btn-wa-big:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(37,211,102,0.45); }
.btn-maps {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: linear-gradient(135deg, #4285F4, #1565C0);
  color: white; padding: 16px 28px; border-radius: 50px;
  font-size: 16px; font-weight: 700; transition: var(--transition);
  box-shadow: 0 6px 24px rgba(66,133,244,0.3);
}
.btn-maps:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(66,133,244,0.4); }

/* ── FOOTER ── */
.footer { background: var(--text-dark); color: rgba(255,255,255,0.8); }
.footer-top { padding: 64px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; color: white; margin-bottom: 14px;
}
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: white; transition: var(--transition);
}
.footer-social a:hover { background: var(--pink-main); transform: translateY(-3px); }
.footer-col h5 {
  font-size: 14px; font-weight: 700; color: white;
  margin-bottom: 16px; letter-spacing: 0.05em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--pink-mid); padding-left: 4px; }
.footer-contact-list li { font-size: 13px; color: rgba(255,255,255,0.65); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
.footer-bottom .container {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.5); }

/* ── FLOATING WHATSAPP ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
  transition: var(--transition); animation: waPulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 12px 40px rgba(37,211,102,0.6); animation: none; }
.wa-float-tooltip {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
  background: var(--text-dark); color: white;
  padding: 6px 14px; border-radius: 8px; font-size: 13px; font-weight: 600;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: var(--transition);
}
.wa-float:hover .wa-float-tooltip { opacity: 1; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
  50%      { box-shadow: 0 8px 48px rgba(37,211,102,0.7), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid   { grid-template-columns: repeat(2, 1fr); }
  .festival-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-inner     { grid-template-columns: 1fr; gap: 40px; }
  .about-img-frame { height: 320px; }
  .contact-inner   { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none; position: fixed; top: 70px; left: 0; right: 0;
    background: white; flex-direction: column; padding: 24px;
    border-bottom: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .btn-wa-nav span { display: none; }
  .hero-stats { gap: 20px; padding: 16px 24px; }
  .stat-divider { display: none; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .products-grid   { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .festival-grid   { grid-template-columns: 1fr; }
  .testi-grid      { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr; gap: 28px; }
  .section-pad     { padding: 56px 0; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr; }
  .products-grid   { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .contact-btns .btn-wa-big,
  .contact-btns .btn-maps { font-size: 14px; padding: 14px 20px; }
}