/* ═══════════════════════════════════════════
   CSS CUSTOM PROPERTIES
   ═══════════════════════════════════════════ */
:root {
  --pink: #E91E8C;
  --pink-light: #F472B6;
  --pink-soft: #FDF2F8;
  --pink-mist: #FEF7FB;
  --blue: #7CB9E8;
  --blue-light: #B8D8F0;
  --blue-soft: #F0F7FC;
  --black: #1A1A2E;
  --charcoal: #2D2D44;
  --gray-900: #374151;
  --gray-700: #6B7280;
  --gray-500: #9CA3AF;
  --gray-300: #D1D5DB;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --gray-50: #F9FAFB;
  --white: #FFFFFF;
  --warm-bg: #FEFCFA;
  --blush-bg: #FFF8F9;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
  --shadow-pink: 0 4px 24px rgba(233,30,140,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

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

/* ═══════════════════════════════════════════
   UTILITY
   ═══════════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray-700);
  max-width: 560px;
  line-height: 1.7;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   AGE VERIFICATION MODAL
   ═══════════════════════════════════════════ */
.age-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,46,0.85);
  backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 1;
  transition: opacity 0.4s ease;
}
.age-modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.age-modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.age-modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-light), var(--pink-light), var(--pink));
}

.age-modal-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--pink);
  margin-bottom: 8px;
}

.age-modal-sub {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--blue);
  margin-bottom: 24px;
}

.age-modal h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--black);
}

.age-modal p {
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 32px;
  line-height: 1.6;
}

.age-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.age-btn {
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.age-btn-yes {
  background: var(--pink);
  color: var(--white);
}
.age-btn-yes:hover {
  background: #D1177D;
  box-shadow: var(--shadow-pink);
  transform: translateY(-1px);
}

.age-btn-no {
  background: var(--gray-100);
  color: var(--gray-700);
}
.age-btn-no:hover {
  background: var(--gray-200);
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
}

.nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-brand {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.nav-brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--pink);
  letter-spacing: -0.5px;
}

.nav-brand-accent {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--black);
}

.nav-brand-city {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--blue);
  margin-left: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
  position: relative;
  letter-spacing: 0.3px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover { color: var(--pink); }
.nav-link:hover::after { width: 100%; }

.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
  padding: 8px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--gray-200);
}

.nav-cart:hover {
  border-color: var(--pink-light);
  color: var(--pink);
}

.nav-cart svg { width: 18px; height: 18px; }

.cart-count {
  background: var(--pink);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -4px;
  right: -4px;
  opacity: 0;
  transform: scale(0);
  transition: var(--transition);
}

.cart-count.show {
  opacity: 1;
  transform: scale(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-cart__label {
  display: inline;
}

/* Mobile menu */
.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-menu-btn { display: flex; }
  .nav-cart__label { display: none; }
  .nav-cart { padding: 8px; border: none; }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
  }
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  background: var(--white);
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244,114,182,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124,185,232,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 540px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 8px;
  background: var(--pink-soft);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--pink);
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease both;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--pink);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 20px;
  animation: fadeInUp 0.6s 0.1s ease both;
}

.hero h1 em {
  font-style: italic;
  color: var(--pink);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
  animation: fadeInUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeInUp 0.6s 0.3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--pink);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  background: #D1177D;
  box-shadow: var(--shadow-pink);
  transform: translateY(-2px);
}

.btn-primary svg { width: 18px; height: 18px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: transparent;
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 50px;
  border: 1.5px solid var(--gray-300);
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--pink-light);
  color: var(--pink);
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeIn 1s 0.3s ease both;
}

.hero-visual-card {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--pink-mist) 0%, var(--blue-soft) 50%, var(--pink-soft) 100%);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.hero-visual-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(244,114,182,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(124,185,232,0.12) 0%, transparent 50%);
}

.hero-visual-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}

.hero-visual-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 2rem;
}

.hero-visual-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.hero-visual-sub {
  font-size: 0.85rem;
  color: var(--gray-700);
}

