/* ============================================================
   VARIABLES & RESET  —  TEMA "POP" VIBRANTE 🍌
============================================================ */
:root {
  /* Paleta vibrante */
  --yellow: #FFD60A;
  --yellow-light: #FFE864;
  --yellow-dark: #FFC400;
  --pink: #FF1B8D;
  --pink-light: #FF66B3;
  --pink-dark: #D6006E;
  --purple: #8B2FE6;
  --purple-dark: #6A1FB8;
  --cyan: #00D9C0;

  /* Superficies */
  --bg: #FFD60A;          /* fondo amarillo llamativo */
  --bg-alt: #FFE864;      /* secciones alternas */
  --bg-card: #FFFFFF;     /* tarjetas blancas */
  --bg-card2: #FFF4CC;    /* crema suave */
  --ink: #1A1414;         /* "negro" cálido */
  --border: #1A1414;
  --text: #1A1414;
  --text-muted: #8A7636;
  --text-light: #6E5E2E;

  --radius: 16px;
  --radius-sm: 10px;

  /* Sombras duras estilo pop */
  --shadow: 4px 4px 0 var(--ink);
  --shadow-lg: 6px 6px 0 var(--ink);
  --shadow-pink: 4px 4px 0 var(--pink-dark);
  --shadow-soft: 0 8px 24px rgba(26,20,20,.15);

  --transition: .2s cubic-bezier(.4,0,.2,1);
  --header-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .4px;
  border: 2.5px solid var(--ink);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--pink);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn--primary:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
  background: var(--pink-dark);
}
.btn--outline {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.btn--outline:hover {
  background: var(--yellow-light);
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}
.btn--ghost {
  border: 2.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--yellow); }
.btn--lg { padding: 16px 36px; font-size: 16px; }
.btn--full { width: 100%; }
.btn--sm { padding: 8px 18px; font-size: 13px; box-shadow: 3px 3px 0 var(--ink); }
.btn--sm:hover { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }

/* ============================================================
   AGE GATE
============================================================ */
.age-gate {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, var(--pink-light) 0%, transparent 35%),
    radial-gradient(circle at 80% 70%, var(--purple) 0%, transparent 40%),
    var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}
.age-gate.hidden { display: none; }

.age-gate__card {
  background: var(--bg-card);
  border: 3px solid var(--ink);
  border-radius: 24px;
  padding: 56px 48px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: fadeInUp .5s ease;
}
.age-gate__logo { font-size: 56px; margin-bottom: 20px; }
.age-gate__title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--ink);
}
.age-gate__title span { color: var(--pink); }
.age-gate__subtitle { color: var(--text-light); margin-bottom: 36px; }
.age-gate__actions { display: flex; gap: 16px; justify-content: center; margin-bottom: 20px; flex-wrap: wrap; }
.age-gate__legal { font-size: 12px; color: var(--text-muted); }
.age-gate__legal a { color: var(--pink); font-weight: 600; }

/* ============================================================
   HEADER
============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--yellow);
  border-bottom: 3px solid var(--ink);
  transition: background var(--transition);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--header-h);
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header__logo-icon { font-size: 26px; }
.header__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
}
.header__logo-text { position: relative; }

.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-link {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  border: 2px solid transparent;
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active {
  background: var(--ink);
  color: var(--yellow);
}

.header__actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }

.search-toggle, .cart-toggle {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  border: 2.5px solid var(--ink);
  background: #fff;
  color: var(--ink);
  transition: all var(--transition);
}
.search-toggle:hover, .cart-toggle:hover { background: var(--pink); color: #fff; }

.cart-toggle { position: relative; }
.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--pink);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  min-width: 20px; height: 20px;
  padding: 0 5px;
  border: 2px solid var(--ink);
  border-radius: 50px;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition);
}
.cart-count.bump { transform: scale(1.4); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border: 2.5px solid var(--ink);
  border-radius: 12px;
  background: #fff;
}
.menu-toggle span {
  width: 20px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Search bar */
