/* =========================================================
   NAW SHAKTI — PREMIUM ANIMATION LAYER
   Adds: glass-morphism, gradient text, scroll reveals,
   hover lifts, animated buttons, parallax, shimmer, etc.
   Layered on top of style.css — non-destructive.
   ========================================================= */

:root {
  --shadow-premium: 0 20px 60px -10px rgba(30, 90, 40, 0.25);
  --shadow-glow-green: 0 0 40px rgba(46, 125, 50, 0.35);
  --shadow-glow-gold: 0 0 32px rgba(253, 216, 53, 0.45);
  --gradient-green: linear-gradient(135deg, #1a5c2a 0%, #2e7d32 45%, #66bb6a 100%);
  --gradient-gold: linear-gradient(135deg, #fdd835 0%, #ffb300 50%, #ff8f00 100%);
  --gradient-mesh: radial-gradient(at 12% 18%, rgba(46,125,50,0.18) 0px, transparent 50%),
                   radial-gradient(at 88% 6%, rgba(253,216,53,0.18) 0px, transparent 45%),
                   radial-gradient(at 60% 95%, rgba(102,187,106,0.20) 0px, transparent 50%);
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===== BODY BACKGROUND MESH ===== */
body {
  background-color: #f9fef9;
  background-image: var(--gradient-mesh);
  background-attachment: fixed;
}

/* ===== TEXT SELECTION ===== */
::selection { background: var(--green-main); color: #fff; }

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: #f1f8e9; }
::-webkit-scrollbar-thumb {
  background: var(--gradient-green);
  border-radius: 10px;
  border: 2px solid #f1f8e9;
}
::-webkit-scrollbar-thumb:hover { background: var(--green-dark); }

/* ===== SCROLL REVEAL (default state) ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-premium), transform 0.9s var(--ease-premium);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-zoom  { transform: scale(0.92); }
.reveal-left.in-view, .reveal-right.in-view, .reveal-zoom.in-view {
  transform: translateX(0) scale(1);
}

/* stagger via inline style --d (delay) */
.reveal[style*="--d"] { transition-delay: var(--d); }

/* ===== NAVBAR PREMIUM ===== */
.navbar {
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  background: linear-gradient(180deg, rgba(26,92,42,0.96), rgba(26,92,42,0.88));
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.18), inset 0 -1px 0 rgba(255,255,255,0.08);
  transition: padding 0.4s var(--ease-premium), background 0.4s ease;
}
.navbar.scrolled {
  background: linear-gradient(180deg, rgba(26,92,42,0.98), rgba(26,92,42,0.95));
  box-shadow: 0 10px 40px rgba(0,0,0,0.22);
}
.nav-main { transition: padding 0.4s var(--ease-premium); }
.navbar.scrolled .nav-main { padding: 6px 0; }

.nav-links a {
  position: relative;
  transition: color 0.25s ease;
}
.nav-links a:not(.nav-cta):not(.nav-whatsapp)::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--yellow-main);
  border-radius: 2px;
  transition: width 0.35s var(--ease-premium), left 0.35s var(--ease-premium);
}
.nav-links a:not(.nav-cta):not(.nav-whatsapp):hover::after,
.nav-links a.active::after { width: 80%; left: 10%; }

.nav-cta, .nav-whatsapp {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s ease;
}
.nav-cta:hover, .nav-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}
.nav-cta::before, .nav-whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.nav-cta:hover::before, .nav-whatsapp:hover::before { transform: translateX(100%); }

.nav-brand .logo-circle {
  transition: transform 0.5s var(--ease-bounce), box-shadow 0.4s ease;
  box-shadow: 0 4px 18px rgba(0,0,0,0.2);
}
.nav-brand:hover .logo-circle {
  transform: rotate(-8deg) scale(1.08);
  box-shadow: var(--shadow-glow-gold);
}

/* ===== HERO PREMIUM ===== */
.hero, .hero-slide, .page-header {
  position: relative;
  overflow: hidden;
}
.hero::before, .page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(253,216,53,0.18), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(102,187,106,0.22), transparent 45%);
  pointer-events: none;
  animation: heroGlow 12s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0%   { transform: scale(1) translate(0,0); opacity: 0.85; }
  100% { transform: scale(1.15) translate(2%, -2%); opacity: 1; }
}

.hero h1, .page-header h1 {
  background: linear-gradient(120deg, #fff 0%, #fff9c4 50%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineText 6s linear infinite;
}
@keyframes shineText {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* hero floating particles */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.5) 1.5px, transparent 2px);
  background-size: 64px 64px;
  opacity: 0.18;
  animation: drift 22s linear infinite;
  pointer-events: none;
}
@keyframes drift {
  from { background-position: 0 0; }
  to   { background-position: 640px 640px; }
}