/* Floating badges around hero visual */
.hero-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  animation: float 4s ease-in-out infinite;
}

.hero-float-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.hero-float-1 {
  top: 15%;
  right: -20px;
  animation-delay: 0s;
}
.hero-float-1 .hero-float-icon { background: var(--pink-soft); }

.hero-float-2 {
  bottom: 20%;
  left: -20px;
  animation-delay: 1.5s;
}
.hero-float-2 .hero-float-icon { background: var(--blue-soft); }

.hero-float-3 {
  bottom: 8%;
  right: 10%;
  animation-delay: 3s;
}
.hero-float-3 .hero-float-icon { background: #FEF3C7; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 768px) {
  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-visual-card { max-width: 320px; aspect-ratio: 1/1; }
  .hero-float { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
}

/* ═══════════════════════════════════════════
   CATALOG (Categories + Products unified)
   ═══════════════════════════════════════════ */
.catalog {
  padding: 80px 0 60px;
  background: var(--white);
}

.catalog-header {
  text-align: center;
  margin-bottom: 40px;
}

.catalog-header .section-subtitle {
  margin: 0 auto;
}

/* Catalog toolbar — sticky */
.catalog-toolbar {
  position: sticky;
  top: 72px;
  z-index: 20;
  background: var(--white);
  padding: 16px 0;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--gray-200);
}

/* Category tabs — wrap on desktop, horizontal scroll on mobile */
.catalog-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 4px;
}

@media (max-width: 720px) {
  .catalog-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .catalog-tabs::-webkit-scrollbar { display: none; }
}

.catalog-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-700);
}

.catalog-tab:hover {
  border-color: var(--pink-light);
  color: var(--pink);
  background: var(--pink-soft);
}

.catalog-tab--active {
  border-color: var(--pink);
  background: var(--pink);
  color: var(--white);
  box-shadow: var(--shadow-pink);
}

.catalog-tab--active:hover {
  background: var(--pink);
  color: var(--white);
}

.catalog-tab__icon {
  font-size: 1.1rem;
  line-height: 1;
}

.catalog-tab__name {
  line-height: 1;
}

/* Controls row */
.catalog-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
}

.catalog-sort {
  padding: 8px 32px 8px 12px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--gray-700);
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236B7280'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") no-repeat right 6px center / 18px;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.catalog-sort:focus {
  outline: none;
  border-color: var(--pink);
}

.catalog-count {
  font-size: 0.82rem;
  color: var(--gray-500);
}

/* ═══════════════════════════════════════════
   PRODUCTS GRID
   ═══════════════════════════════════════════ */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-image {
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
}

.product-image-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transition: var(--transition-slow);
}

.product-card:hover .product-image-bg {
  transform: scale(1.05);
}

/* No-image placeholder */
.product-no-image {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%) !important;
}

.product-no-image__icon {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(233, 30, 140, 0.25);
  letter-spacing: -2px;
  user-select: none;
}

.product-no-image__icon span {
  color: rgba(255, 255, 255, 0.15);
}

.product-no-image__icon--lg {
  font-size: 4rem;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-new {
  background: var(--pink);
  color: var(--white);
}

.badge-hot {
  background: #EF4444;
  color: var(--white);
}

.badge-sale {
  background: var(--blue);
  color: var(--white);
}

.product-quick-add {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--pink);
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
  cursor: pointer;
  border: 1.5px solid var(--pink-light);
}

.product-card:hover .product-quick-add {
  opacity: 1;
  transform: translateY(0);
}

.product-quick-add:hover {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}

.product-info {
  padding: 18px 20px 20px;
}

.product-category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.82rem;
  color: var(--gray-700);
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--pink);
}

.product-price-old {
  font-size: 0.85rem;
  color: var(--gray-500);
  text-decoration: line-through;
  margin-left: 8px;
  font-weight: 400;
}

.product-add-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.product-add-btn:hover {
  background: var(--pink);
  color: var(--white);
  box-shadow: var(--shadow-pink);
}

.product-add-btn svg {
  width: 18px;
  height: 18px;
}

