/* ===== RESET & BASE ===== */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  background: #fafbff;
  color: #0f172a;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

:root {
  --brand: #6366f1;
  --brand-2: #8b5cf6;
  --brand-3: #ec4899;
  --accent: #f59e0b;
  --success: #10b981;
  --danger: #ef4444;
  --ink: #0f172a;
  --ink-2: #475569;
  --muted: #94a3b8;
  --line: #e2e8f0;
  --bg: #fafbff;
  --card: #ffffff;
  --grad: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  --grad-soft: linear-gradient(135deg, #eef2ff 0%, #fdf4ff 100%);
  --shadow-sm: 0 1px 3px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
  --shadow: 0 4px 20px rgba(15,23,42,.08);
  --shadow-lg: 0 20px 60px rgba(99,102,241,.18);
  --shadow-glow: 0 10px 40px rgba(139,92,246,.25);
  --radius: 16px;
  --radius-lg: 24px;
}

/* ===== LOADER ===== */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s, visibility .5s;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { position: relative; }
.loader-ring {
  width: 100px; height: 100px;
  border: 3px solid rgba(255,255,255,.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.loader-logo {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 60px; height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--grad);
  color: #fff;
  padding: 8px 0;
  overflow: hidden;
  font-size: 13px;
  font-weight: 500;
  position: relative;
  z-index: 100;
}
.marquee-wrap { display: flex; overflow: hidden; }
.marquee-text {
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  padding-left: 100%;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: all .3s;
}
.navbar.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: 1280px; margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo {
  width: 44px; height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-main { font-weight: 800; font-size: 16px; color: var(--ink); }
.brand-sub { font-size: 11px; color: var(--ink-2); font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  border-radius: 10px;
  transition: all .2s;
}
.nav-link:hover { color: var(--brand); background: #eef2ff; }
.admin-link {
  background: var(--grad);
  color: #fff !important;
}
.admin-link:hover { color: #fff !important; filter: brightness(1.1); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column; gap: 4px;
  padding: 8px;
}
.hamburger span {
  width: 24px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .3s;
}
.mobile-menu {
  position: fixed;
  top: 70px; right: 0;
  width: 280px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  border-radius: 16px 0 0 16px;
  padding: 12px;
  transform: translateX(110%);
  transition: transform .3s;
  z-index: 95;
}
.mobile-menu.open { transform: translateX(0); }
.mob-link {
  display: block;
  padding: 14px 16px;
  border-radius: 10px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  transition: background .2s;
}
.mob-link:hover { background: #eef2ff; color: var(--brand); }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 60px 24px 80px;
  overflow: hidden;
  background: var(--grad-soft);
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
  animation: float 12s ease-in-out infinite;
}
.blob-1 { width: 420px; height: 420px; background: #a5b4fc; top: -100px; left: -100px; }
.blob-2 { width: 380px; height: 380px; background: #f0abfc; bottom: -100px; right: -80px; animation-delay: -4s; }
.blob-3 { width: 280px; height: 280px; background: #fde68a; top: 40%; left: 50%; animation-delay: -8s; opacity: .3; }
@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px,-30px) scale(1.1); }
}
.hero-grid {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-pill {
  display: inline-block;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  animation: pulseGlow 2.5s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%,100% { box-shadow: 0 0 0 0 rgba(236,72,153,.4); }
  50% { box-shadow: 0 0 0 12px rgba(236,72,153,0); }
}
.hero-title {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: var(--grad);
  color: #fff;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: var(--shadow-glow);
  transition: all .25s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 50px rgba(139,92,246,.4); }
.btn-primary.btn-large { padding: 18px 36px; font-size: 16px; }
.btn-ghost {
  display: inline-flex; align-items: center;
  padding: 14px 28px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  transition: all .25s;
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }

.hero-stats {
  display: flex; gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(15,23,42,.08);
}
.stat { display: flex; flex-direction: column; }
.stat-n {
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.stat-l { font-size: 12px; color: var(--ink-2); font-weight: 500; margin-top: 4px; text-transform: uppercase; letter-spacing: .5px; }

.hero-right { position: relative; height: 480px; }
.hero-card-stack { position: relative; width: 100%; height: 100%; }
.hero-card {
  position: absolute;
  background: #fff;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 16px;
  width: 280px;
  animation: floatCard 6s ease-in-out infinite;
}
.hc-1 { top: 30px; left: 20px; }
.hc-2 { top: 180px; right: 0; animation-delay: -2s; }
.hc-3 { bottom: 30px; left: 60px; animation-delay: -4s; }
.hc-icon {
  width: 56px; height: 56px;
  background: var(--grad-soft);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}
.hc-text { display: flex; flex-direction: column; gap: 2px; }
.hc-text strong { font-size: 15px; color: var(--ink); }
.hc-text span { font-size: 12px; color: var(--ink-2); }
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-badge-float {
  position: absolute;
  background: #fff;
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow);
  animation: floatCard 5s ease-in-out infinite;
}
.hb-1 { top: 0; right: 40px; color: var(--brand); animation-delay: -1s; }
.hb-2 { bottom: 0; right: 80px; color: var(--success); animation-delay: -3s; }

/* ===== BRANDS STRIP ===== */
.brands {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  overflow: hidden;
}
.brands-track {
  display: flex; gap: 60px;
  animation: scrollBrands 30s linear infinite;
  white-space: nowrap;
}
.brand-item {
  font-size: 24px;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: -0.02em;
  transition: color .25s;
  flex-shrink: 0;
}
.brand-item:hover { color: var(--brand); }
@keyframes scrollBrands {
  to { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
.section { padding: 80px 24px; max-width: 1280px; margin: 0 auto; }
.section-alt { background: #fff; max-width: none; padding-left: 0; padding-right: 0; }
.section-alt .section-head, .section-alt .filter-bar, .section-alt .product-count, .section-alt .products-grid {
  max-width: 1280px; margin-left: auto; margin-right: auto; padding-left: 24px; padding-right: 24px;
}
.section-head { text-align: center; margin-bottom: 48px; }
.section-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--grad-soft);
  color: var(--brand);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}
.section-sub { color: var(--ink-2); font-size: 16px; }

/* ===== FILTER ===== */
.filter-bar {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin-bottom: 16px;
}
.filter-btn {
  padding: 10px 20px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
  transition: all .2s;
}
.filter-btn:hover { border-color: var(--brand); color: var(--brand); }
.filter-btn.active {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}
.product-count {
  text-align: center;
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 32px;
}
.product-count span { color: var(--brand); font-weight: 700; }

/* ===== PRODUCT GRID ===== */
.featured-grid, .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all .3s cubic-bezier(.2,.8,.2,1);
  border: 1px solid var(--line);
  position: relative;
  animation: cardIn .5s ease-out backwards;
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  overflow: hidden;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.product-card:hover .card-img img { transform: scale(1.08); }
.card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
  color: var(--muted);
}
.disc-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--grad);
  color: #fff;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
  box-shadow: var(--shadow);
}
.stock-badge {
  position: absolute; top: 12px; right: 12px;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  z-index: 2;
  backdrop-filter: blur(10px);
}
.stock-in { background: rgba(16,185,129,.95); color: #fff; }
.stock-out { background: rgba(239,68,68,.95); color: #fff; }

.card-body { padding: 18px; }
.card-cat {
  font-size: 11px;
  color: var(--brand);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 8px;
}
.card-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 44px;
}
.card-price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px; }
.price-final {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
}
.price-orig {
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
}
.price-save {
  font-size: 11px;
  color: var(--success);
  font-weight: 700;
  background: #d1fae5;
  padding: 3px 8px;
  border-radius: 6px;
  margin-left: auto;
}

.skeleton-card {
  background: linear-gradient(90deg, #f1f5f9 0%, #e2e8f0 50%, #f1f5f9 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius);
  aspect-ratio: 3/4;
}
@keyframes shimmer {
  to { background-position: -200% 0; }
}

/* ===== WHY US ===== */
.why-section { background: linear-gradient(180deg, transparent, #f8fafc 60%); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.why-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--line);
  transition: all .3s;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.why-icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: #fff;
  font-weight: 800;
}
.why-icon-1 { background: linear-gradient(135deg, #10b981, #059669); }
.why-icon-2 { background: linear-gradient(135deg, #f59e0b, #d97706); }
.why-icon-3 { background: linear-gradient(135deg, #6366f1, #4338ca); }
.why-icon-4 { background: linear-gradient(135deg, #ec4899, #be185d); }
.why-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.why-card p { font-size: 14px; color: var(--ink-2); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: #fff; max-width: none; padding-left: 0; padding-right: 0; }
.testimonials-section .section-head, .testimonials-section .testimonials-grid {
  max-width: 1280px; margin-left: auto; margin-right: auto;
  padding-left: 24px; padding-right: 24px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--grad-soft);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid #eef2ff;
}
.t-stars { color: var(--accent); font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.t-text { color: var(--ink); font-size: 15px; line-height: 1.6; margin-bottom: 20px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.t-author strong { display: block; font-size: 14px; color: var(--ink); }
.t-author span { font-size: 12px; color: var(--ink-2); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--grad);
  border-radius: var(--radius-lg);
  padding: 60px 24px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  max-width: 1232px;
  margin: 0 auto 80px;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,.2), transparent 60%);
}
.cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-banner h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.cta-banner p { font-size: 16px; opacity: .95; margin-bottom: 28px; }
.cta-banner .btn-primary {
  background: #fff;
  color: var(--brand);
  box-shadow: 0 10px 40px rgba(0,0,0,.2);
}
.cta-banner .btn-primary:hover { background: #f8fafc; }

/* ===== CONTACT / FOOTER ===== */
.contact-section {
  background: #0f172a;
  color: #cbd5e1;
  padding: 60px 24px 0;
}
.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}
.contact-brand .contact-logo {
  width: 56px; height: 56px;
  border-radius: 14px;
  margin-bottom: 16px;
}
.contact-brand h3 { color: #fff; font-size: 18px; margin-bottom: 8px; }
.contact-brand p { font-size: 14px; margin-bottom: 20px; }
.social-row { display: flex; gap: 8px; }
.social-btn {
  width: 40px; height: 40px;
  background: #1e293b;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.social-btn:hover { background: var(--brand); transform: translateY(-2px); }
.contact-col h4 {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.contact-col a {
  display: block;
  font-size: 14px;
  padding: 6px 0;
  transition: color .2s;
}
.contact-col a:hover { color: #fff; }
.contact-item {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}
.ci-icon { font-size: 16px; }
.ci-link { color: #cbd5e1; }
.ci-link:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid #1e293b;
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
  color: var(--muted);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  box-shadow: var(--shadow-glow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .3s;
  z-index: 80;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(15,23,42,.7);
  backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden;
  transition: all .3s;
  z-index: 1000;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.product-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -45%) scale(.95);
  width: min(90vw, 900px);
  max-height: 90vh;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: auto;
  opacity: 0; visibility: hidden;
  transition: all .3s cubic-bezier(.2,.8,.2,1);
  z-index: 1001;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.product-modal.open {
  opacity: 1; visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: #fff;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  z-index: 2;
  box-shadow: var(--shadow);
  transition: all .2s;
}
.modal-close:hover { background: var(--ink); color: #fff; }
.modal-img-wrap {
  position: relative;
  background: var(--grad-soft);
  display: flex; align-items: center; justify-content: center;
  min-height: 320px;
}
.modal-img-wrap img { max-width: 100%; max-height: 480px; object-fit: contain; }
.modal-img-placeholder {
  font-size: 120px;
  color: var(--muted);
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
}
.modal-body { padding: 32px; }
.modal-cat {
  display: inline-block;
  padding: 4px 10px;
  background: var(--grad-soft);
  color: var(--brand);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 12px;
}
.modal-name { font-size: 24px; font-weight: 800; color: var(--ink); margin-bottom: 12px; line-height: 1.2; }
.modal-desc { color: var(--ink-2); font-size: 14px; margin-bottom: 20px; }
.modal-price-row { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px; margin-bottom: 16px; }
.modal-price-final { font-size: 32px; font-weight: 800; color: var(--ink); }
.modal-price-orig { font-size: 16px; color: var(--muted); text-decoration: line-through; }
.modal-save {
  font-size: 12px; font-weight: 700;
  color: var(--success);
  background: #d1fae5;
  padding: 4px 10px;
  border-radius: 6px;
}
.modal-stock { margin-bottom: 20px; }
.modal-stock .stock-badge { position: static; display: inline-block; }
.btn-whatsapp {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  background: #25d366;
  color: #fff;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  transition: all .25s;
  box-shadow: 0 10px 30px rgba(37,211,102,.4);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(37,211,102,.5); }

/* ===== SCROLL ANIMATIONS ===== */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1);
}
.animate-in.visible { opacity: 1; transform: translateY(0); }
.why-grid .animate-in:nth-child(2) { transition-delay: .1s; }
.why-grid .animate-in:nth-child(3) { transition-delay: .2s; }
.why-grid .animate-in:nth-child(4) { transition-delay: .3s; }
.testimonials-grid .animate-in:nth-child(2) { transition-delay: .15s; }
.testimonials-grid .animate-in:nth-child(3) { transition-delay: .3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { height: 380px; }
  .hero-stats { gap: 24px; }
  .contact-inner { grid-template-columns: 1fr 1fr; }
  .product-modal { grid-template-columns: 1fr; max-height: 92vh; }
  .modal-img-wrap { min-height: 240px; }
  .modal-img-wrap img { max-height: 280px; }
}
@media (max-width: 560px) {
  .hero { padding: 40px 16px 60px; }
  .section { padding: 60px 16px; }
  .nav-container { padding: 12px 16px; }
  .nav-brand-text { display: none; }
  .hero-stats { gap: 16px; }
  .stat-n { font-size: 22px; }
  .hero-card { width: 240px; padding: 14px; }
  .hc-icon { width: 44px; height: 44px; font-size: 22px; }
  .contact-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner { margin: 0 16px 60px; padding: 40px 20px; }
  .featured-grid, .products-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
  .card-body { padding: 12px; }
  .card-name { font-size: 13px; min-height: 36px; }
  .price-final { font-size: 16px; }
  .modal-body { padding: 20px; }
  .modal-price-final { font-size: 24px; }
}
