
* {
  touch-action: manipulation;
}
:root {
  --bg-body: #f8f9ff;
  --bg-surface: #ffffff;
  --bg-surface-2: #f2f4f8;
  --bg-elevated: #ffffff;
  --bg-hero: linear-gradient(135deg, #f8f9ff 0%, #fff5f5 50%, #f0f4ff 100%);
  --red: #e53e3e;
  --red-light: #fc8181;
  --red-dark: #c53030;
  --orange: #ed8936;
  --orange-light: #f6ad55;
  --violet: #805ad5;
  --violet-light: #b794f4;
  --green: #38a169;
  --green-dark: #2f855a;
  --text-1: #1a202c;
  --text-2: #4a5568;
  --text-3: #718096;
  --border: rgba(0, 0, 0, 0.08);
  --border-2: rgba(0, 0, 0, 0.12);
  --grad-hero: linear-gradient(135deg, #f8f9ff 0%, #fff5f5 50%, #f0f4ff 100%);
  --grad-accent: linear-gradient(135deg, #e53e3e, #ed8936);
  --grad-card: linear-gradient(145deg, #ffffff, #f8fafe);
  --grad-shine: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.02);
  --shadow-glow:
    0 0 0 1px rgba(229, 62, 62, 0.1), 0 8px 20px rgba(229, 62, 62, 0.08);
  --shadow-fab: 0 4px 14px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 16px 32px -12px rgba(0, 0, 0, 0.15);
  --font:
    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 9999px;
  --header-h: 68px;
  --ease: 250ms cubic-bezier(0.2, 0.9, 0.4, 1.1);
  --ease-out: 350ms cubic-bezier(0, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font);
  background: var(--bg-body);
  color: var(--text-1);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}
[id] {
  scroll-margin-top: var(--header-h);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.8rem 2rem;
  border-radius: var(--r-full);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: none;
  transition: all var(--ease);
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}
.btn:active {
  transform: scale(0.97);
}
.btn-primary {
  background: var(--grad-accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(229, 62, 62, 0.2);
  isolation: isolate;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(229, 62, 62, 0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 2px solid var(--border-2);
}
.btn-ghost:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.btn-outline-accent {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline-accent:hover {
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: var(--green);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(56, 161, 105, 0.25);
  gap: var(--space-3);
}
.btn-whatsapp:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(56, 161, 105, 0.3);
}
.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.82rem;
}

.header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition:
    background var(--ease),
    box-shadow var(--ease);
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--space-6);
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}
.logo-image {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.logo-image--sm {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-1);
  letter-spacing: -0.7px;
  font-family: "Helvetica Neue", Arial, sans-serif;
}
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}
.nav-link {
  padding: var(--space-2) var(--space-4);
  border-radius: var(--r-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-2);
  transition:
    color var(--ease),
    background var(--ease);
}
.nav-link:hover {
  color: var(--red);
  background: rgba(0, 0, 0, 0.03);
}
.header-right {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.cart-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: var(--r-full);
  background: var(--bg-surface-2);
  border: 1px solid var(--border);
  color: var(--text-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease);
}
.cart-btn:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  border-radius: var(--r-full);
  background: var(--red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  transition: transform 200ms cubic-bezier(0.4, 2, 0.6, 1);
}
.cart-count.bump {
  transform: scale(1.5);
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  background: var(--bg-surface-2);
  border: 1px solid var(--border);
  padding: 0;
}
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  margin-inline: auto;
  transition:
    transform var(--ease),
    opacity var(--ease);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-top: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.open {
  max-height: 350px;
}
.mobile-nav-link {
  display: block;
  padding: var(--space-4) var(--space-6);
  color: var(--text-2);
  font-size: 0.95rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  transition:
    color var(--ease),
    padding-left var(--ease);
}
.mobile-nav-link:hover {
  color: var(--red);
  padding-left: calc(var(--space-6) + 8px);
}

.hero {
  position: relative;
  height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  background: var(--bg-hero);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
}
.hero-orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #feb2b2, transparent 70%);
  top: -200px;
  left: -200px;
  animation: orbDrift 14s ease-in-out infinite alternate;
}
.hero-orb--2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #c6f6d5, transparent 70%);
  bottom: -150px;
  right: 30%;
  animation: orbDrift 18s ease-in-out infinite alternate-reverse;
}
.hero-orb--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #feebc8, transparent 70%);
  top: 30%;
  right: 10%;
  animation: orbDrift 12s ease-in-out infinite alternate;
  opacity: 0.25;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-12) var(--space-8) var(--space-10)
    max(var(--space-8), calc((100vw - 1280px) / 2 + var(--space-6)));
}
.hero-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--r-full);
  background: rgba(229, 62, 62, 0.08);
  border: 1px solid rgba(229, 62, 62, 0.2);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: var(--space-8);
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-title {
  display: flex;
  flex-direction: column;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -2px;
  margin-bottom: var(--space-5);
  color: var(--text-1);
}
.hero-title-line {
  display: block;
  animation: fadeUp 0.6s ease both;
}
.hero-title-line:nth-child(1) {
  animation-delay: 0.2s;
}
.hero-title-line:nth-child(2) {
  animation-delay: 0.35s;
}
.hero-title-line:nth-child(3) {
  animation-delay: 0.5s;
}
.hero-title-accent {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: var(--space-6);
  animation: fadeUp 0.6s 0.6s ease both;
}
.hero-actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
  animation: fadeUp 0.6s 0.75s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  padding-top: var(--space-2);
  animation: fadeUp 0.6s 0.9s ease both;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stat strong {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -1px;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stat span {
  font-size: 0.75rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-2);
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 420px;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: spin linear infinite;
}
.hero-ring--outer {
  width: 340px;
  height: 340px;
  border-color: rgba(229, 62, 62, 0.15);
  animation-duration: 30s;
}