/* ═══════════════════════════════════════════
   TRUST / WHY US
   ═══════════════════════════════════════════ */
.trust {
  padding: 80px 0;
  background: var(--gray-50);
}

.trust-header {
  text-align: center;
  margin-bottom: 56px;
}

.trust-header .section-subtitle { margin: 0 auto; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.trust-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--pink-soft);
}

.trust-icon {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}

.trust-card:nth-child(1) .trust-icon { background: var(--pink-soft); }
.trust-card:nth-child(2) .trust-icon { background: var(--blue-soft); }
.trust-card:nth-child(3) .trust-icon { background: #FEF3C7; }
.trust-card:nth-child(4) .trust-icon { background: #ECFDF5; }

.trust-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
}

.trust-desc {
  font-size: 0.88rem;
  color: var(--gray-700);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   HOW TO ORDER
   ═══════════════════════════════════════════ */
.how-to {
  padding: 80px 0;
  background: var(--white);
}

.how-to-header {
  text-align: center;
  margin-bottom: 56px;
}
.how-to-header .section-subtitle { margin: 0 auto; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--pink-light), var(--blue-light));
  opacity: 0.3;
}

@media (max-width: 768px) {
  .steps-grid::before { display: none; }
}

.step-card { text-align: center; position: relative; }

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-light));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--gray-700);
  line-height: 1.6;
  max-width: 240px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════ */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(233,30,140,0.12) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124,185,232,0.08) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner .section-label { color: var(--pink-light); }

.cta-inner .section-title {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #25D366;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background: #20BD5A;
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(37,211,102,0.3);
}

.btn-whatsapp svg { width: 20px; height: 20px; }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  padding: 60px 0 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .catalog { padding: 48px 0 40px; }
  .catalog-toolbar { padding: 12px 0; }
  .catalog-tab { padding: 8px 14px; font-size: 0.82rem; }
  .catalog-controls { flex-wrap: wrap; gap: 8px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .catalog-tab { padding: 7px 12px; font-size: 0.78rem; }
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--pink);
  margin-bottom: 4px;
}

.footer-brand-name span { color: var(--black); }

.footer-brand-city {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--blue);
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--gray-700);
}

.footer-social:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-social svg { width: 18px; height: 18px; }

.footer-heading {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.88rem;
  color: var(--gray-700);
  transition: var(--transition);
}

.footer-link:hover { color: var(--pink); }

.footer-bottom {
  border-top: 1px solid var(--gray-200);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.8rem;
  color: var(--gray-500);
  transition: var(--transition);
}

.footer-legal a:hover { color: var(--pink); }

/* ═══════════════════════════════════════════
   PRODUCT DETAIL MODAL (PDP)
   ═══════════════════════════════════════════ */
.pdp-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2500;
  backdrop-filter: blur(4px);
}
.pdp-overlay.open { display: block; }

.pdp-modal {
  display: none;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  border-radius: var(--radius-lg);
  z-index: 2600;
  width: 90%;
  max-width: 860px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
}
.pdp-modal.open { display: block; }

.pdp-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.06);
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.pdp-close:hover { background: rgba(0,0,0,0.12); }

.pdp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Gallery */
.pdp-gallery {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pdp-gallery__main {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pdp-gallery__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
}

.pdp-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s;
}
.pdp-gallery__nav:hover { background: #fff; }
.pdp-gallery__nav--prev { left: 10px; }
.pdp-gallery__nav--next { right: 10px; }

.pdp-gallery__thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.pdp-gallery__thumbs::-webkit-scrollbar { display: none; }

.pdp-thumb {
  width: 56px; height: 56px;
  border-radius: 8px;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  background: none;
  transition: border-color 0.2s;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb--active { border-color: var(--pink); }
.pdp-thumb:hover { border-color: var(--pink-light); }

/* Info */
.pdp-info {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.pdp-info__category {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--pink);
  margin-bottom: 8px;
}

.pdp-info__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1.3;
}

.pdp-info__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}

.pdp-info__current-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
}

.pdp-info__old-price {
  font-size: 1rem;
  text-decoration: line-through;
  color: var(--gray-500);
}

