/* ============================================
   Elite Goods Distributors — Stylesheet
   ============================================ */

:root {
  --primary: #1E1B4B;
  --primary-2: #312E81;
  --primary-dark: #0F0E2E;
  --accent: #10B981;
  --accent-2: #34D399;
  --accent-dark: #059669;
  --bg: #FFFFFF;
  --bg-soft: #F5F7FB;
  --bg-soft-2: #EDF0F7;
  --text: #1E1B4B;
  --text-muted: #5A5B7B;
  --border: #E3E5EF;
  --wa: #25D366;
  --wa-dark: #128C7E;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;

  --shadow-sm: 0 2px 8px rgba(30, 27, 75, 0.06);
  --shadow: 0 10px 30px rgba(30, 27, 75, 0.10);
  --shadow-lg: 0 25px 60px rgba(30, 27, 75, 0.18);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.icon-sm { width: 18px; height: 18px; flex-shrink: 0; }

/* =========================
   BUTTONS
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s ease, color .25s ease;
  white-space: nowrap;
  border: 2px solid transparent;
  line-height: 1;
}
.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
}
.btn-primary:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(16, 185, 129, 0.45); }
.btn-ghost { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-ghost:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--border);
  padding: 14px 28px;
}
.btn-outline:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); }
.btn-wa {
  background: var(--wa);
  color: #fff;
  width: 100%;
  padding: 12px 18px;
  font-size: 14px;
}
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35); }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-lg { padding: 16px 30px; font-size: 16px; }

/* =========================
   TOP BAR
   ========================= */
.topbar {
  background: var(--primary-dark);
  color: #fff;
  font-size: 13px;
  padding: 10px 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
.topbar-icon { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

/* =========================
   HEADER
   ========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.header.scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--border); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
}
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -1px;
}
.logo-text { color: var(--primary); letter-spacing: -0.5px; }
.logo-text-accent { color: var(--accent-dark); }

.nav {
  display: flex;
  gap: 28px;
}
.nav a {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--primary);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .25s var(--ease);
}
.nav a:hover { color: var(--accent-dark); }
.nav a:hover::after { width: 100%; }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================
   HERO
   ========================= */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  overflow: hidden;
}
.hero-bg-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-dark);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 22px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-dark);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.3); opacity: 0.6; }
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--primary);
  margin-bottom: 22px;
}
.hero-title-light { color: var(--text-muted); font-weight: 800; }

.rotating-word {
  position: relative;
  display: inline-block;
  color: var(--accent-dark);
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  min-width: 2ch;
  animation: wordFade .6s var(--ease);
}
@keyframes wordFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.stat strong {
  display: block;
  font-size: 22px;
  color: var(--primary);
  font-weight: 800;
  line-height: 1.1;
}
.stat span {
  font-size: 13px;
  color: var(--text-muted);
}
.stat-divider {
  width: 1px;
  height: 30px;
  background: var(--border);
}

/* Hero collage */
.hero-collage {
  position: relative;
  height: 540px;
}
.collage-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg);
  animation: float 6s ease-in-out infinite;
}
.collage-card img { width: 100%; height: 100%; object-fit: cover; }
.collage-card-1 {
  width: 60%;
  height: 60%;
  top: 0;
  left: 0;
  z-index: 2;
  animation-delay: 0s;
}
.collage-card-2 {
  width: 50%;
  height: 50%;
  top: 5%;
  right: 0;
  z-index: 3;
  animation-delay: 1.5s;
}
.collage-card-3 {
  width: 45%;
  height: 45%;
  bottom: 0;
  right: 5%;
  z-index: 2;
  animation-delay: 3s;
}
.collage-card-4 {
  width: 38%;
  height: 38%;
  bottom: 8%;
  left: 8%;
  z-index: 4;
  animation-delay: 4.5s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.collage-badge {
  position: absolute;
  bottom: 12%;
  right: -10px;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 14px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  z-index: 10;
  transform: rotate(-6deg);
  animation: floatBadge 4s ease-in-out infinite;
}
@keyframes floatBadge {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50%      { transform: rotate(-6deg) translateY(-6px); }
}
.collage-badge strong { display: block; font-size: 24px; font-weight: 900; line-height: 1; }
.collage-badge span { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

/* =========================
   BRANDS
   ========================= */
.brands {
  padding: 50px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.brands-label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.brands-track {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}
.brand-logo {
  font-family: "Arial Black", sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--text-muted);
  letter-spacing: 1px;
  opacity: 0.55;
  transition: opacity .25s ease, color .25s ease, transform .25s var(--ease);
}
.brand-logo:hover { opacity: 1; color: var(--primary); transform: scale(1.08); }

/* =========================
   SECTIONS
   ========================= */
.section { padding: 90px 0; }
.section-alt { background: var(--bg-soft); }

.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head .eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  background: rgba(30, 27, 75, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-head .eyebrow-accent {
  color: var(--accent-dark);
  background: rgba(16, 185, 129, 0.18);
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary);
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}
.section-head p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-dark);
  margin-bottom: 8px;
}

