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

:root {
  --pink: #EC4899;
  --pink-light: #F472B6;
  --pink-pale: #FDF2F8;
  --cream: #FFF8F0;
  --brown-dark: #2D1B0E;
  --brown-mid: #5C3D2E;
  --brown-light: #9B7B6A;
  --border-pink: rgba(244,114,182,0.2);
  --font-body: 'Quicksand', sans-serif;
  --font-head: 'Nunito', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--brown-dark);
  background: #fff;
  overflow-x: hidden;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── HEADER ──────────────────────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,248,240,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-pink);
  height: 70px;
}

.header-inner {
  max-width: 100%;
  padding: 0 2rem;
  height: 70px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.logo-link { display: flex; align-items: center; }
.logo-img { height: 44px; width: auto; border-radius: 10px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-self: center;
}

.main-nav a {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brown-mid);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  transition: all 0.2s;
}

.main-nav a:hover {
  color: var(--pink);
  background: rgba(244,114,182,0.12);
}

.nav-game {
  animation: pulsePink 2s ease-in-out infinite;
  border-radius: 8px !important;
  color: var(--pink) !important;
  font-weight: 700 !important;
}

@keyframes pulsePink {
  0%, 100% { box-shadow: 0 0 0 0 rgba(236,72,153,0.45); background-color: rgba(236,72,153,0.1); }
  50% { box-shadow: 0 0 0 8px rgba(236,72,153,0); background-color: rgba(236,72,153,0.2); }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-self: end;
}

.btn-login {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--pink-light), var(--pink));
  color: white;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.2s;
}
.btn-login:hover { opacity: 0.9; }

.btn-signout {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  background: none;
  color: var(--brown-mid);
  border: 1px solid rgba(244,114,182,0.4);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-signout:hover { background: rgba(244,114,182,0.1); border-color: var(--pink); }

.btn-cart {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--pink-light), var(--pink));
  color: white;
  border: none;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  transition: opacity 0.2s;
}
.btn-cart:hover { opacity: 0.9; }

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--brown-dark);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--brown-mid);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-top: 1px solid var(--border-pink);
  padding: 1rem 1.5rem;
  gap: 0.75rem;
}

.mobile-nav a {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown-mid);
}

.mobile-nav.open { display: flex; }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  max-height: 600px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255,248,240,0.7) 0%, transparent 60%);
}

.hero-cta {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--pink-light), var(--pink));
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
  display: inline-block;
  text-decoration: none;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }

.btn-outline {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  background: rgba(255,255,255,0.85);
  color: var(--pink);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  border: 1.5px solid var(--pink);
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
  text-decoration: none;
}
.btn-outline:hover { background: var(--pink-pale); }

/* ── STATS BAR ───────────────────────────────────────────────── */
.stats-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border-pink);
  padding: 1rem 1.5rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 2.5rem;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--pink);
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brown-light);
  text-align: center;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-pink);
}

/* ── SECTIONS ─────────────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-alt { background: var(--cream); }

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, #FCE7F3, #FDF2F8);
  color: var(--pink);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(244,114,182,0.3);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--brown-dark);
  line-height: 1.2;
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--brown-light);
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: center;
  max-width: 540px;
  margin: 0 auto 3rem;
}

/* ── PRODUCTS ─────────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 2rem auto 0;
}

.product-card {
  background: white;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(244,114,182,0.12);
  border: 1.5px solid rgba(244,114,182,0.1);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(244,114,182,0.2);
}

.product-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--pink-pale);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 800;
  color: white;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
}

.product-body { padding: 1.25rem; }

.product-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--brown-dark);
  margin-bottom: 0.4rem;
}

.product-desc {
  font-size: 0.875rem;
  color: var(--brown-light);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.product-price {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--pink);
}

.product-original {
  font-size: 0.95rem;
  color: var(--brown-light);
  text-decoration: line-through;
}

.product-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--border-pink);
  background: none;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.qty-btn:hover { background: var(--pink-pale); }

.qty-val {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  min-width: 24px;
  text-align: center;
}

.btn-add-cart {
  width: 100%;
  background: linear-gradient(135deg, var(--pink-light), var(--pink));
  color: white;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.75rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
}
.btn-add-cart:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-add-cart.added { background: linear-gradient(135deg, #34d399, #10b981); }

.product-skeleton {
  height: 420px;
  border-radius: 24px;
  background: linear-gradient(90deg, #f3e8f0 25%, #fde9f4 50%, #f3e8f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── HOW IT WORKS ────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.step-card {
  background: white;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  border: 1.5px solid var(--border-pink);
  text-align: center;
}

.step-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.step-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--brown-dark);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--brown-light);
  line-height: 1.6;
}

/* ── WHAT'S INSIDE ───────────────────────────────────────────── */
.inside-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.items-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.item-tag {
  background: var(--pink-pale);
  color: var(--pink);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  border: 1px solid rgba(244,114,182,0.25);
}