.search-bar {
  position: absolute;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--bg-card);
  border-bottom: 3px solid var(--ink);
  padding: 16px 20px;
  display: none;
  z-index: 99;
}
.search-bar.open { display: block; }
.search-input {
  width: 100%;
  background: var(--bg-card2);
  border: 2.5px solid var(--ink);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  outline: none;
}
.search-input:focus { background: #fff; box-shadow: var(--shadow); }
.search-close {
  position: absolute;
  top: 24px; right: 32px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}
.search-results {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 320px;
  overflow-y: auto;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}
.search-result-item:hover { background: var(--bg-card2); border-color: var(--ink); }
.search-result-item img { width: 40px; height: 40px; object-fit: cover; border-radius: 8px; border: 2px solid var(--ink); }
.search-result-info strong { font-size: 14px; display: block; }
.search-result-info span { font-size: 13px; color: var(--pink); font-weight: 700; }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 3px solid var(--ink);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 25%, var(--pink) 0%, transparent 30%),
    radial-gradient(circle at 90% 80%, var(--purple) 0%, transparent 32%),
    radial-gradient(circle at 15% 90%, var(--cyan) 0%, transparent 28%),
    var(--yellow);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--ink) 1.4px, transparent 1.4px);
  background-size: 26px 26px;
  opacity: .08;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 660px;
  padding: 80px 0;
  animation: fadeInUp .7s ease;
}
.hero__badge {
  display: inline-block;
  background: var(--ink);
  color: var(--yellow);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: .5px;
  border: 2.5px solid var(--ink);
}
.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 70px);
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--ink);
  text-shadow: 3px 3px 0 var(--pink);
}
.hero__sub {
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  display: inline-block;
  padding: 6px 16px;
  border: 2.5px solid var(--ink);
  border-radius: 50px;
  box-shadow: var(--shadow);
  margin-bottom: 36px;
}

/* ============================================================
   SECTIONS
============================================================ */
.section { padding: 72px 0; }
.section--dark { background: var(--bg-alt); border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 34px);
  color: var(--ink);
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 5px;
  background: var(--pink);
  border: 2px solid var(--ink);
  border-radius: 4px;
  margin-top: 10px;
}

/* ============================================================
   CATEGORIES GRID
============================================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 18px;
  margin-top: 40px;
}
.category-card {
  background: var(--bg-card);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 28px 16px 24px;
  text-align: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.category-card:nth-child(3n+1) { background: #fff; }
.category-card:nth-child(3n+2) { background: var(--bg-card2); }
.category-card:nth-child(3n+3) { background: #fff; }
.category-card:hover {
  background: var(--pink);
  color: #fff;
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--ink);
}
.category-card__icon { font-size: 38px; margin-bottom: 12px; }
.category-card__name { font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.category-card__desc { font-size: 12px; color: var(--text-muted); }
.category-card:hover .category-card__desc { color: rgba(255,255,255,.85); }

/* ============================================================
   PRODUCTS GRID
============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.products-grid.list-view { grid-template-columns: 1fr; }
.products-grid.list-view .product-card { flex-direction: row; }
.products-grid.list-view .product-card__img-wrap {
  width: 180px;
  flex-shrink: 0;
  border-radius: var(--radius) 0 0 var(--radius);
  border-right: 2.5px solid var(--ink);
}
.products-grid.list-view .product-card__body { flex: 1; }

.product-card {
  background: var(--bg-card);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--ink);
}
.product-card__img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-card2);
  border-bottom: 2.5px solid var(--ink);
}
.product-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-card__img { transform: scale(1.06); }

.product-card__placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  background: repeating-linear-gradient(45deg, var(--yellow-light), var(--yellow-light) 14px, var(--yellow) 14px, var(--yellow) 28px);
}

.product-card__badges {
  position: absolute;
  top: 12px; left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.badge {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .5px;
  border: 2px solid var(--ink);
}
.badge--new { background: var(--cyan); color: var(--ink); }
.badge--sale { background: var(--pink); color: #fff; }
.badge--hot { background: var(--yellow); color: var(--ink); }

.product-card__quick-add {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  border: 2.5px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(.7);
  transition: all var(--transition);
  box-shadow: 2px 2px 0 var(--ink);
}
.product-card:hover .product-card__quick-add { opacity: 1; transform: scale(1); }
.product-card__quick-add:hover { background: var(--ink); color: var(--yellow); transform: scale(1.12) !important; }

.product-card__body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.product-card__cat { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; margin-bottom: 6px; }
.product-card__name { font-size: 15px; font-weight: 800; margin-bottom: 6px; line-height: 1.4; color: var(--ink); }
.product-card__short-desc { font-size: 13px; color: var(--text-light); margin-bottom: 14px; line-height: 1.5; flex: 1; }

.product-card__price { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.price-current { font-size: 21px; font-weight: 800; color: var(--pink-dark); }
.price-original { font-size: 14px; color: var(--text-muted); text-decoration: line-through; }
.price-discount {
  background: var(--cyan);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  padding: 2px 9px;
  border: 1.5px solid var(--ink);
  border-radius: 50px;
}

/* ============================================================
   TRUST BAR
============================================================ */
.trust-bar {
  background: var(--purple);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  padding: 32px 0;
}
.trust-bar__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
}
.trust-item__icon {
  font-size: 28px; flex-shrink: 0;
  background: var(--yellow);
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  box-shadow: 3px 3px 0 var(--ink);
}
.trust-item strong { display: block; font-size: 14px; font-weight: 800; margin-bottom: 2px; }
.trust-item p { font-size: 13px; color: rgba(255,255,255,.85); margin: 0; }