.hero-ring--mid {
  width: 240px;
  height: 240px;
  border-color: rgba(128, 90, 213, 0.2);
  animation-duration: 20s;
  animation-direction: reverse;
}

.hero-ring--inner {
  width: 160px;
  height: 160px;
  border-color: rgba(237, 137, 54, 0.25);
  animation-duration: 12s;
}
.hero-center-icon {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  filter: drop-shadow(0 0 20px rgba(229, 62, 62, 0.22));
  animation: float 6s ease-in-out infinite;
}

.hero-center-icon img {
  width: 50%;
  height: 50%;
  object-fit: contain;
}

.section {
  padding-block: var(--space-12);
}
.section--dark {
  background: var(--bg-surface-2);
}
.section-head {
  text-align: center;
  margin-bottom: var(--space-12);
}
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--space-3);
  background: rgba(229, 62, 62, 0.08);
  padding: 4px 14px;
  border-radius: var(--r-full);
  border: 1px solid rgba(229, 62, 62, 0.2);
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--text-1);
}
.text-accent {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-5);
}
.cat-card {
  position: relative;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--bg-surface);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  transition: all var(--ease);
  box-shadow: var(--shadow-sm);
}
.cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cat-color, var(--red));
  opacity: 0;
  transition: opacity var(--ease);
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.cat-card:hover::before {
  opacity: 0.06;
}
.cat-card.is-active {
  border-color: var(--cat-color, var(--red));
  box-shadow:
    0 0 0 1px var(--cat-color, var(--red)),
    var(--shadow-sm);
}
.cat-card.is-active::before {
  opacity: 0.08;
}
.cat-card__emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: var(--space-4);
  position: relative;
  z-index: 1;
}
.cat-card__name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-1);
  margin-bottom: var(--space-1);
  position: relative;
  z-index: 1;
}
.cat-card__count {
  font-size: 0.75rem;
  color: var(--text-3);
  position: relative;
  z-index: 1;
}
.cat-card.is-active .cat-card__count {
  color: var(--cat-color, var(--red));
}