/* =========================
   PRODUCT CARDS
   ========================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.product-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-soft);
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.product-card:hover .product-media img { transform: scale(1.08); }
.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.product-tag.tag-hot {
  background: var(--accent);
  color: var(--primary-dark);
}
.product-body { padding: 22px; }
.product-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  line-height: 1.3;
}
.product-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.product-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}
.price-now {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
}
.price-old {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
}

/* =========================
   BEST SELLERS
   ========================= */
.bestsellers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.bestseller-card {
  position: relative;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  text-align: center;
}
.bestseller-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.bestseller-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}
.rank {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  z-index: 2;
}
.bestseller-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  min-height: 40px;
}
.bestseller-card .product-price { justify-content: center; margin-bottom: 14px; }
.bestseller-card .price-now { font-size: 18px; }

.center-cta { text-align: center; margin-top: 44px; }

/* =========================
   CATEGORIES
   ========================= */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  cursor: pointer;
  display: block;
}
.category-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.category-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}
.category-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(30, 27, 75, 0.55) 100%);
}
.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.category-card:hover .category-image img { transform: scale(1.08); }
.category-body {
  padding: 26px;
  position: relative;
}
.category-icon {
  position: absolute;
  top: -28px;
  left: 26px;
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: var(--primary-dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.category-icon svg { width: 26px; height: 26px; }
.category-body h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin: 18px 0 8px;
  letter-spacing: -0.4px;
}
.category-body p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin-bottom: 14px;
}
.category-link {
  font-weight: 700;
  color: var(--accent-dark);
  font-size: 14px;
  transition: gap .25s ease;
}
.category-card:hover .category-link { color: var(--primary); }

/* =========================
   ZIGZAG (BENEFITS)
   ========================= */
.zigzag { display: flex; flex-direction: column; gap: 80px; }
.zigzag-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.zigzag-row.reverse .zigzag-media { order: 2; }
.zigzag-row.reverse .zigzag-copy { order: 1; }

.zigzag-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.zigzag-media img { width: 100%; height: 100%; object-fit: cover; }
.floating-stat {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--bg);
  padding: 16px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}
.floating-stat strong {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.floating-stat span {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.zigzag-copy h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
  margin: 6px 0 14px;
  line-height: 1.2;
}
.zigzag-copy p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.02rem;
}
.feature-list { display: flex; flex-direction: column; gap: 10px; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--primary);
  font-size: 15px;
}
.feature-list svg {
  width: 18px;
  height: 18px;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  padding: 3px;
  flex-shrink: 0;
}

/* =========================
   TESTIMONIALS
   ========================= */
.testimonials {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}
.testimonials-track {
  position: relative;
  min-height: 280px;
}
.testimonial {
  position: absolute;
  inset: 0;
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateX(40px);
  pointer-events: none;
  transition: opacity .55s var(--ease), transform .55s var(--ease);
  text-align: center;
}
.testimonial.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}
.stars {
  color: var(--accent);
  font-size: 22px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}
.testimonial p {
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 26px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
}
.testimonial-author div { text-align: left; }
.testimonial-author strong {
  display: block;
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
}
.testimonial-author span {
  font-size: 13px;
  color: var(--text-muted);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: var(--shadow);
  z-index: 4;
  transition: background .2s ease, color .2s ease, transform .25s var(--ease);
}
.carousel-btn:hover { background: var(--primary); color: var(--accent); transform: translateY(-50%) scale(1.08); }
.carousel-btn svg { width: 22px; height: 22px; }
.carousel-prev { left: -10px; }
.carousel-next { right: -10px; }

.dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 24px;
  max-width: 100%;
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border);
  transition: background .25s ease, width .25s ease;
  flex-shrink: 0;
  padding: 0;
}
.dot.active { background: var(--accent); width: 24px; border-radius: 999px; }