/* ===== BUTTONS PREMIUM ===== */
.btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s ease, filter 0.3s ease;
  isolation: isolate;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,0.45) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease-premium);
  z-index: 0;
}
.btn:hover::before { transform: translateX(120%); }
.btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 34px rgba(0,0,0,0.18); }
.btn:active { transform: translateY(-1px) scale(0.99); }
.btn > * { position: relative; z-index: 1; }

.btn-green  { background: var(--gradient-green); color: #fff; border: none; }
.btn-yellow { background: var(--gradient-gold);  color: var(--green-dark); border: none; }
.btn-whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); color: #fff; border: none; }

.btn-green:hover    { box-shadow: var(--shadow-glow-green); }
.btn-yellow:hover   { box-shadow: var(--shadow-glow-gold); }
.btn-whatsapp:hover { box-shadow: 0 12px 30px rgba(37,211,102,0.45); }

/* ===== PRODUCT CARDS PREMIUM ===== */
.product-card {
  position: relative;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(200, 230, 201, 0.6);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.5s var(--ease-premium), box-shadow 0.5s ease, border-color 0.4s ease;
  transform-style: preserve-3d;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(46,125,50,0.06));
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}
.product-card:hover {
  transform: translateY(-10px) rotateX(2deg);
  box-shadow: var(--shadow-premium);
  border-color: var(--green-light);
}
.product-card:hover::before { opacity: 1; }

.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.product-card-img img {
  transition: transform 0.8s var(--ease-premium), filter 0.5s ease;
}
.product-card:hover .product-card-img img {
  transform: scale(1.08) rotate(-1deg);
  filter: brightness(1.05) saturate(1.1);
}
.product-card-img::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 60%;
  height: 200%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: rotate(20deg);
  transition: left 0.9s var(--ease-premium);
}
.product-card:hover .product-card-img::after { left: 130%; }

.product-name {
  background: linear-gradient(120deg, var(--text-dark), var(--green-main));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: letter-spacing 0.3s ease;
}
.product-card:hover .product-name { letter-spacing: 0.3px; }

.product-category-tag {
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}
.product-category-tag::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.product-card:hover .product-category-tag::after { transform: translateX(100%); }

/* ===== SECTION HEADERS GRADIENT ===== */
.section-title, .section-title span {
  background: linear-gradient(135deg, var(--green-dark), var(--green-main) 60%, var(--yellow-warm));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-badge {
  position: relative;
  overflow: hidden;
}
.section-badge::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: translateX(-100%);
  animation: badgeShine 3.5s ease-in-out infinite;
}
@keyframes badgeShine {
  0%, 60% { transform: translateX(-100%); }
  100%    { transform: translateX(100%); }
}
.section-divider {
  background: linear-gradient(90deg, transparent, var(--yellow-warm), var(--green-main), var(--yellow-warm), transparent);
  background-size: 200% 100%;
  animation: dividerSlide 4s linear infinite;
}
@keyframes dividerSlide {
  0%   { background-position: 0 0; }
  100% { background-position: 200% 0; }
}

/* ===== GLASS / FEATURE CARDS ===== */
.feature, .feature-card, .info-box, .iso-badge, .stat-card, .stat-item, .testimonial-card, .why-card, .service-card {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(200,230,201,0.55);
  border-radius: var(--radius-lg);
  transition: transform 0.4s var(--ease-premium), box-shadow 0.4s ease, border-color 0.3s ease;
}
.feature:hover, .feature-card:hover, .why-card:hover, .service-card:hover, .stat-card:hover, .stat-item:hover, .testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: var(--green-light);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px; height: 72px;
  border-radius: 22px;
  background: var(--gradient-green);
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 10px 22px rgba(46,125,50,0.35);
  transition: transform 0.5s var(--ease-bounce), border-radius 0.4s ease;
}
.feature-card:hover .feature-icon {
  transform: rotate(-10deg) scale(1.08);
  border-radius: 50%;
}

/* stat counters */
.stat-number {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  transition: transform 0.3s ease;
}
.stat-card:hover .stat-number, .stat-item:hover .stat-number { transform: scale(1.1); }