.search-wrap {
  padding-block: var(--space-6);
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--header-h);
  z-index: 100;
  backdrop-filter: blur(8px);
  transition: padding 0.35s ease;
}
.search-bar {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  max-width: 620px;
  margin-inline: auto;
  background: var(--bg-surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-full);
  padding: 0 var(--space-5);
  transition: all var(--ease);
  box-shadow: var(--shadow-sm);
}
.search-bar:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.15);
}
.search-icon {
  color: var(--text-3);
  flex-shrink: 0;
}
.search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-1);
  padding-block: 0.85rem;
  outline: none;
}
.search-clear {
  width: 26px;
  height: 26px;
  border-radius: var(--r-full);
  background: rgba(0, 0, 0, 0.05);
  color: var(--text-3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--ease);
}
.search-clear:hover {
  background: var(--red);
  color: #fff;
}
.filter-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  margin-top: var(--space-4);
}
.filter-pill {
  padding: 0.4rem 1rem;
  border-radius: var(--r-full);
  border: 1px solid var(--border-2);
  background: var(--bg-surface);
  color: var(--text-2);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
}
.filter-pill:hover {
  color: var(--text-1);
  border-color: var(--red);
  background: rgba(229, 62, 62, 0.05);
}
.filter-pill.is-active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.results-count {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-3);
  margin-top: var(--space-3);
  min-height: 1.2em;
}
#searchToggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0 auto 10px auto;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.25s ease;
}
#searchToggle:hover {
  background: rgba(0, 0, 0, 0.08);
}
#searchContent {
  overflow: hidden;
  max-height: 250px;
  opacity: 1;
  transition:
    max-height 0.4s ease,
    opacity 0.25s ease,
    margin 0.4s ease;
}
.search-wrap.is-collapsed {
  padding-block: var(--space-3);
}
.search-wrap.is-collapsed #searchContent {
  max-height: 0;
  opacity: 0;
  margin-top: -8px;
  pointer-events: none;
}
.search-wrap.is-collapsed #searchToggle svg {
  transform: rotate(180deg);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-6);
}
.product-card {
  position: relative;
  border-radius: var(--r-lg);
  border: 1px solid #e7ddd1;
  background: var(--bg-elevated);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--ease);
  animation: cardIn 0.4s ease both;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--red);
  border-width: 0.5px;
  box-shadow: var(--shadow-hover);
}

.product-card__img-wrap {
  position: relative;
  aspect-ratio: 4/3;        
  overflow: hidden;
  background: var(--bg-surface-2);
  flex-shrink: 0;
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;        
  object-position: center;  
  padding: 0;               
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-card__img {
  transform: scale(1.08);
}
.product-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background: var(--bg-surface-2);
  color: var(--text-3);
}
.product-card__badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  padding: 3px 10px;
  border-radius: var(--r-full);
  background: var(--grad-accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}
.product-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--ease);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: var(--space-4);
  pointer-events: none;
}
.product-card:hover .product-card__overlay {
  opacity: 1;
}
.product-card__overlay-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.product-card__overlay-text svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.5;
}
.product-card__body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
}
.product-card__cat {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
}
.product-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.3;
}
.product-card__short {
  font-size: 0.82rem;
  color: var(--text-3);
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-3);
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.product-card__price {
  font-size: 1.3rem;
  font-weight: 900;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}
.product-card__sizes {
  display: flex;
  gap: var(--space-1);
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 140px;
}
.product-card__size-tag {
  font-size: 0.68rem;
  padding: 2px 7px;
  border-radius: var(--r-full);
  border: 1px solid var(--border-2);
  color: var(--text-2);
  background: var(--bg-surface);
}
.product-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-5);
  background: var(--bg-surface-2);
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-2);
  transition: all var(--ease);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.product-card:hover .product-card__cta {
  color: var(--red);
  background: rgba(229, 62, 62, 0.05);
}
.product-card__cta svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.5;
  transition: transform var(--ease);
}
.product-card:hover .product-card__cta svg {
  transform: translateX(4px);
}
.empty-state {
  text-align: center;
  padding: var(--space-20) var(--space-6);
}
.empty-icon {
  font-size: 4rem;
  margin-bottom: var(--space-6);
  opacity: 0.5;
}
.empty-state h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: var(--space-3);
}
.empty-state p {
  color: var(--text-3);
  margin-bottom: var(--space-6);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
}
.why-card {
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  background: var(--bg-surface);
  transition: all var(--ease);
  box-shadow: var(--shadow-sm);
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-2);
  box-shadow: var(--shadow-hover);
}
.why-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-5);
  display: block;
}
.why-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-1);
  margin-bottom: var(--space-3);
}
.why-card p {
  font-size: 0.88rem;
  color: var(--text-3);
  line-height: 1.65;
}


.contact-subtitle {
  font-size: 1rem;
  color: var(--text-3);
  margin-top: var(--space-3);
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.7;
}

.contact-buttons {
  display: flex;
  flex-direction: row;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-8);
}

.contact-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex: 0 1 auto;
  padding: 1rem 1.75rem;
  border-radius: var(--r-full);
  text-decoration: none;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.contact-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.contact-btn:hover::after {
  left: 130%;
}

.contact-btn:hover {
  transform: translateY(-3px);
}

.contact-btn:active {
  transform: translateY(0px) scale(0.98);
}