.pdp-info__desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 20px;
  flex: 1;
}

.pdp-info__stock { margin-bottom: 20px; }
.pdp-stock {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}
.pdp-stock--ok { background: #ecfdf5; color: #047857; }
.pdp-stock--low { background: #fffbeb; color: #b45309; }
.pdp-stock--out { background: #fef2f2; color: #b91c1c; }

.pdp-info__add-btn {
  width: 100%;
  padding: 14px;
  background: var(--pink);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 12px;
}
.pdp-info__add-btn:hover { background: #C2185B; }
.pdp-info__add-btn:disabled {
  background: var(--gray-300);
  cursor: not-allowed;
}

.pdp-info__wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 1.5px solid var(--gray-200);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.2s;
}
.pdp-info__wa-btn:hover {
  border-color: #25d366;
  color: #25d366;
}

@media (max-width: 768px) {
  .pdp-modal {
    width: 100%;
    max-width: 100%;
    max-height: 100vh;
    border-radius: 0;
    top: 0; left: 0;
    transform: none;
  }
  .pdp-layout {
    grid-template-columns: 1fr;
  }
  .pdp-gallery { padding: 16px; }
  .pdp-info { padding: 20px 16px 32px; }
  .pdp-info__name { font-size: 1.3rem; }
  .pdp-close { top: 8px; right: 8px; }
}

/* ═══════════════════════════════════════════
   FLOATING WHATSAPP
   ═══════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
  transition: var(--transition);
  animation: fadeInUp 0.6s 1s ease both;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(37,211,102,0.45);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--black);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ═══════════════════════════════════════════
   CART SIDEBAR
   ═══════════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,46,0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  max-width: 90vw;
  background: var(--white);
  z-index: 2001;
  transform: translateX(100%);
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
}

.cart-sidebar.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--gray-200);
}

.cart-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
}

.cart-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1.1rem;
  color: var(--gray-700);
}

.cart-close:hover { background: var(--gray-200); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: var(--gray-500);
}

.cart-empty-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.4;
}

.cart-empty p {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.cart-empty small {
  font-size: 0.82rem;
  color: var(--gray-500);
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
  align-items: center;
}

.cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cart-item-info { flex: 1; min-width: 0; }

.cart-item-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price {
  font-size: 0.82rem;
  color: var(--pink);
  font-weight: 600;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item-qty button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--gray-700);
  transition: var(--transition);
}

.cart-item-qty button:hover {
  background: var(--gray-200);
}

.cart-item-qty span {
  font-size: 0.88rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--gray-200);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.cart-total-label {
  font-size: 0.95rem;
  color: var(--gray-700);
}

.cart-total-amount {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
}

.cart-checkout {
  width: 100%;
  padding: 16px;
  background: #25D366;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
}

.cart-checkout:hover {
  background: #20BD5A;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.cart-checkout svg { width: 20px; height: 20px; }
.cart-checkout:disabled { opacity: 0.6; cursor: not-allowed; }

/* ═══════════════════════════════════════════
   CHECKOUT FORM (inside cart sidebar)
   ═══════════════════════════════════════════ */
.cart-checkout-form {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 16px;
  flex: 1;
  overflow-y: auto;
}

.checkout-form__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout-form__header h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
}

.checkout-form__back {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--pink);
  cursor: pointer;
  font-weight: 500;
}

.checkout-form__fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checkout-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 5px;
}

.checkout-field input,
.checkout-field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s;
}

.checkout-field input:focus,
.checkout-field textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(233,30,140,0.08);
}

.checkout-field textarea {
  resize: vertical;
}

.checkout-form__summary {
  padding: 12px 0;
  border-top: 1px solid var(--gray-200);
}

.checkout-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--gray-700);
}

.checkout-summary__row--total {
  padding-top: 10px;
  margin-top: 6px;
  border-top: 1.5px solid var(--gray-200);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--black);
}

.checkout-payment-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkout-pay-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.checkout-pay-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.checkout-pay-btn--mp {
  background: #009ee3;
  color: #fff;
}