/* =========================
   FOOTER
   ========================= */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.78);
  padding-top: 70px;
  margin-top: 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-col h5 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: rgba(255, 255, 255, 0.78); transition: color .2s ease; font-size: 14px; }
.footer-col a:hover { color: var(--accent); }

.logo-footer .logo-text { color: #fff; }
.logo-footer .logo-text-accent { color: var(--accent); }

.footer-brand p {
  font-size: 14px;
  margin: 18px 0 22px;
  line-height: 1.6;
  max-width: 320px;
}

.socials { display: flex; gap: 12px; }
.socials a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, transform .25s var(--ease);
}
.socials a:hover { background: var(--accent); color: var(--primary-dark); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 12px;
  word-break: break-word;
}
.contact-list svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

.newsletter {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}
.newsletter input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color .25s ease, background .25s ease;
}
.newsletter input::placeholder { color: rgba(255, 255, 255, 0.5); }
.newsletter input:focus { border-color: var(--accent); background: rgba(255, 255, 255, 0.1); }
.newsletter button { width: 100%; }
.newsletter-msg {
  font-size: 13px;
  min-height: 18px;
  margin-top: 4px;
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  font-size: 13px;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
}

/* =========================
   FLOATING WHATSAPP
   ========================= */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: var(--wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  z-index: 90;
  transition: transform .25s var(--ease), box-shadow .25s ease;
  animation: floatWa 3s ease-in-out infinite;
}
.float-wa svg { width: 30px; height: 30px; }
.float-wa:hover { transform: scale(1.1); box-shadow: 0 16px 36px rgba(37, 211, 102, 0.6); }
@keyframes floatWa {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* =========================
   REVEAL ANIMATION
   ========================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .hero-subtitle, .badge { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; flex-wrap: wrap; }
  .hero-collage { height: 460px; max-width: 560px; margin: 0 auto; width: 100%; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .bestsellers-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .zigzag-row { grid-template-columns: 1fr; gap: 36px; }
  .zigzag-row.reverse .zigzag-media { order: 0; }
  .zigzag-row.reverse .zigzag-copy { order: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 24px;
    gap: 6px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    opacity: 0;
    transition: transform .35s var(--ease), opacity .35s ease;
    z-index: 99;
  }
  .nav.open { transform: translateY(0); opacity: 1; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--border); width: 100%; }
  .nav a:last-child { border-bottom: 0; }
  .menu-toggle { display: flex; }
  .header-cta { display: none; }

  .topbar { font-size: 12px; }
  .topbar-inner { flex-wrap: wrap; }

  .hero { padding: 50px 0 70px; }
  .hero-collage { height: 380px; }
  .collage-badge { right: 10px; padding: 10px 14px; }
  .collage-badge strong { font-size: 20px; }

  .section { padding: 60px 0; }
  .section-head { margin-bottom: 38px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 36px; }
  .footer-brand p { max-width: none; }

  .testimonial { padding: 30px 22px; }
  .testimonial p { font-size: 1rem; }
  .carousel-prev { left: -8px; }
  .carousel-next { right: -8px; }
  .carousel-btn { width: 40px; height: 40px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .products-grid { grid-template-columns: 1fr; gap: 20px; }
  .bestsellers-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .bestseller-card { padding: 14px; }
  .bestseller-card h4 { font-size: 13px; min-height: 36px; }
  .bestseller-card .price-now { font-size: 16px; }
  .bestseller-card .price-old { font-size: 12px; }

  .hero-title { font-size: 2rem; letter-spacing: -1px; }
  .hero-stats { gap: 14px; }
  .stat strong { font-size: 18px; }
  .stat span { font-size: 11px; }
  .stat-divider { height: 24px; }

  .hero-collage { height: 320px; }
  .collage-badge { bottom: 6%; }

  .brands-track { gap: 18px; }
  .brand-logo { font-size: 16px; }

  .btn { font-size: 14px; padding: 11px 18px; }
  .btn-lg { padding: 14px 22px; font-size: 15px; }

  .float-wa { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .float-wa svg { width: 26px; height: 26px; }

  .footer-bottom-inner { justify-content: center; text-align: center; font-size: 12px; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 1.75rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .section-head h2 { font-size: 1.55rem; }
  .product-body h3 { font-size: 15px; }
  .price-now { font-size: 19px; }
  .logo-text { font-size: 15px; }
  .logo-mark { width: 32px; height: 32px; font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