.contact-btn--call {
  background: #0284c7;
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 6px 20px rgba(37, 99, 235, 0.3),
    0 2px 6px rgba(37, 99, 235, 0.15);
}

.contact-btn--call:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 10px 28px rgba(37, 99, 235, 0.38),
    0 4px 10px rgba(37, 99, 235, 0.2);
}

.contact-btn--whatsapp {
  background: var(--green);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 6px 20px rgba(22, 163, 74, 0.3),
    0 2px 6px rgba(22, 163, 74, 0.15);
}

.contact-btn--whatsapp:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 10px 28px rgba(22, 163, 74, 0.38),
    0 4px 10px rgba(22, 163, 74, 0.2);
}

.contact-btn__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--r-full);
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.25s ease;
}

.contact-btn:hover .contact-btn__icon-wrap {
  background: rgba(255, 255, 255, 0.22);
}

.contact-btn__glow {
  display: none;
}

.contact-btn__text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.contact-btn__text strong {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.1px;
  line-height: 1.2;
}

.contact-btn__sub {
  font-size: 0.82rem;
  opacity: 0.75;
  font-weight: 500;
}

.contact-btn__hint {
  display: none;
}

.contact-btn__arrow {
  flex-shrink: 0;
  opacity: 0.45;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  margin-left: var(--space-1);
}

.contact-btn:hover .contact-btn__arrow {
  opacity: 0.85;
  transform: translateX(3px);
}


.contact-btn__icon-wrap,
.contact-btn__text,
.contact-btn__arrow {
  position: relative;
  z-index: 1;
}

@media (max-width: 520px) {
  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

.footer {
  background: var(--bg-surface-2);
  border-top: 1px solid var(--border);
  padding-block: var(--space-16) var(--space-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-1);
  margin-bottom: var(--space-4);
}
.footer-desc {
  font-size: 0.85rem;
  color: var(--text-3);
  line-height: 1.65;
  margin-bottom: var(--space-6);
}
.footer-social {
  display: flex;
  gap: var(--space-3);
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--r-full);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  transition: all var(--ease);
}
.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: scale(1.1);
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: var(--space-5);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-col ul li a,
.footer-col ul li span {
  font-size: 0.85rem;
  color: var(--text-3);
  transition: all var(--ease);
}
.footer-col ul li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  transition:
    color var(--ease),
    transform var(--ease);
}

.footer-col ul li a:hover {
  color: var(--red);
  transform: translateX(4px);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-size: 0.78rem;
  color: var(--text-1);
}

.fab-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: var(--r-full);
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(56, 161, 105, 0.3);
  transition:
    transform var(--ease),
    box-shadow var(--ease);
}
.fab-whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-full);
  background: var(--green);
  animation: pulse 2.5s ease-in-out infinite;
  z-index: -1;
}
.fab-whatsapp:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 28px rgba(56, 161, 105, 0.4);
}
.fab-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-elevated);
  border: 1px solid var(--border-2);
  color: var(--text-1);
  font-size: 0.78rem;
  font-weight: 600;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--r-md);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
  box-shadow: var(--shadow-sm);
}
.fab-whatsapp:hover .fab-tooltip {
  opacity: 1;
}
.fab-phone {
  position: fixed;
  bottom: 88px;
  right: 20px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: var(--r-full);
  background: #0284c7;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
  transition:
    transform var(--ease),
    box-shadow var(--ease);
}
.fab-phone::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-full);
  background: #0284c7;
  animation: pulse 2.5s ease-in-out infinite;
  animation-delay: 1.25s;
  z-index: -1;
}
.fab-phone:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 28px rgba(2, 132, 199, 0.45);
}
.fab-phone:hover .fab-tooltip {
  opacity: 1;
}
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease-out);
  backdrop-filter: blur(4px);
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: var(--bg-elevated);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform var(--ease-out);
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.05);
}
.cart-sidebar.open {
  transform: translateX(0);
}
.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-header h2 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-1);
}
.cart-close {
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  background: var(--bg-surface-2);
  border: 1px solid var(--border);
  color: var(--text-3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease);
}
.cart-close:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-5) var(--space-6);
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: var(--space-4);
  text-align: center;
  color: var(--text-3);
}
.cart-empty__icon {
  font-size: 3rem;
  opacity: 0.3;
}
.cart-empty__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-2);
}
.cart-empty__sub {
  font-size: 0.82rem;
}
.cart-item {
  display: flex;
  gap: var(--space-4);
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child {
  border-bottom: none;
}
.cart-item__thumb {
  width: 60px;
  height: 60px;
  border-radius: var(--r-md);
  background: var(--bg-surface-2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  overflow: hidden;
  border: 1px solid var(--border);
}
.cart-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item__info {
  flex: 1;
  min-width: 0;
}
.cart-item__name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item__cat {
  font-size: 0.72rem;
  color: var(--text-3);
  margin-bottom: 4px;
}
.cart-item__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-item__price {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--red);
}
.cart-item__qty {
  font-size: 0.75rem;
  color: var(--text-3);
}
.cart-footer {
  padding: var(--space-5) var(--space-6);
  border-top: 1px solid var(--border);
  background: var(--bg-surface-2);
  flex-shrink: 0;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-4);
}
.cart-total-row span:first-child {
  font-size: 0.88rem;
  color: var(--text-2);
  font-weight: 600;
}
.cart-total-row span:last-child {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-1);
}
.cart-note {
  font-size: 0.75rem;
  color: var(--text-3);
  text-align: center;
  margin-bottom: var(--space-4);
}