.checkout-pay-btn--mp:hover {
  background: #007eb8;
}

.checkout-pay-btn--wa {
  background: transparent;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-700);
}

.checkout-pay-btn--wa:hover {
  border-color: #25d366;
  color: #25d366;
}

.checkout-form__divider {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding-top: 8px;
  border-top: 1px solid var(--gray-200);
}

.checkout-row {
  display: grid;
  grid-template-columns: 1fr 100px;
  gap: 10px;
}

.checkout-form__note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* Field error state */
.checkout-field--error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.checkout-field--error::placeholder {
  color: #ef4444;
}

/* Button spinner */
.checkout-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Checkout success */
.checkout-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 16px;
  gap: 12px;
  flex: 1;
  justify-content: center;
}

.checkout-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ecfdf5;
  color: #047857;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-success__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
}

.checkout-success__id {
  font-size: 0.9rem;
  color: var(--gray-700);
  font-weight: 500;
}

.checkout-success__msg {
  font-size: 0.85rem;
  color: var(--gray-500);
  max-width: 280px;
  line-height: 1.5;
}

.checkout-success__wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s;
  margin-top: 8px;
}

.checkout-success__wa-btn:hover {
  background: #1fb855;
}

.checkout-success__close {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gray-500);
  cursor: pointer;
  margin-top: 8px;
}

.checkout-success__close:hover {
  color: var(--pink);
}

/* ═══════════════════════════════════════════
   TOAST NOTIFICATION
   ═══════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 3000;
  background: var(--black);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-icon { font-size: 1.1rem; }

/* ═══════════════════════════════════════════
   PURCHASE INFO SECTION
   ═══════════════════════════════════════════ */
.purchase-info {
  padding: 70px 0;
  background: linear-gradient(180deg, #fdf6f9 0%, #fff 100%);
}

.purchase-info__header {
  text-align: center;
  margin-bottom: 36px;
}

.purchase-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.purchase-info__card {
  background: #fff;
  border: 1.5px solid var(--gray-200);
  border-radius: 16px;
  padding: 26px 22px;
  text-align: center;
  transition: all 0.25s ease;
}

.purchase-info__card:hover {
  border-color: var(--pink-light, #f8bbd0);
  box-shadow: 0 10px 30px rgba(233, 30, 99, 0.08);
  transform: translateY(-3px);
}

.purchase-info__icon {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 14px;
}

.purchase-info__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900, #111);
  margin: 0 0 8px 0;
}

.purchase-info__desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--gray-600, #4b5563);
  margin: 0;
}