/* ===== HERO SLIDE CONTENT FADE-UP ===== */
.hero-slide.is-active .slide-badge   { animation: slideUp 0.7s 0.05s var(--ease-premium) both; }
.hero-slide.is-active .slide-title   { animation: slideUp 0.8s 0.18s var(--ease-premium) both; }
.hero-slide.is-active .slide-title-hindi { animation: slideUp 0.8s 0.30s var(--ease-premium) both; }
.hero-slide.is-active .slide-desc    { animation: slideUp 0.8s 0.42s var(--ease-premium) both; }
.hero-slide.is-active .slide-actions { animation: slideUp 0.8s 0.55s var(--ease-premium) both; }
.hero-slide.is-active .hero-slide-img { animation: slideZoom 1s 0.2s var(--ease-premium) both; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideZoom {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

/* tagline strip animated marquee feel */
.tagline-strip {
  background: var(--gradient-gold);
  position: relative;
  overflow: hidden;
}
.tagline-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: translateX(-100%);
  animation: badgeShine 5s ease-in-out infinite;
}

/* stats strip — keep dark green background from base style.css.
   Only enhance stat-item slightly. Don't override stats-strip bg here. */
.stat-item {
  background: transparent !important;
  border: none !important;
  border-right: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 0 !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.stat-item:last-child { border-right: none !important; }
.stat-label { color: rgba(255,255,255,0.85) !important; }

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail-img img {
  transition: transform 0.6s var(--ease-premium), box-shadow 0.5s ease;
  box-shadow: 0 18px 48px rgba(30,90,40,0.18);
}
.product-detail-img:hover img {
  transform: scale(1.03) rotate(-1deg);
  box-shadow: var(--shadow-premium);
}
.product-detail-title {
  background: linear-gradient(120deg, var(--green-dark), var(--green-main) 60%, var(--yellow-warm));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tab-btn {
  position: relative;
  transition: color 0.3s ease, background 0.3s ease;
}
.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%;
  width: 0; height: 3px;
  background: var(--gradient-gold);
  border-radius: 3px;
  transition: width 0.35s var(--ease-premium), left 0.35s var(--ease-premium);
}
.tab-btn.active::after,
.tab-btn:hover::after { width: 70%; left: 15%; }

.tab-panel { animation: tabFade 0.5s var(--ease-premium); }
@keyframes tabFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.benefit-list li {
  position: relative;
  padding-left: 32px;
  transition: transform 0.3s ease, color 0.3s ease;
}
.benefit-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gradient-green);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(46,125,50,0.35);
  transition: transform 0.3s var(--ease-bounce);
}
.benefit-list li:hover { transform: translateX(6px); color: var(--green-dark); }
.benefit-list li:hover::before { transform: translateY(-50%) scale(1.15) rotate(8deg); }

.composition-table tr {
  transition: background 0.3s ease, transform 0.3s ease;
}
.composition-table tr:hover {
  background: linear-gradient(90deg, var(--green-pale), transparent);
  transform: translateX(4px);
}

/* ===== CATEGORY FILTER PREMIUM ===== */
.cat-btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s ease;
}
.cat-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gradient-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-premium);
  z-index: 0;
}
.cat-btn > * { position: relative; z-index: 1; }
.cat-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow-green); color: #fff; }
.cat-btn:hover::before { transform: scaleX(1); }
.cat-btn.active { color: #fff; box-shadow: var(--shadow-glow-green); }
.cat-btn.active::before { transform: scaleX(1); }

/* ===== FORM CONTROLS PREMIUM ===== */
.form-control {
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.form-control:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 4px rgba(46,125,50,0.15);
  outline: none;
  transform: translateY(-1px);
}

/* ===== FOOTER PREMIUM ===== */
footer, .footer {
  position: relative;
  overflow: hidden;
}
footer::before, .footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow-warm), var(--green-main), var(--yellow-warm));
  background-size: 200% 100%;
  animation: dividerSlide 4s linear infinite;
}

/* ===== PAGE TRANSITION ===== */
main, section.section, .page-header {
  animation: pageIn 0.7s var(--ease-premium) both;
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== FLOATING WHATSAPP / SCROLL TOP ===== */
.float-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-fab a, .float-fab button {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s ease;
}
.float-fab .fab-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  animation: pulseRing 2.4s ease-out infinite;
}
.float-fab .fab-top {
  background: var(--gradient-green);
  opacity: 0;
  transform: translateY(20px) scale(0.6);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s var(--ease-bounce);
}
.float-fab .fab-top.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.float-fab a:hover, .float-fab button:hover { transform: scale(1.12) rotate(-6deg); }
@keyframes pulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.55), 0 8px 24px rgba(0,0,0,0.25); }
  70%  { box-shadow: 0 0 0 18px rgba(37,211,102,0), 0 8px 24px rgba(0,0,0,0.25); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 8px 24px rgba(0,0,0,0.25); }
}

/* ===== PAGE LOADER ===== */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--gradient-green);
  display: flex; align-items: center; justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.hide { opacity: 0; visibility: hidden; }
