﻿/* ================================================================
   SPRINTMAX — Design System Completo
   ================================================================ */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Bebas+Neue&family=Barlow+Condensed:wght@600;700;800&display=swap");

/* ── TOKENS ─────────────────────────────────────── */
:root {
  --orange: #e8501a;
  --orange2: #c43d10;
  --orange3: #ff6b35;
  --dark: #0d0d0d;
  --dark2: #141414;
  --dark3: #1c1c1c;
  --dark4: #252525;
  --gray: #888;
  --gray2: #aaa;
  --light: #f5f5f5;
  --white: #ffffff;
  --green: #22c55e;
  --red: #ef4444;

  --header-h: 70px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.3);

  --font: "Inter", sans-serif;
  --font-display: "Bebas Neue", sans-serif;
  --font-cond: "Barlow Condensed", sans-serif;

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ───────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font);
}
ul {
  list-style: none;
}

/* ── SCROLLBAR ───────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--dark2);
}
::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 3px;
}

/* ── CONTAINER ───────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── ANNOUNCEMENT BAR ────────────────────────────── */
.announcement-bar {
  background: var(--orange);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  height: 38px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.announcement-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  flex: 1;
  overflow: hidden;
}
.announcement-track span {
  padding: 0 16px;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.announcement-close {
  position: absolute;
  right: 12px;
  background: rgba(0, 0, 0, 0.2);
  color: white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  flex-shrink: 0;
}
.announcement-close:hover {
  background: rgba(0, 0, 0, 0.4);
}

/* ── HEADER ──────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow var(--transition);
}
.header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-text .brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: var(--white);
}
.nav-logo-text .tagline {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
}

/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-links > a,
.nav-drop-trigger {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--gray2);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition:
    color var(--transition),
    background var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-links > a:hover,
.nav-drop-trigger:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -8px;
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  min-width: 260px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity var(--transition),
    transform var(--transition);
  box-shadow: var(--shadow);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray2);
  transition:
    background var(--transition),
    color var(--transition);
}
.dropdown-item:hover {
  background: rgba(232, 80, 26, 0.12);
  color: var(--orange3);
}
.dropdown-item span {
  font-size: 1.1rem;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray2);
  border-radius: 50%;
  transition:
    color var(--transition),
    background var(--transition);
}
.icon-btn:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}
.header-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--orange);
  color: white;
  font-size: 0.62rem;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--dark);
}
.cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: white;
  padding: 9px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  position: relative;
  transition:
    background var(--transition),
    transform var(--transition);
}
.cart-btn:hover {
  background: var(--orange2);
  transform: scale(1.02);
}
.cart-btn .header-badge {
  position: static;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  width: auto;
  height: auto;
  padding: 2px 6px;
  border-radius: 20px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Search Bar */
.search-bar {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  border-top: 1px solid transparent;
}
.search-bar.active {
  max-height: 200px;
  border-top-color: rgba(255, 255, 255, 0.07);
}
.search-inner {
  max-width: 700px;
  margin: 12px auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 0 20px;
  height: 48px;
  color: var(--gray);
}
.search-inner input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font);
}
.search-inner input::placeholder {
  color: var(--gray);
}
.search-inner button {
  color: var(--gray);
  font-size: 1.1rem;
  transition: color var(--transition);
}
.search-inner button:hover {
  color: var(--white);
}
.search-results {
  max-width: 700px;
  margin: 0 auto 12px;
  padding: 0 24px;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: var(--dark3);
  border-radius: var(--radius-sm);
  margin-bottom: 4px;
  cursor: pointer;
  transition: background var(--transition);
}
.search-result-item:hover {
  background: var(--dark4);
}
.search-result-item img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
}
.search-result-item strong {
  font-size: 0.9rem;
  display: block;
}
.search-result-item span {
  font-size: 0.8rem;
  color: var(--orange);
}