/* ============================================================
   CATALOG PAGE
============================================================ */
.page-header {
  background: var(--bg-alt);
  border-bottom: 3px solid var(--ink);
  padding: 40px 0;
}
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: var(--ink);
  text-shadow: 2px 2px 0 var(--pink);
}

.catalog-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  padding-top: 40px;
  padding-bottom: 64px;
  align-items: start;
}

.catalog-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: var(--bg-card);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.filter-section { margin-bottom: 28px; }
.filter-section:last-child { margin-bottom: 0; }
.filter-title { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--ink); font-weight: 800; margin-bottom: 14px; }
.filter-list { display: flex; flex-direction: column; gap: 6px; }
.filter-item {
  padding: 9px 14px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.filter-item:hover { background: var(--bg-card2); border-color: var(--ink); }
.filter-item.active { background: var(--pink); color: #fff; border-color: var(--ink); box-shadow: 2px 2px 0 var(--ink); }
.filter-check {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--ink);
  cursor: pointer; padding: 6px 0;
}
.filter-check input { accent-color: var(--pink); width: 16px; height: 16px; }

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  background: var(--bg-card);
  border: 2.5px solid var(--ink);
  border-radius: 50px;
  padding: 10px 20px;
  box-shadow: var(--shadow);
}
.product-count { font-size: 14px; font-weight: 700; color: var(--ink); }
.view-toggles { display: flex; gap: 6px; }
.view-btn {
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 2px solid var(--ink);
  background: #fff;
  color: var(--ink);
  font-size: 18px;
  transition: all var(--transition);
}
.view-btn.active { background: var(--pink); color: #fff; }

.empty-state {
  text-align: center;
  padding: 64px 0;
  color: var(--ink);
}
.empty-state p { margin-bottom: 24px; font-size: 16px; font-weight: 600; }

/* ============================================================
   PRODUCT DETAIL
============================================================ */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 32px 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  background: #fff;
  padding: 8px 18px;
  border: 2.5px solid var(--ink);
  border-radius: 50px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.back-btn:hover { background: var(--yellow-light); transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink); }

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}
.product-detail__gallery { position: sticky; top: calc(var(--header-h) + 24px); }
.product-detail__main-img {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 100px;
}
.product-detail__main-img img { width: 100%; height: 100%; object-fit: cover; }
.product-detail__thumbs { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.product-detail__thumb {
  width: 70px; height: 70px;
  border-radius: 10px;
  border: 2.5px solid var(--ink);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
}
.product-detail__thumb.active { box-shadow: 3px 3px 0 var(--pink); }

.product-detail__info { padding-top: 8px; }
.product-detail__cat { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; margin-bottom: 12px; }
.product-detail__name {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--ink);
}
.product-detail__price-wrap { display: flex; align-items: baseline; gap: 14px; margin-bottom: 28px; flex-wrap: wrap; }
.product-detail__price { font-size: 38px; font-weight: 800; color: var(--pink-dark); }
.product-detail__original { font-size: 20px; color: var(--text-muted); text-decoration: line-through; }
.product-detail__save {
  background: var(--cyan);
  color: var(--ink);
  padding: 4px 14px;
  border: 2px solid var(--ink);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
}

.product-detail__desc { color: var(--text); line-height: 1.8; margin-bottom: 28px; }

.product-detail__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.tag {
  background: #fff;
  border: 2px solid var(--ink);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}