/* Care recommendations - collapsible */
.purchase-info__care {
  background: #fff;
  border: 1.5px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.purchase-info__care[open] {
  border-color: var(--pink-light, #f8bbd0);
}

.purchase-info__care summary {
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-900, #111);
  list-style: none;
  transition: background 0.2s;
}

.purchase-info__care summary::-webkit-details-marker { display: none; }
.purchase-info__care summary::marker { display: none; }

.purchase-info__care summary:hover {
  background: #fdf6f9;
}

.purchase-info__care-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.purchase-info__care-title {
  flex: 1;
}

.purchase-info__care-arrow {
  font-size: 0.9rem;
  color: var(--gray-500, #6b7280);
  transition: transform 0.25s;
}

.purchase-info__care[open] .purchase-info__care-arrow {
  transform: rotate(180deg);
}

.purchase-info__care-list {
  list-style: none;
  padding: 0 22px 22px 22px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--gray-200);
  padding-top: 18px;
}

.purchase-info__care-list li {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--gray-700, #374151);
}

.purchase-info__care-list strong {
  color: var(--gray-900, #111);
  font-weight: 600;
}

@media (max-width: 720px) {
  .purchase-info {
    padding: 50px 0;
  }
  .purchase-info__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .purchase-info__card {
    padding: 22px 18px;
  }
  .purchase-info__care summary {
    padding: 16px 18px;
    font-size: 0.9rem;
  }
  .purchase-info__care-list {
    padding: 16px 18px;
  }
}

/* ═══════════════════════════════════════════
   CHECKOUT — METHOD SELECTOR & TWO FLOWS
   ═══════════════════════════════════════════ */
.checkout-method-selector {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px;
  overflow-y: auto;
}

.method-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.method-card {
  border: 2px solid var(--gray-200);
  border-radius: 14px;
  padding: 18px 16px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.method-card:hover {
  border-color: var(--brand-primary, #e91e63);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.12);
  transform: translateY(-2px);
}

.method-card__icon {
  font-size: 2.4rem;
  line-height: 1;
}

.method-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900, #111);
  margin: 0;
}

.method-card__subtitle {
  font-size: 0.78rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.method-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.method-card__price-amount {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brand-primary, #e91e63);
}

.method-card__price-label {
  font-size: 0.78rem;
  color: var(--gray-500);
  font-weight: 600;
}

.method-card__highlight {
  font-size: 0.78rem;
  font-weight: 600;
  color: #b45309;
  background: #fef3c7;
  padding: 6px 10px;
  border-radius: 8px;
  display: inline-block;
  width: fit-content;
}

.method-card__features {
  list-style: none;
  padding: 0;
  margin: 6px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.method-card__features li {
  font-size: 0.82rem;
  color: var(--gray-700);
}

.method-card__btn {
  margin-top: 10px;
  background: var(--brand-primary, #e91e63);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background 0.2s;
}

.method-card__btn:hover {
  background: #c2185b;
}

/* Free shipping hint inside summary */
.checkout-summary__hint {
  font-size: 0.78rem;
  text-align: center;
  padding: 8px 12px;
  border-radius: 8px;
  margin-top: 8px;
  font-weight: 600;
}

.checkout-summary__hint--unlock {
  background: #fef3c7;
  color: #b45309;
}

.checkout-summary__hint--unlocked {
  background: #d1fae5;
  color: #065f46;
}

/* Email field hint */
.checkout-field__hint {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gray-500);
  margin-left: 4px;
}

/* Local payment buttons */
.checkout-payment-methods--local {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checkout-pay-btn--cash {
  background: #fff;
  border: 1.5px solid #10b981;
  color: #047857;
}

.checkout-pay-btn--cash:hover {
  background: #ecfdf5;
}

.checkout-pay-btn--transfer {
  background: #fff;
  border: 1.5px solid #6366f1;
  color: #4338ca;
}

.checkout-pay-btn--transfer:hover {
  background: #eef2ff;
}

/* Stack method cards horizontally on wider screens */
@media (min-width: 720px) {
  .method-cards {
    flex-direction: row;
  }
  .method-card {
    flex: 1;
  }
}

/* ═══════ Aceptación de términos en el checkout ═══════ */
.checkout-terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0 4px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #6b7280;
  cursor: pointer;
}
.checkout-terms input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: #E91E8C;
  flex: none;
  cursor: pointer;
}
.checkout-terms a {
  color: #E91E8C;
  text-decoration: underline;
}
.checkout-terms--error { color: #b91c1c; }
.checkout-terms--error input {
  outline: 2px solid #b91c1c;
  outline-offset: 1px;
  border-radius: 3px;
}

/* ═══════ Vista de tienda ═══════
   No es otra página: es el mismo documento con las secciones de presentación
   ocultas, para que el carrito, el checkout y la ficha de producto sigan
   siendo los mismos. Lo conmuta app.js con body[data-view]. */
body[data-view="tienda"] .hero,
body[data-view="tienda"] .trust,
body[data-view="tienda"] .how-to,
body[data-view="tienda"] .cta-banner,
body[data-view="tienda"] .purchase-info {
  display: none;
}

/* Sin el hero encima, el catálogo necesita separarse de la barra fija */
body[data-view="tienda"] .catalog {
  padding-top: 120px;
}

/* El enlace de regreso solo existe dentro de la tienda */
.catalog-back { display: none; }
body[data-view="tienda"] .catalog-back {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-500, #6b7280);
  text-decoration: none;
  transition: color 0.2s;
}
body[data-view="tienda"] .catalog-back:hover { color: #E91E8C; }