/* ── CART DRAWER ─────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(4px);
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  background: var(--dark2);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
}
.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cart-drawer-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
}
.cart-drawer-header h3 span {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 400;
}
.cart-close {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--gray);
  font-size: 1rem;
  transition:
    background var(--transition),
    color var(--transition);
}
.cart-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  color: var(--gray);
  gap: 12px;
  text-align: center;
}
.cart-empty p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray2);
}
.cart-empty span {
  font-size: 0.85rem;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  animation: slideIn 0.25s ease;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.cart-item img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}
.cart-item-info {
  flex: 1;
  min-width: 0;
}
.cart-item-name {
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-cat {
  font-size: 0.75rem;
  color: var(--orange);
  margin: 2px 0 8px;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--dark4);
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.qty-btn:hover {
  background: var(--orange);
}
.qty-val {
  font-size: 0.9rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}
.cart-item-price {
  font-weight: 700;
  color: var(--orange);
  font-size: 0.95rem;
}
.cart-item-remove {
  color: var(--gray);
  font-size: 0.75rem;
  background: none;
  transition: color var(--transition);
  margin-top: 4px;
  display: block;
  text-align: right;
}
.cart-item-remove:hover {
  color: var(--red);
}

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: none;
  flex-direction: column;
  gap: 14px;
}
.cart-coupon {
  display: flex;
  gap: 8px;
}
.cart-coupon input {
  flex: 1;
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 10px 14px;
  font-size: 0.85rem;
  font-family: var(--font);
  outline: none;
  transition: border-color var(--transition);
}
.cart-coupon input:focus {
  border-color: var(--orange);
}
.cart-coupon button {
  background: var(--dark4);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  transition: background var(--transition);
}
.cart-coupon button:hover {
  background: var(--orange);
}
.cart-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cart-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--gray2);
}
.cart-total-row {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.05rem;
}
.free-tag {
  color: var(--green);
  font-weight: 600;
}
.btn-checkout {
  width: 100%;
  background: var(--orange);
  color: white;
  padding: 15px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  transition:
    background var(--transition),
    transform var(--transition);
  letter-spacing: 0.5px;
}
.btn-checkout:hover {
  background: var(--orange2);
  transform: scale(1.01);
}
.btn-continue-shopping {
  width: 100%;
  background: transparent;
  color: var(--gray2);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    border-color var(--transition),
    color var(--transition);
}
.btn-continue-shopping:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* ── TOAST ───────────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--orange);
  padding: 14px 18px;
  border-radius: var(--radius);
  min-width: 280px;
  max-width: 360px;
  box-shadow: var(--shadow);
  animation: toastIn 0.3s ease;
  font-size: 0.9rem;
}
.toast.success {
  border-left-color: var(--green);
}
.toast.error {
  border-left-color: var(--red);
}
.toast img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.toast-text strong {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}
.toast-text span {
  font-size: 0.8rem;
  color: var(--gray);
}
@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ── HERO ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h) - 38px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 24px 80px;
  max-width: 1280px;
  margin: 0 auto;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 70% at 70% 50%,
      rgba(232, 80, 26, 0.12) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 40% at 10% 80%,
      rgba(232, 80, 26, 0.06) 0%,
      transparent 60%
    );
  pointer-events: none;
}
.hero::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, #0d0d0d 0%, #111118 60%, #0a0d18 100%);
}
.hero-content {
  max-width: 580px;
  z-index: 2;
  flex: 1;
}
.hero-tag {
  display: inline-block;
  background: rgba(232, 80, 26, 0.15);
  color: var(--orange3);
  border: 1px solid rgba(232, 80, 26, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}
.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 20px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-content h1 span {
  color: var(--orange);
}
.hero-content p {
  font-size: 1.05rem;
  color: var(--gray2);
  line-height: 1.7;
  margin-bottom: 32px;
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-stat {
  text-align: center;
}
.hero-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}
.hero-stat span {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-stat-div {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.12);
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.4s ease both;
}
.btn-primary {
  background: var(--orange);
  color: white;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  letter-spacing: 0.3px;
}
.btn-primary:hover {
  background: var(--orange2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 80, 26, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 30px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    border-color var(--transition),
    background var(--transition),
    transform var(--transition);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.hero-visual {
  position: absolute;
  right: 0;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero-img {
  width: 90%;
  max-width: 520px;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow:
    0 24px 80px rgba(232, 80, 26, 0.15),
    0 8px 32px rgba(0, 0, 0, 0.5);
  animation:
    floatAnim 4s ease-in-out infinite,
    fadeUp 0.8s 0.2s ease both;
  position: relative;
  z-index: 2;
}
@keyframes floatAnim {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.hero-badge-discount {
  position: absolute;
  top: 28%;
  left: 10%;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  width: 72px;
  height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  z-index: 3;
  animation: fadeUp 0.8s 0.5s ease both;
  box-shadow: 0 8px 24px rgba(232, 80, 26, 0.5);
}
.hero-badge-discount span {
  font-size: 1.1rem;
  line-height: 1;
}
.hero-badge-discount small {
  font-size: 0.65rem;
  letter-spacing: 1px;
}
.hero-badge-best {
  position: absolute;
  top: 55%;
  right: 8%;
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 3;
  animation: fadeUp 0.8s 0.7s ease both;
  backdrop-filter: blur(12px);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.75rem;
  animation: fadeUp 1s 1s ease both;
}
.scroll-dot-anim {
  width: 22px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  position: relative;
}
.scroll-dot-anim::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--orange);
  border-radius: 2px;
  animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot {
  0% {
    top: 5px;
    opacity: 1;
  }
  80% {
    top: 20px;
    opacity: 0;
  }
  100% {
    top: 5px;
    opacity: 0;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── TRUST BAR ───────────────────────────────────── */