.qty-selector { display: flex; align-items: center; gap: 0; margin-bottom: 20px; }
.qty-btn {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: #fff;
  border: 2.5px solid var(--ink);
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  transition: all var(--transition);
}
.qty-btn:hover { background: var(--pink); color: #fff; }
.qty-input {
  width: 60px; height: 42px;
  text-align: center;
  background: #fff;
  border: 2.5px solid var(--ink);
  border-left: none; border-right: none;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.product-detail__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.product-detail__actions .btn { flex: 1; min-width: 160px; }

/* ============================================================
   PROMOTIONS
============================================================ */
.promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  padding: 40px 0 64px;
}
.promo-card {
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  color: #fff;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-lg);
}
.promo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.12);
}
.promo-card__content { position: relative; z-index: 1; }
.promo-card__badge {
  display: inline-block;
  background: var(--ink);
  color: var(--yellow);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 16px;
}
.promo-card__title { font-family: 'Playfair Display', serif; font-size: 28px; margin-bottom: 8px; text-shadow: 2px 2px 0 rgba(0,0,0,.3); }
.promo-card__sub { font-size: 16px; opacity: .95; margin-bottom: 20px; font-weight: 600; }
.promo-card__discount { font-size: 54px; font-weight: 800; line-height: 1; margin-bottom: 20px; text-shadow: 3px 3px 0 rgba(0,0,0,.3); }

/* ============================================================
   CONTACT
============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  padding: 48px 0 80px;
}
.contact-info { padding-top: 8px; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 28px; margin-bottom: 24px; color: var(--ink); }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-info-item__icon {
  font-size: 22px; flex-shrink: 0;
  background: var(--yellow);
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border: 2.5px solid var(--ink);
  border-radius: 12px;
  box-shadow: 2px 2px 0 var(--ink);
}
.contact-info-item strong { display: block; font-size: 14px; font-weight: 800; margin-bottom: 4px; }
.contact-info-item p { color: var(--text-light); font-size: 14px; margin: 0; }
.contact-info-item a { color: var(--pink-dark); font-weight: 700; }

.contact-form-wrap {
  background: var(--bg-card);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.contact-form-wrap h2 { font-family: 'Playfair Display', serif; font-size: 24px; margin-bottom: 28px; color: var(--ink); }

/* ============================================================
   FORMS
============================================================ */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: #fff;
  border: 2.5px solid var(--ink);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  box-shadow: var(--shadow);
  background: var(--bg-card2);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================================
   CART DRAWER
============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,20,20,.55);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 420px;
  max-width: 100%;
  height: 100%;
  background: var(--bg-card);
  border-left: 3px solid var(--ink);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 3px solid var(--ink);
  background: var(--yellow);
}
.cart-drawer__header h2 { font-size: 19px; font-weight: 800; color: var(--ink); }
.cart-close { color: var(--ink); font-size: 22px; font-weight: 700; transition: transform var(--transition); }
.cart-close:hover { transform: rotate(90deg); }

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