.page-loader .leaf {
  width: 64px; height: 64px;
  border-radius: 50% 0;
  background: linear-gradient(135deg, #c8e6c9, #fdd835);
  animation: leafSpin 1.2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  box-shadow: 0 0 40px rgba(253,216,53,0.6);
}
@keyframes leafSpin {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(0.85); }
  100% { transform: rotate(360deg) scale(1); }
}

/* ===== HERO DOTS / SLIDER ARROWS ===== */
.hero-dot {
  transition: width 0.35s var(--ease-premium), background 0.3s ease;
}
.hero-dot.active { width: 34px; background: var(--yellow-main); box-shadow: var(--shadow-glow-gold); }
.hero-arrow {
  transition: transform 0.3s var(--ease-bounce), background 0.3s ease;
}
.hero-arrow:hover { transform: translateY(-50%) scale(1.15); background: var(--yellow-main); color: var(--green-dark); }

/* ===== MICRO INTERACTIONS ===== */
.iso-badge {
  position: relative;
  display: inline-flex;
  animation: floaty 4s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

img { transition: transform 0.4s ease; }

/* link hover underline subtle */
a { transition: color 0.25s ease; }

/* ===== NAV BRAND — prevent vertical wrap of "NAW SHAKTI / BIO FERTILIZERS..." ===== */
.nav-brand {
  flex-shrink: 0;
  min-width: 0;
}
.nav-brand .brand-text {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}
.nav-brand .brand-name,
.nav-brand .brand-sub {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Stop the nav-links list from squeezing the brand */
.nav-main .container {
  gap: 18px;
  flex-wrap: nowrap;
}
.nav-links {
  flex-wrap: nowrap;
  overflow: visible;
}

/* ===== MOBILE / TABLET FIXES ===== */

/* Show hamburger + hide nav-links earlier (tablets + large phones) */
@media (max-width: 1180px) {
  .nav-links {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--green-dark);
    flex-direction: column;
    padding: 18px;
    gap: 4px;
    box-shadow: 0 10px 32px rgba(0,0,0,0.3);
    align-items: stretch;
  }
  .nav-links.open { display: flex !important; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 12px 14px;
    border-radius: 8px;
    color: #fff !important;
  }
  .nav-links a:hover, .nav-links a.active {
    background: rgba(255,255,255,0.1);
  }
  .nav-links a::after { display: none !important; }
  .hamburger {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
  }
  .hamburger span {
    width: 26px; height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-main .container { position: relative; }
}

/* Hide my duplicate FAB whatsapp button if original .whatsapp-float exists.
   The base style.css already provides .whatsapp-float. We only want
   the back-to-top button from our premium FAB. */
.float-fab .fab-whatsapp { display: none !important; }

/* Position back-to-top above original whatsapp-float so they stack nicely */
.float-fab {
  bottom: 96px;
  right: 28px;
}

@media (max-width: 768px) {
  .product-card:hover { transform: translateY(-5px); }
  .float-fab { bottom: 88px; right: 18px; }
  .float-fab a, .float-fab button { width: 48px; height: 48px; font-size: 1.3rem; }
  .whatsapp-float { width: 52px !important; height: 52px !important; bottom: 22px !important; right: 22px !important; font-size: 1.4rem !important; }
  .hero::after { background-size: 48px 48px; }

  /* Mobile stats: 2x2 with proper labels */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0 !important;
  }
  .stat-item {
    padding: 18px 10px !important;
    border-right: 1px solid rgba(255,255,255,0.15) !important;
    border-bottom: 1px solid rgba(255,255,255,0.15) !important;
  }
  .stat-item:nth-child(2n) { border-right: none !important; }
  .stat-item:nth-child(n+3) { border-bottom: none !important; }
  .stat-number { font-size: 1.6rem !important; }
  .stat-label { font-size: 0.7rem !important; }

  /* Hero on mobile */
  .hero-slide .container {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  .slide-actions { justify-content: center; flex-wrap: wrap; }
  .hero-slide-img { display: none; }
  .hero-arrow { width: 38px !important; height: 38px !important; font-size: 1.2rem !important; }

  /* Brand text tighter */
  .nav-brand .brand-name { font-size: 0.95rem !important; }
  .nav-brand .brand-sub  { font-size: 0.65rem !important; }
  .nav-brand .logo-circle { width: 42px !important; height: 42px !important; font-size: 0.9rem !important; }

  /* Cards in single column */
  .products-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .section { padding: 44px 0 !important; }
  .section-title { font-size: 1.6rem !important; }
  .section-subtitle { font-size: 0.9rem !important; }

  /* CTA strips wrap nicely */
  .container > div[style*="grid-template-columns:1fr auto"],
  .container > div[style*="grid-template-columns: 1fr auto"] {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
}

/* Hamburger active state */
.hamburger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