.trust-bar {
  background: var(--dark2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 18px 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 28px;
  color: var(--gray2);
}
.trust-item svg {
  flex-shrink: 0;
  color: var(--orange);
}
.trust-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}
.trust-item small {
  font-size: 0.75rem;
  color: var(--gray);
}
.trust-sep {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.07);
}

/* ── SECTION HEADER ──────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-tag {
  display: inline-block;
  background: rgba(232, 80, 26, 0.12);
  color: var(--orange);
  border: 1px solid rgba(232, 80, 26, 0.25);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.section-header p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* ── CATEGORIES ──────────────────────────────────── */
.categories {
  padding: 80px 0;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
}
.cat-img-wrap {
  width: 100%;
  height: 100%;
}
.cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  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(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.2) 60%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 12px;
  text-align: center;
  transition: background var(--transition);
}
.cat-card:hover .cat-overlay {
  background: linear-gradient(
    to top,
    rgba(232, 80, 26, 0.75) 0%,
    rgba(0, 0, 0, 0.2) 70%,
    transparent 100%
  );
}
.cat-overlay span {
  font-size: 1.6rem;
  margin-bottom: 6px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}
.cat-overlay strong {
  font-size: 0.9rem;
  font-weight: 700;
  display: block;
}
.cat-overlay small {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ── FILTER TABS ─────────────────────────────────── */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-tab {
  padding: 9px 22px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray2);
  transition: all var(--transition);
}
.filter-tab:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.filter-tab.active {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}

