:root {
  --primary: #ff4d1c;
  --primary-dark: #d63b10;
  --dark: #111827;
  --muted: #6b7280;
  --soft: #f6f7fb;
  --border: #e5e7eb;
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dark);
  background: #fff;
}

a { text-decoration: none; }
img { max-width: 100%; display: block; }

.topbar { background: #111827; color: #fff; }
.main-header { box-shadow: 0 8px 25px rgba(15, 23, 42, .05); }
.navbar-brand { font-size: 1.45rem; text-transform: uppercase; letter-spacing: -.03em; }
.brand-icon {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px; border-radius: 12px;
  background: var(--primary); color: #fff; margin-right: 6px;
}
.nav-link { font-weight: 700; color: var(--dark); }
.nav-link:hover { color: var(--primary); }

.search-box {
  min-width: 280px; height: 44px; display: flex; align-items: center; gap: 10px;
  padding: 0 14px; background: var(--soft); border: 1px solid var(--border); border-radius: 999px;
}
.search-box input { border: 0; outline: 0; background: transparent; width: 100%; font-size: .92rem; }
.icon-btn {
  width: 44px; height: 44px; border: 1px solid var(--border); background: #fff;
  border-radius: 14px; display: grid; place-items: center; position: relative;
}
.icon-btn:hover { border-color: var(--primary); color: var(--primary); }
.cart-btn span {
  position: absolute; top: -8px; right: -8px; background: var(--primary); color: #fff;
  width: 22px; height: 22px; border-radius: 50%; font-size: .75rem; display: grid; place-items: center;
}

.hero-section {
  padding: 90px 0;
  background: radial-gradient(circle at top right, rgba(255, 77, 28, .2), transparent 34%), linear-gradient(135deg, #fff 0%, #f8fafc 100%);
}
.section-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 77, 28, .1); color: var(--primary-dark);
  padding: 8px 14px; border-radius: 999px; font-weight: 800; font-size: .82rem; text-transform: uppercase;
}
h1 { font-size: clamp(2.4rem, 7vw, 5.2rem); line-height: .95; font-weight: 950; letter-spacing: -.07em; margin: 18px 0; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; letter-spacing: -.05em; }
.hero-text, .section-heading p { color: var(--muted); font-size: 1.1rem; max-width: 620px; }
.btn-primary { background: var(--primary); border-color: var(--primary); font-weight: 800; border-radius: 14px; }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-outline-dark, .btn-dark, .btn-light { border-radius: 14px; font-weight: 800; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 16px; color: var(--muted); font-weight: 700; }
.hero-trust i { color: var(--primary); }
.hero-card { position: relative; border-radius: 36px; overflow: hidden; box-shadow: 0 30px 80px rgba(17, 24, 39, .18); background: #fff; }
.hero-card img { width: 100%; aspect-ratio: 1 / .78; object-fit: cover; }
.floating-sale {
  position: absolute; z-index: 2; top: 22px; left: 22px;
  background: #fff; color: var(--primary-dark); padding: 12px 18px; border-radius: 999px; font-weight: 950; text-transform: uppercase;
}

.bg-soft { background: var(--soft); }
.category-card, .product-card, .testimonial, .benefit, .best-list div {
  border-radius: var(--radius); transition: .25s ease;
}
.category-card { height: 100%; padding: 24px 16px; background: #fff; border: 1px solid var(--border); text-align: center; }
.category-card i { font-size: 2rem; color: var(--primary); }
.category-card h3 { margin: 12px 0 4px; font-size: 1rem; font-weight: 850; }
.category-card p { color: var(--muted); margin: 0; font-size: .9rem; }
.category-card:hover, .product-card:hover, .testimonial:hover { transform: translateY(-6px); box-shadow: 0 20px 45px rgba(17, 24, 39, .1); }
.category-card.outlet { background: var(--dark); color: #fff; }
.category-card.outlet p { color: rgba(255,255,255,.7); }

.filter-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-btn { border: 1px solid var(--border); background: #fff; padding: 10px 16px; border-radius: 999px; font-weight: 800; }
.filter-btn.active, .filter-btn:hover { background: var(--dark); color: #fff; }
.product-card { position: relative; overflow: hidden; background: #fff; border: 1px solid var(--border); height: 100%; }
.product-card img { width: 100%; aspect-ratio: 1 / .84; object-fit: cover; background: #f3f4f6; }
.product-body { padding: 20px; }
.product-body small { color: var(--muted); }
.product-body h3 { margin: 6px 0; font-size: 1.15rem; font-weight: 900; }
.rating { color: #f59e0b; font-size: .9rem; }
.rating span { color: var(--muted); }
.old-price { color: var(--muted); text-decoration: line-through; margin-right: 6px; }
.discount-badge, .wishlist { position: absolute; z-index: 2; top: 14px; }
.discount-badge { left: 14px; background: var(--primary); color: #fff; padding: 7px 11px; border-radius: 999px; font-weight: 900; }
.wishlist { right: 14px; border: 0; background: #fff; width: 38px; height: 38px; border-radius: 50%; box-shadow: 0 8px 20px rgba(0,0,0,.1); }
.wishlist.active { color: var(--primary); }

.promo-banner { padding: 80px 0; background: linear-gradient(135deg, rgba(17,24,39,.9), rgba(17,24,39,.55)), url('https://images.unsplash.com/photo-1491553895911-0055eca6402d?auto=format&fit=crop&w=1600&q=80') center/cover; color: #fff; }
.promo-content { max-width: 660px; }
.promo-content span { font-weight: 950; color: #ffd4c7; text-transform: uppercase; }
.promo-content p { color: rgba(255,255,255,.82); font-size: 1.1rem; }

.best-list { display: grid; gap: 14px; }
.best-list div { padding: 22px; background: #fff; border: 1px solid var(--border); display: flex; justify-content: space-between; gap: 16px; }
.best-list span { color: var(--muted); }
.benefit { padding: 24px; background: rgba(255,255,255,.06); height: 100%; }
.benefit i { font-size: 2.1rem; color: var(--primary); }
.benefit h3 { font-size: 1.05rem; margin: 12px 0 8px; }
.benefit p { color: rgba(255,255,255,.7); margin: 0; }
.testimonial { background: #fff; border: 1px solid var(--border); padding: 26px; height: 100%; color: #f59e0b; }
.testimonial p { color: var(--dark); margin: 16px 0; }
.testimonial strong, .testimonial span { display: block; color: var(--dark); }
.testimonial span { color: var(--muted); }

.newsletter-section { padding: 60px 0; background: var(--soft); }
.newsletter-box { background: #fff; border-radius: 32px; padding: 36px; display: flex; align-items: center; justify-content: space-between; gap: 28px; border: 1px solid var(--border); }
.newsletter-form { display: flex; gap: 12px; min-width: min(100%, 520px); }
.newsletter-form input { flex: 1; border: 1px solid var(--border); border-radius: 14px; padding: 14px 16px; outline: 0; }

.footer { background: #090d16; color: rgba(255,255,255,.74); }
.footer h2, .footer h3 { color: #fff; font-weight: 900; }
.footer h3 { font-size: 1rem; }
.footer a { display: block; color: rgba(255,255,255,.72); margin: 8px 0; }
.footer a:hover { color: #fff; }
.footer-bottom { color: rgba(255,255,255,.55); }
.whatsapp-btn { position: fixed; right: 18px; bottom: 18px; z-index: 10; width: 56px; height: 56px; border: 0; border-radius: 50%; background: #25d366; color: #fff; font-size: 1.5rem; box-shadow: 0 16px 30px rgba(0,0,0,.22); }

@media (max-width: 991px) {
  .search-box { min-width: 100%; margin: 12px 0; }
  .hero-section { padding: 60px 0; }
  .newsletter-box { align-items: stretch; flex-direction: column; }
}
@media (max-width: 575px) {
  .topbar { font-size: .75rem; }
  .hero-trust { display: grid; }
  .best-list div, .newsletter-form { flex-direction: column; }
  .newsletter-box { padding: 24px; border-radius: 24px; }
  .filter-buttons { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
  .filter-btn { white-space: nowrap; }
}