.scroll-top {
  position: fixed;
  bottom: 156px;
  right: 27px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: var(--bg-surface);
  border: 1px solid var(--border-2);
  color: var(--text-1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-fab);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity var(--ease),
    transform var(--ease);
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}
@keyframes orbDrift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(30px, 20px) scale(1.1);
  }
}
@keyframes pulse {
  0% {
    opacity: 0.4;
    transform: scale(1);
  }
  70% {
    opacity: 0;
    transform: scale(1.5);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

.product-card:nth-child(1) {
  animation-delay: 0ms;
}
.product-card:nth-child(2) {
  animation-delay: 60ms;
}
.product-card:nth-child(3) {
  animation-delay: 120ms;
}
.product-card:nth-child(4) {
  animation-delay: 180ms;
}
.product-card:nth-child(5) {
  animation-delay: 240ms;
}
.product-card:nth-child(6) {
  animation-delay: 300ms;
}
.product-card:nth-child(7) {
  animation-delay: 360ms;
}
.product-card:nth-child(8) {
  animation-delay: 420ms;
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    height: 100svh;
    align-items: stretch;
  }
  .hero-visual {
    display: none;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: var(--space-20) var(--space-8);
    max-width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  :root {
    --header-h: 62px;
  }
  .nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-title {
    letter-spacing: -1px;
  }
  .hero-content {
    padding: var(--space-12) var(--space-5) var(--space-10);
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }
  .footer-grid .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-grid .footer-col:last-child {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 520px) {
  .container {
    padding-inline: var(--space-4);
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-stats {
    gap: var(--space-4);
  }
  .hero-stat strong {
    font-size: 1.3rem;
  }
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
  }
  .product-card__body {
    padding: var(--space-4);
  }
  .product-card__name {
    font-size: 0.92rem;
  }
  .product-card__price {
    font-size: 1.1rem;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 380px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff, #fafafa);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--text-2);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}
.back-link:hover {
  transform: translateY(-2px);
  color: var(--red);
  border-color: rgba(229, 62, 62, 0.18);
  box-shadow: 0 12px 28px rgba(229, 62, 62, 0.08);
}
.back-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.4;
  fill: none;
}
.checkout-back-wrap {
  margin-bottom: 12px;
}
@media (max-width: 520px) {
  .back-link {
    width: fit-content;
    justify-content: flex-start;
    padding: 10px 16px;
  }
}

.loading-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top-color: #16a34a;
  animation: spin 0.8s linear infinite;
  margin: 2rem auto;
}


.empty-cart,
.empty-cart-checkout {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg-surface);
  border-radius: 28px;
  border: 1px solid var(--border);
}
.empty-cart-icon {
  font-size: 4rem;
  opacity: 0.4;
  margin-bottom: 1rem;
}
.empty-cart h3,
.empty-cart-checkout h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.empty-cart p,
.empty-cart-checkout p {
  color: var(--text-3);
  margin-bottom: 1rem;
}


@media (max-width: 768px) {
  .fab-whatsapp.hide-at-bottom,
  .fab-phone.hide-at-bottom,
  .scroll-top.hide-at-bottom {
    opacity: 0;
    pointer-events: none;
  }
}

@media (max-width: 768px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero-actions .btn {
    width: auto;
    flex: 0 1 auto;
  }
}