.cart-empty { text-align: center; padding: 48px 0; }
.cart-empty span { font-size: 48px; display: block; margin-bottom: 12px; }
.cart-empty p { color: var(--text-light); margin-bottom: 20px; font-weight: 600; }

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 2px dashed var(--ink);
  animation: fadeInUp .2s ease;
}
.cart-item__img {
  width: 72px; height: 72px;
  border-radius: 10px;
  object-fit: cover;
  background: var(--bg-card2);
  border: 2.5px solid var(--ink);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.cart-item__img img { width: 100%; height: 100%; object-fit: cover; border-radius: 7px; }
.cart-item__body { flex: 1; }
.cart-item__name { font-size: 14px; font-weight: 800; margin-bottom: 4px; line-height: 1.4; }
.cart-item__price { font-size: 14px; color: var(--pink-dark); font-weight: 700; margin-bottom: 10px; }
.cart-item__controls { display: flex; align-items: center; gap: 8px; }
.cart-item__qty {
  display: flex; align-items: center; gap: 0;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
}
.cart-item__qty button {
  width: 30px; height: 30px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  transition: all var(--transition);
}
.cart-item__qty button:hover { background: var(--pink); color: #fff; }
.cart-item__qty span { width: 28px; text-align: center; font-size: 14px; font-weight: 700; }
.cart-item__remove {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  transition: color var(--transition);
}
.cart-item__remove:hover { color: var(--pink-dark); }
.cart-item__subtotal { font-size: 13px; color: var(--text-light); margin-top: 4px; font-weight: 600; }

.cart-drawer__footer {
  padding: 20px 24px;
  border-top: 3px solid var(--ink);
  background: var(--bg-card2);
}
.cart-summary { margin-bottom: 12px; }
.cart-summary__row { display: flex; justify-content: space-between; font-size: 14px; color: var(--text-light); margin-bottom: 8px; font-weight: 600; }
.cart-summary__row--total { font-size: 19px; font-weight: 800; color: var(--ink); padding-top: 8px; border-top: 2px dashed var(--ink); margin-top: 4px; }
.cart-summary__row--total span:last-child { color: var(--pink-dark); }
.cart-note { font-size: 12px; color: var(--text-muted); margin-bottom: 16px; font-weight: 600; }

/* ============================================================
   CHECKOUT MODAL
============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,20,20,.65);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--bg-card);
  border: 3px solid var(--ink);
  border-radius: 20px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: scale(.95) translateY(20px);
  transition: transform var(--transition);
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 3px solid var(--ink);
  background: var(--yellow);
  border-radius: 17px 17px 0 0;
}
.modal__header h2 { font-size: 21px; font-weight: 800; color: var(--ink); }
.modal__close { color: var(--ink); font-size: 22px; font-weight: 700; transition: transform var(--transition); }
.modal__close:hover { transform: rotate(90deg); }
.modal__body { padding: 24px 28px; }

.checkout-note {
  background: var(--yellow-light);
  border: 2.5px solid var(--ink);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 24px;
}

.order-summary-box {
  background: var(--bg-card2);
  border: 2.5px solid var(--ink);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}
.order-summary-box h4 { font-size: 13px; color: var(--ink); text-transform: uppercase; letter-spacing: 1px; font-weight: 800; margin-bottom: 12px; }
.order-summary-item { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 6px; font-weight: 500; }
.order-summary-item span:last-child { color: var(--pink-dark); font-weight: 700; }
.order-summary-total { display: flex; justify-content: space-between; font-size: 16px; font-weight: 800; margin-top: 10px; padding-top: 10px; border-top: 2px dashed var(--ink); }
.order-summary-total span:last-child { color: var(--pink-dark); }

/* ============================================================
   TOAST
============================================================ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--ink);
  color: #fff;
  border: 2.5px solid var(--ink);
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  z-index: 500;
  box-shadow: var(--shadow);
  transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .3s;
  opacity: 0;
  white-space: nowrap;
  max-width: 90vw;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast.success { background: var(--pink); }
.toast.error { background: var(--pink-dark); }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--ink);
  color: var(--yellow);
  border-top: 3px solid var(--ink);
  padding: 56px 0 0;
  margin-top: 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--yellow);
  display: inline-block;
}
.footer h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--pink-light); font-weight: 800; margin-bottom: 16px; }
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: rgba(255,255,255,.8); font-size: 14px; font-weight: 500; transition: color var(--transition); }
.footer ul a:hover { color: var(--yellow); }
.footer p { color: rgba(255,255,255,.7); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.7);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 9px 20px;
  border: 2.5px solid var(--ink);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-top: 12px;
  box-shadow: 3px 3px 0 rgba(0,0,0,.4);
  transition: all var(--transition);
}
.whatsapp-btn:hover { background: #1da851; transform: translate(2px,2px); box-shadow: 1px 1px 0 rgba(0,0,0,.4); }

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading {
  width: 36px; height: 36px;
  border: 4px solid var(--ink);
  border-top-color: var(--pink);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin: 64px auto;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .catalog-layout { grid-template-columns: 200px 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .product-detail { grid-template-columns: 1fr; }
  .product-detail__gallery { position: static; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .header__nav { display: none; }
  .header__nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--yellow);
    border-bottom: 3px solid var(--ink);
    padding: 16px;
    z-index: 99;
    gap: 4px;
  }
  .menu-toggle { display: flex; }
  .hero { min-height: 70vh; }
  .catalog-layout { grid-template-columns: 1fr; }
  .catalog-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
  .cart-drawer { width: 100%; }
  .age-gate__card { padding: 40px 24px; }
  .modal__body, .modal__header { padding: 20px; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 34px; }
  .section-title { font-size: 24px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
}