/* ── PRODUCTS SECTION ────────────────────────────── */
.products {
  padding: 80px 0;
  background: var(--dark);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Product Card */
.product-card {
  background: var(--dark3);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  border-color: rgba(232, 80, 26, 0.2);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.07);
}
.product-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(12px);
  transition:
    opacity var(--transition),
    transform var(--transition);
}
.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}
.product-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.85);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  font-size: 0.85rem;
  transition:
    background var(--transition),
    transform var(--transition);
}
.product-action-btn:hover {
  background: var(--orange);
  transform: scale(1.1);
}
.product-action-btn.wishlisted {
  background: var(--orange);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-novo {
  background: #3b82f6;
  color: white;
}
.badge-oferta {
  background: var(--orange);
  color: white;
}
.badge-destaque {
  background: #a855f7;
  color: white;
}
.badge-top {
  background: var(--green);
  color: white;
}

.product-info {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-cat {
  font-size: 0.72rem;
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.product-name {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
}
.product-brand {
  font-size: 0.78rem;
  color: var(--gray);
}
.product-stars {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: #fbbf24;
}
.product-stars small {
  color: var(--gray);
}
.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0;
}
.price-now {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
}
.price-was {
  font-size: 0.82rem;
  color: var(--gray);
  text-decoration: line-through;
}
.btn-add-to-cart {
  margin-top: auto;
  width: 100%;
  background: var(--orange);
  color: white;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  transition:
    background var(--transition),
    transform var(--transition);
}
.btn-add-to-cart:hover {
  background: var(--orange2);
  transform: scale(1.02);
}

.load-more-wrap {
  text-align: center;
  margin-top: 48px;
}
.btn-load-more {
  padding: 14px 36px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-load-more:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(232, 80, 26, 0.06);
}

/* ── FLASH SALE ──────────────────────────────────── */
.flash-sale {
  padding: 80px 0;
  background: linear-gradient(135deg, #100a06 0%, #1a0e08 50%, #0d0d0d 100%);
  border-top: 1px solid rgba(232, 80, 26, 0.15);
  border-bottom: 1px solid rgba(232, 80, 26, 0.15);
}
.flash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}
.flash-label {
  background: var(--orange);
  color: white;
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.flash-title h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
}
.countdown {
  display: flex;
  align-items: center;
  gap: 8px;
}
.time-block {
  background: var(--dark3);
  border: 1px solid rgba(232, 80, 26, 0.3);
  border-radius: 10px;
  width: 72px;
  padding: 12px 8px;
  text-align: center;
}
.time-block span {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  font-family: var(--font-display);
  line-height: 1;
}
.time-block small {
  font-size: 0.65rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.time-sep {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  padding-bottom: 16px;
}

.flash-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.flash-card {
  background: var(--dark3);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.flash-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.flash-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.flash-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.flash-card:hover .flash-img-wrap img {
  transform: scale(1.06);
}
.flash-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--orange);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 800;
}
.flash-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.flash-cat {
  font-size: 0.72rem;
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.flash-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
}
.stars-row {
  font-size: 0.82rem;
  color: #fbbf24;
}
.stars-row small {
  color: var(--gray);
}
.flash-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.price-old-sm {
  font-size: 0.82rem;
  color: var(--gray);
  text-decoration: line-through;
}
.price-current-lg {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}
.stock-bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stock-bar {
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}
.stock-fill {
  height: 100%;
  background: linear-gradient(to right, var(--orange), var(--orange3));
  border-radius: 3px;
}
.stock-bar-wrap small {
  font-size: 0.75rem;
  color: #fbbf24;
}
.btn-flash {
  width: 100%;
  background: var(--orange);
  color: white;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: auto;
  transition:
    background var(--transition),
    transform var(--transition);
}
.btn-flash:hover {
  background: var(--orange2);
  transform: scale(1.02);
}

/* ── PROMO SECTION ───────────────────────────────── */
.promo-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.promo-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.promo-orange {
  background: linear-gradient(135deg, #c43d10, #e8501a);
}
.promo-dark {
  background: linear-gradient(135deg, #1a1a2e, #0f1525);
}
.promo-card img {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.promo-content {
  position: relative;
  z-index: 1;
  padding: 40px 40px;
}
.promo-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.promo-content h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.promo-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}
.btn-promo {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 11px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.btn-promo:hover {
  background: white;
  color: #333;
}

/* ── BRANDS ──────────────────────────────────────── */
.brands {
  padding: 40px 0;
  background: var(--dark2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}
.brands-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 24px;
}
.brands-track-wrap {
  overflow: hidden;
}
.brands-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: brandScroll 30s linear infinite;
}
.brands-track:hover {
  animation-play-state: paused;
}
.brand-item {
  padding: 10px 40px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  white-space: nowrap;
  transition: color var(--transition);
  cursor: default;
}
.brand-item:hover {
  color: rgba(255, 255, 255, 0.7);
}
@keyframes brandScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── TESTIMONIALS ────────────────────────────────── */
.testimonials {
  padding: 80px 0;
  background: var(--dark);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 28px;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: rgba(232, 80, 26, 0.15);
  line-height: 1;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.testimonial-stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 14px;
}
.testimonial-card p {
  font-size: 0.9rem;
  color: var(--gray2);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
}
.testimonial-author small {
  font-size: 0.78rem;
  color: var(--gray);
}

/* ── NEWSLETTER ──────────────────────────────────── */
.newsletter {
  padding: 80px 24px;
  background: linear-gradient(
    135deg,
    var(--orange2) 0%,
    var(--orange) 50%,
    #ff6b35 100%
  );
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.15) 0%, transparent 50%);
}
.newsletter-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.newsletter-icon {
  font-size: 3rem;
  flex-shrink: 0;
}
.newsletter-text {
  flex: 1;
  min-width: 240px;
}
.newsletter-text h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.newsletter-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}
.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  min-width: 300px;
}
.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  border-radius: 50px;
  border: none;
  outline: none;
  font-size: 0.9rem;
  font-family: var(--font);
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark);
}
.newsletter-form button {
  background: var(--dark);
  color: white;
  padding: 14px 26px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: all var(--transition);
  white-space: nowrap;
}
.newsletter-form button:hover {
  background: #222;
  transform: scale(1.03);
}

/* ── FOOTER ──────────────────────────────────────── */
footer {
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 1.3rem;
  font-weight: 700;
}
.footer-logo strong {
  color: var(--orange);
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--dark4);
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}
.social-link:hover {
  background: var(--orange);
  color: white;
  transform: translateY(-2px);
}

.footer-links h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--gray);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--orange);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray);
}
.payment-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pay-badge {
  background: var(--dark3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gray2);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
}

/* ── WHATSAPP FLOAT ──────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.25);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1100px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .flash-products {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .promo-section {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .hero-content {
    max-width: 100%;
  }
  .trust-bar {
    gap: 0;
  }
  .trust-sep {
    display: none;
  }
  .trust-item {
    padding: 10px 18px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--dark2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 0;
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    z-index: 999;
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .nav-links > a {
    padding: 14px 24px;
    width: 100%;
  }
  .nav-dropdown {
    width: 100%;
  }
  .nav-drop-trigger {
    padding: 14px 24px;
    width: 100%;
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    border: none;
    box-shadow: none;
    background: var(--dark4);
    border-radius: 0;
    grid-template-columns: 1fr 1fr;
    margin: 0 24px;
    width: calc(100% - 48px);
  }
  .cart-label {
    display: none;
  }
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .flash-products {
    grid-template-columns: 1fr;
  }
  .flash-header {
    flex-direction: column;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .newsletter-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-stats {
    gap: 16px;
  }
  .trust-bar {
    flex-direction: column;
  }
  .trust-sep {
    display: none;
  }
}