.inside-image img {
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(244,114,182,0.15);
}

/* ── ABOUT ───────────────────────────────────────────────────── */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image img {
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(244,114,182,0.15);
}

.about-desc {
  color: var(--brown-mid);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.about-list li {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brown-dark);
}

/* ── TESTIMONIALS ─────────────────────────────────────────────── */
.testimonials-track-wrapper {
  overflow: hidden;
  margin-top: 3rem;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonials-track {
  display: flex;
  gap: 1.25rem;
  animation: scrollLeft 35s linear infinite;
  width: max-content;
}

.testimonials-track:hover { animation-play-state: paused; }

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  min-width: 300px;
  max-width: 320px;
  background: var(--cream);
  border-radius: 20px;
  border: 1px solid rgba(244,114,182,0.15);
  padding: 1.5rem;
  flex-shrink: 0;
}

.testimonial-card .stars {
  color: #FBBF24;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.testimonial-card p {
  font-size: 0.9rem;
  color: var(--brown-mid);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--pink);
}

/* ── FAQ ──────────────────────────────────────────────────────── */
.faq-list {
  max-width: 720px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid rgba(244,114,182,0.2);
  border-radius: 16px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brown-dark);
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: background 0.15s;
}
.faq-question:hover { background: #fdf2f8; }
.faq-item.open .faq-question { background: var(--pink-pale); }

.faq-arrow {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--pink);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.1rem;
  font-size: 0.9rem;
  color: var(--brown-mid);
  line-height: 1.7;
}
.faq-answer a { color: var(--pink); text-decoration: underline; }
.faq-item.open .faq-answer { display: block; }

/* ── TRUST BADGES ─────────────────────────────────────────────── */
.badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.badge-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border-pink);
}

.badge-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }

.badge-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--brown-dark);
  margin-bottom: 0.5rem;
}

.badge-desc {
  font-size: 0.875rem;
  color: var(--brown-light);
  line-height: 1.6;
}

/* ── FOOTER ───────────────────────────────────────────────────── */
.site-footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 1.5rem;
}

.footer-top {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-brand { max-width: 260px; }
.footer-logo { height: 36px; width: auto; margin-bottom: 0.75rem; filter: brightness(10); }

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
}

.footer-links {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  flex: 1;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 100px;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--pink-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.25rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color 0.15s; }
.footer-bottom a:hover { color: var(--pink-light); }

/* ── WHATSAPP FLOAT ───────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 300;
  background: #25D366;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}

/* ── CART SIDEBAR ─────────────────────────────────────────────── */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 400;
}
.cart-overlay.open { display: block; }

.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: min(400px, 100vw);
  height: 100vh;
  background: white;
  z-index: 500;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 30px rgba(0,0,0,0.15);
  transition: right 0.3s ease;
}
.cart-sidebar.open { right: 0; }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-pink);
}

.cart-header h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--brown-dark);
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--brown-light);
  line-height: 1;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cart-empty {
  text-align: center;
  color: var(--brown-light);
  font-size: 0.9rem;
  padding: 2rem 0;
}

.cart-item {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem;
  background: var(--cream);
  border-radius: 12px;
}

.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

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

.cart-item-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--brown-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--pink);
}

.cart-item-qty-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.cart-item-qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border-pink);
  background: white;
  font-size: 1rem;
  color: var(--pink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1;
}

.cart-item-qty-val {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  min-width: 18px;
  text-align: center;
}

.cart-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border-pink);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-total-row span:first-child {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--brown-mid);
}

.cart-total {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--pink);
}

.cart-email-input {
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  border: 1.5px solid var(--border-pink);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.cart-email-input:focus { border-color: var(--pink); }

.btn-checkout {
  width: 100%;
  background: linear-gradient(135deg, var(--pink-light), var(--pink));
  color: white;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.85rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-checkout:hover { opacity: 0.9; }
.btn-checkout:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-clear-cart {
  width: 100%;
  background: none;
  border: 1px solid rgba(156,113,98,0.3);
  color: #9B7B6A;
  font-size: 0.8rem;
  padding: 0.4rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-top: 0.25rem;
}
.btn-clear-cart:hover { background: #fee2e2; color: #dc2626; border-color: #dc2626; }

/* ── STRIPE MODAL ─────────────────────────────────────────────── */
#stripe-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
#stripe-modal-overlay.open { display: flex; }

#stripe-modal-box {
  background: white;
  border-radius: 16px;
  padding: 24px;
  width: min(560px, 95vw);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.stripe-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #888;
  z-index: 1;
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .btn-login { display: none; }
  .hamburger { display: block; }
  .cart-label { display: none; }

  .inside-container,
  .about-container { grid-template-columns: 1fr; gap: 2rem; }

  .about-image { order: -1; }

  .hero-img { height: 380px; }

  .stat-item { padding: 0.5rem 1.25rem; }

  .footer-top { flex-direction: column; gap: 2rem; }
  .footer-brand { max-width: 100%; }

  .hero-cta { flex-direction: column; gap: 0.75rem; }

  .section { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .badges-grid { grid-template-columns: 1fr; }
}

/* ── PROFILE DROPDOWN ─────────────────────────────────────────── */
.profile-dropdown-wrap { position: relative; display: inline-flex; }
.profile-dropdown-wrap .dropdown-arrow { font-size: 0.7rem; margin-left: 2px; }
.profile-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #fff;
  border: 1px solid rgba(236,72,153,0.15);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 160px;
  overflow: hidden;
  z-index: 200;
  flex-direction: column;
}
.profile-dropdown-wrap.open .profile-dropdown-menu { display: flex; }
.profile-dropdown-item {
  display: block;
  width: 100%;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  color: #2D1B0E;
  text-decoration: none;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}
.profile-dropdown-item:hover { background: #FFF0F6; color: #EC4899; }
.profile-signout-btn { border-top: 1px solid rgba(236,72,153,0.1); color: #9B7B6A; }
.profile-signout-btn:hover { background: #fee2e2; color: #dc2626; }

.box-alert {
  display: none;
  background: linear-gradient(135deg, #FFF0F6, #FCE7F3);
  border: 1.5px solid #F9A8D4;
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #BE185D;
  text-align: center;
  margin: 0 auto 1.5rem;
  max-width: 480px;
  transition: opacity 0.3s;
  opacity: 0;
}
.box-alert.show { display: block; opacity: 1; }

.out-of-stock-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px 12px 0 0;
  color: #fff; font-weight: 800; font-size: 1.1rem;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.coming-soon-overlay {
  background: rgba(124,58,237,0.6);
}

/* Cart item out-of-stock */
.cart-item-img-wrap {
  position: relative; flex-shrink: 0;
}
.cart-item-oos { opacity: 0.75; }
.cart-item-oos-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  color: #fff; font-size: 9px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.04em;
  text-align: center; padding: 2px;
}
.cart-item-oos .cart-item-qty-btn:not(:last-child) { opacity: 0.4; cursor: not-allowed; }
