/* ================================================================
   main.css — La Playa Mega Store
   ================================================================ */

:root {
  --blue:   #2c5bbf;
  --accent: #226bc4;
  --gold:   #f9cd55;
  --green:  #25D366;
  --dark:   #0a1628;
  --max:    1280px;
}

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

body {
  font-family: 'Outfit', sans-serif;
  background: #f0f2f5;
  color: #1a1a2e;
  overflow-x: hidden;
}

/* ── PAGES ─────────────────────────────────────────────────────── */
.page { display: none; animation: pageIn 0.35s ease; }
.page.active { display: block; }
@keyframes pageIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── TOPBAR ─────────────────────────────────────────────────────── */
.topbar {
  background: var(--blue); color: #fff; font-size: 12px;
  padding: 7px; overflow: hidden; white-space: nowrap; position: relative;
}
.topbar::before, .topbar::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px;
  z-index: 1; pointer-events: none;
}
.topbar::before { left: 0;  background: linear-gradient(90deg,  var(--blue), transparent); }
.topbar::after  { right: 0; background: linear-gradient(-90deg, var(--blue), transparent); }
.topbar-inner {
  display: inline-block;
  animation: marquee 32s linear infinite;
  padding-right: 80px;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── HEADER ─────────────────────────────────────────────────────── */
.header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(44,91,191,.10);
  position: sticky; top: 0; z-index: 200;
}
.header-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; gap: 14px; padding: 12px 24px;
}
.logo-wrap { display: flex; align-items: center; flex-shrink: 0; }
.logo-wrap img { height: 50px; width: auto; object-fit: contain; }

.search-bar {
  flex: 1; max-width: 600px;
  display: flex; border-radius: 50px; overflow: hidden;
  border: 2px solid var(--blue); transition: box-shadow .3s;
}
.search-bar:focus-within { box-shadow: 0 0 0 4px rgba(44,91,191,.15); }
.search-bar input {
  flex: 1; padding: 10px 18px; border: none; outline: none;
  font-family: 'Outfit', sans-serif; font-size: 14px;
  background: #f8f9fc; color: #1a1a2e;
}
.search-bar button {
  background: var(--blue); color: #fff; border: none;
  padding: 0 22px; font-size: 15px; cursor: pointer; transition: background .2s;
}
.search-bar button:hover { background: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.cart-btn {
  position: relative; background: var(--blue); color: #fff; border: none;
  border-radius: 50px; padding: 10px 20px; font-size: 13px; font-weight: 600;
  cursor: pointer; display: flex; align-items: center; gap: 7px;
  white-space: nowrap; font-family: 'Outfit', sans-serif;
  box-shadow: 0 4px 14px rgba(44,91,191,.28); transition: all .2s;
}
.cart-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(44,91,191,.38); }
.cart-count {
  background: #e74c3c; color: #fff; border-radius: 50%;
  width: 19px; height: 19px; font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  position: absolute; top: -5px; right: -5px;
}

/* ── CATS NAV ───────────────────────────────────────────────────── */
.cats-nav { background: var(--blue); border-top: 1px solid rgba(255,255,255,.1); }
.cats-nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  display: flex; overflow-x: auto; scrollbar-width: none;
}
.cats-nav-inner::-webkit-scrollbar { display: none; }
.cat-pill {
  background: transparent; border: none;
  color: rgba(255,255,255,.65); padding: 11px 16px;
  font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 500;
  cursor: pointer; white-space: nowrap;
  border-bottom: 3px solid transparent; transition: all .2s;
}
.cat-pill:hover, .cat-pill.active { color: #fff; border-bottom-color: var(--gold); }

/* ── HERO ────────────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; height: 480px; background: #000; }
@media(max-width:768px) { .hero { height: 300px; } }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .9s ease; pointer-events: none; }
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px; background: linear-gradient(to bottom, transparent, #f0f4fb);
  z-index: 2; pointer-events: none;
}
.hero-dots {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 7px; z-index: 10;
}
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.4); cursor: pointer; transition: all .35s;
}
.dot.active { background: #fff; width: 26px; border-radius: 4px; }

/* ── PROMO BAR ───────────────────────────────────────────────────── */
.promo-bar { background: var(--dark); color: #fff; }
.promo-bar-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 32px; padding: 10px 24px; font-size: 12px; flex-wrap: wrap;
}
.promo-bar-inner span { display: flex; align-items: center; gap: 6px; opacity: .9; }
.promo-bar-inner b { color: var(--gold); }

/* ── WRAP ────────────────────────────────────────────────────────── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 28px 24px; }
@media(max-width:768px) { .wrap { padding: 16px; } }

/* ── SECTION HEADERS ─────────────────────────────────────────────── */
.sec-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.sec-title {
  font-size: 20px; font-weight: 800; color: #0a1628;
  position: relative; padding-bottom: 8px;
}
.sec-title::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 36px; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  border-radius: 2px; transition: width .4s;
}
.sec-title:hover::after { width: 100%; }
.ver-todo {
  font-size: 12px; color: var(--blue); font-weight: 600; cursor: pointer;
  border: 1.5px solid var(--blue); background: none;
  padding: 7px 16px; border-radius: 50px; transition: all .2s;
  font-family: 'Outfit', sans-serif;
}
.ver-todo:hover { background: var(--blue); color: #fff; }

/* ── CATS GRID ───────────────────────────────────────────────────── */
.cats-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; margin-bottom: 32px; }
@media(max-width:1024px) { .cats-grid { grid-template-columns: repeat(5,1fr); } }
@media(max-width:768px)  { .cats-grid { grid-template-columns: repeat(3,1fr); gap: 8px; } }
.cat-card {
  border-radius: 14px; overflow: hidden; cursor: pointer;
  background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,.07);
  border: 1.5px solid #eaecf2;
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
  display: flex; flex-direction: column; align-items: center;
}
.cat-card:hover { transform: translateY(-5px); box-shadow: 0 14px 32px rgba(44,91,191,.16); border-color: var(--blue); }
.cat-img-wrap { width: 100%; height: 90px; overflow: hidden; background: #f4f6fc; display: flex; align-items: center; justify-content: center; }
@media(max-width:768px) { .cat-img-wrap { height: 70px; } }
.cat-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.cat-card:hover .cat-img-wrap img { transform: scale(1.08); }
.cat-label {
  width: 100%; padding: 8px 6px; text-align: center;
  font-size: 11px; font-weight: 700; color: #1a1a2e;
  letter-spacing: .3px; text-transform: uppercase; line-height: 1.3;
  background: #fff; border-top: 1px solid #f0f2f5;
}

/* ── PRODUCTS GRID ───────────────────────────────────────────────── */
.prods-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
@media(max-width:1024px) { .prods-grid { grid-template-columns: repeat(3,1fr); } }
@media(max-width:768px)  { .prods-grid { grid-template-columns: repeat(2,1fr); gap: 12px; } }

.prod-card {
  background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(44,91,191,.07); cursor: pointer;
  transition: all .35s cubic-bezier(.34,1.56,.64,1);
  border: 2px solid transparent;
}
.prod-card:hover { border-color: var(--blue); transform: translateY(-7px); box-shadow: 0 22px 50px rgba(44,91,191,.16); }
.prod-img {
  height: 180px; background: #eef4fb;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
@media(max-width:768px) { .prod-img { height: 140px; } }
.prod-img img { width: 130px; height: 130px; object-fit: contain; transition: transform .5s cubic-bezier(.34,1.56,.64,1); }
@media(max-width:768px) { .prod-img img { width: 100px; height: 100px; } }
.prod-card:hover .prod-img img { transform: scale(1.15) translateY(-5px); }

.prod-badge {
  position: absolute; top: 10px; left: 10px; color: #fff;
  font-size: 9px; font-weight: 800; padding: 5px 11px;
  border-radius: 50px; letter-spacing: 1px; text-transform: uppercase;
  z-index: 3; animation: badge-pulse 2s infinite;
}
.prod-badge.oferta { background: linear-gradient(135deg,#e74c3c,#c0392b); box-shadow: 0 3px 10px rgba(231,76,60,.45); }
.prod-badge.nuevo  { background: linear-gradient(135deg,#16a085,#0e7a64); }
.prod-badge.hot    { background: linear-gradient(135deg,#e67e22,#d35400); }
@keyframes badge-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.07); } }

.prod-body { padding: 14px 16px 16px; }
@media(max-width:768px) { .prod-body { padding: 10px 12px 13px; } }
.prod-cat { font-size: 10px; color: var(--accent); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; font-weight: 700; }
.prod-name { font-size: 14px; font-weight: 700; color: #0a1628; line-height: 1.3; margin-bottom: 12px; }
@media(max-width:768px) { .prod-name { font-size: 12px; } }
.prod-price { font-size: 18px; font-weight: 800; color: var(--blue); margin-bottom: 14px; }
.prod-price small { font-size: 13px; color: #aaa; text-decoration: line-through; margin-left: 6px; font-weight: 400; }
.prod-price.consultar { font-size: 13px; color: #888; font-weight: 600; }

.prod-actions { display: flex; gap: 8px; }
.prod-btn {
  flex: 1; padding: 10px 8px;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  color: #fff; border: none; border-radius: 11px;
  font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: .5px; cursor: pointer; transition: all .25s;
  box-shadow: 0 3px 12px rgba(44,91,191,.28);
}
.prod-btn:hover { transform: translateY(-2px); box-shadow: 0 7px 20px rgba(44,91,191,.4); }
.prod-cart-btn {
  padding: 10px 12px; background: #f0f4ff; color: var(--blue);
  border: none; border-radius: 11px; font-size: 15px; cursor: pointer; transition: all .25s;
}
.prod-cart-btn:hover { background: var(--blue); color: #fff; }

/* ── MODAL ───────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(10,22,40,.72);
  backdrop-filter: blur(8px); z-index: 900;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff; border-radius: 24px; max-width: 640px; width: 100%;
  max-height: 90vh; overflow-y: auto; position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,.3);
}
.modal-img-wrap {
  height: 240px; background: linear-gradient(135deg,#eef4fb,#dce9f7);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.modal-img-wrap img { max-width: 180px; max-height: 180px; object-fit: contain; }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,.9); border: none; border-radius: 50%;
  width: 36px; height: 36px; font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.15); transition: all .2s; z-index: 10;
}
.modal-close:hover { background: #fff; transform: scale(1.1); }
.modal-body { padding: 24px 28px 32px; }
.modal-badge { display: inline-block; margin-bottom: 10px; }
.modal-cat { font-size: 11px; color: var(--accent); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; margin-bottom: 6px; }
.modal-name { font-size: 22px; font-weight: 800; color: #0a1628; margin-bottom: 10px; line-height: 1.2; }
.modal-price { font-size: 28px; font-weight: 900; color: var(--blue); margin-bottom: 16px; }
.modal-price small { font-size: 16px; color: #aaa; text-decoration: line-through; margin-left: 8px; font-weight: 400; }
.modal-price.consultar { font-size: 16px; color: #888; font-weight: 600; }
.modal-desc { font-size: 14px; color: #444; line-height: 1.7; margin-bottom: 20px; white-space: pre-line; }
.modal-specs { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.spec-item { display: flex; gap: 12px; font-size: 13px; padding: 8px 0; border-bottom: 1px solid #f0f2f5; }
.spec-label { font-weight: 700; color: #0a1628; min-width: 120px; flex-shrink: 0; }
.spec-val { color: #555; }
.modal-actions { display: flex; gap: 10px; }
.modal-wa {
  flex: 1; background: linear-gradient(135deg, var(--green), #128C7E);
  color: #fff; border: none; border-radius: 14px; padding: 14px 20px;
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 4px 18px rgba(37,211,102,.35); transition: all .25s;
}
.modal-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.45); }
.modal-cart {
  background: #f0f4ff; color: var(--blue); border: 2px solid rgba(44,91,191,.2);
  border-radius: 14px; padding: 14px 18px; font-family: 'Outfit', sans-serif;
  font-size: 14px; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; gap: 7px; transition: all .25s;
}
.modal-cart:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ── CART DRAWER ─────────────────────────────────────────────────── */
.cart-overlay { position: fixed; inset: 0; background: rgba(10,22,40,.55); backdrop-filter: blur(6px); z-index: 998; display: none; }
.cart-overlay.open { display: block; }
.cart-drawer {
  position: fixed; right: 0; top: 0; bottom: 0; width: 400px; max-width: 100%;
  background: #fff; z-index: 999; display: flex; flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,.18); transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  padding: 20px 24px; border-bottom: 1px solid #eef0f5;
  display: flex; align-items: center; justify-content: space-between;
}
.cart-title { font-size: 17px; font-weight: 800; color: #0a1628; display: flex; align-items: center; gap: 9px; }
.cart-close { background: #f0f2f5; border: none; border-radius: 50%; width: 34px; height: 34px; font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.cart-close:hover { background: #e0e4ee; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { text-align: center; padding: 60px 20px; color: #aaa; }
.cart-empty i { font-size: 48px; margin-bottom: 12px; display: block; opacity: .4; }
.cart-empty p { font-size: 14px; }
.cart-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid #f0f2f5; }
.cart-item img { width: 54px; height: 54px; object-fit: contain; border-radius: 10px; background: #f4f6fc; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 13px; font-weight: 700; color: #0a1628; }
.cart-item-cat { font-size: 11px; color: #888; margin-top: 2px; }
.cart-item-remove { background: none; border: none; color: #ccc; cursor: pointer; font-size: 14px; padding: 4px 8px; border-radius: 6px; transition: all .2s; }
.cart-item-remove:hover { background: #fee; color: #e74c3c; }
.cart-footer { padding: 16px 24px; border-top: 1px solid #eef0f5; }
.cart-total { display: flex; justify-content: space-between; font-size: 15px; font-weight: 800; color: #0a1628; margin-bottom: 14px; }
.cart-wa {
  width: 100%; background: linear-gradient(135deg, var(--green), #128C7E);
  color: #fff; border: none; border-radius: 14px; padding: 14px;
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 4px 16px rgba(37,211,102,.3); transition: all .25s;
}
.cart-wa:hover { transform: translateY(-2px); }

/* ── DEPT PAGE ───────────────────────────────────────────────────── */
.dept-header { background: var(--blue); }
.dept-header-inner {
  max-width: var(--max); margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; gap: 14px; color: #fff;
}
.dept-back {
  background: rgba(255,255,255,.15); border: none; color: #fff;
  border-radius: 50%; width: 38px; height: 38px; font-size: 18px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s; flex-shrink: 0;
}
.dept-back:hover { background: rgba(255,255,255,.25); }
.dept-title { font-size: 20px; font-weight: 700; }
.dept-sub { font-size: 12px; opacity: .65; margin-top: 2px; }
.dept-hero { height: 240px; overflow: hidden; position: relative; }
@media(max-width:768px) { .dept-hero { height: 160px; } }
.dept-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.dept-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 40%,rgba(10,22,40,.45) 100%); }

/* ── FLOAT WA ────────────────────────────────────────────────────── */
.float-wa {
  position: fixed; bottom: 28px; right: 28px;
  background: linear-gradient(135deg,#25D366,#128C7E); color: #fff;
  border: none; border-radius: 50px; padding: 14px 22px;
  font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; gap: 8px;
  text-decoration: none; box-shadow: 0 8px 28px rgba(37,211,102,.45);
  z-index: 500; transition: all .3s; animation: pulse-wa 2.5s infinite;
}
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 8px 28px rgba(37,211,102,.45); }
  50%      { box-shadow: 0 8px 36px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.1); }
}

/* ── REVIEWS ─────────────────────────────────────────────────────── */
.reviews-section { background: #f8fbff; border-radius: 20px; padding: 28px 24px; margin: 8px 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 16px; }
@media(max-width:768px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card { background: #fff; border-radius: 14px; padding: 16px; box-shadow: 0 2px 10px rgba(44,91,191,.07); }
.review-stars { color: #f59e0b; font-size: 14px; margin-bottom: 6px; }
.review-text { font-size: 13px; color: #444; line-height: 1.5; margin-bottom: 10px; }
.review-author { display: flex; align-items: center; gap: 8px; }
.review-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #4a9fd4);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.review-name { font-size: 12px; font-weight: 700; color: #1a2a4a; }
.review-date { font-size: 11px; color: #888; }

/* ── RELATED ─────────────────────────────────────────────────────── */
.related-section { margin-top: 18px; padding-top: 16px; border-top: 1px solid #eef0f5; }
.related-title { font-size: 14px; font-weight: 700; color: #1a2a4a; margin-bottom: 12px; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.related-card { background: #f8fbff; border-radius: 12px; padding: 10px; cursor: pointer; transition: all .2s; border: 1px solid #eef0f5; }
.related-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.related-card img { width: 100%; height: 70px; object-fit: contain; margin-bottom: 6px; }
.related-card-name { font-size: 11px; font-weight: 600; color: #1a2a4a; line-height: 1.3; }
.related-card-cat { font-size: 10px; color: #888; margin-top: 2px; }

/* ── CREDIT BANNER ───────────────────────────────────────────────── */
.credit-banner { border-radius: 24px; overflow: hidden; position: relative; min-height: 200px; display: flex; align-items: center; margin-bottom: 32px; }
.credit-bg { position: absolute; inset: 0; background: linear-gradient(135deg,#061020 0%,#0d1f42 40%,#1e40af 70%,#2850a7 100%); }
.credit-content { padding: 36px 40px; z-index: 2; position: relative; display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 32px; flex-wrap: wrap; }
@media(max-width:768px) { .credit-content { padding: 28px 24px; flex-direction: column; align-items: flex-start; gap: 20px; } }
.credit-left h2 { font-size: 36px; font-weight: 900; color: #fff; line-height: 1.05; margin-bottom: 8px; letter-spacing: -1px; }
.credit-left h2 em { font-style: normal; color: var(--gold); }
.credit-sub { font-size: 13px; color: rgba(255,255,255,.5); font-weight: 300; }
.credit-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), #e0a800);
  color: #0a1628; border: none; border-radius: 50px; padding: 13px 30px;
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 800;
  cursor: pointer; transition: all .3s; box-shadow: 0 6px 24px rgba(240,192,64,.4);
}
.credit-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(240,192,64,.55); }

/* ── FOOTER ──────────────────────────────────────────────────────── */
.footer { background: linear-gradient(135deg,#061020,#0d1f42,#1e3a8a); color: #fff; padding: 40px 0 28px; }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
@media(max-width:768px) { .footer-top { grid-template-columns: 1fr; gap: 20px; text-align: center; } }
.footer-brand img { height: 48px; background: rgba(255,255,255,.08); border-radius: 12px; padding: 6px 12px; object-fit: contain; border: 1px solid rgba(255,255,255,.12); margin-bottom: 12px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.5); font-weight: 300; line-height: 1.6; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 14px; }
.footer-col-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.65); margin-bottom: 8px; font-weight: 300; }
.footer-col-item b { color: #fff; font-weight: 600; }
.footer-btns { display: flex; flex-direction: column; gap: 8px; }
@media(max-width:768px) { .footer-btns { flex-direction: row; justify-content: center; flex-wrap: wrap; } }
.footer-wa {
  background: var(--green); color: #fff; border: none; border-radius: 50px;
  padding: 11px 22px; font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; gap: 7px; text-decoration: none;
  box-shadow: 0 4px 14px rgba(37,211,102,.32); transition: all .25s;
}
.footer-wa:hover { transform: translateY(-2px); }
.footer-call {
  background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.18);
  border-radius: 50px; padding: 11px 22px; font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 500; text-decoration: none;
  display: flex; align-items: center; gap: 7px; transition: all .25s;
}
.footer-call:hover { background: rgba(255,255,255,.18); }
.footer-divider { height: 1px; background: rgba(255,255,255,.07); margin-bottom: 20px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.25); }
.footer-badges { display: flex; gap: 8px; }
.footer-badge { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: 6px; padding: 3px 10px; font-size: 11px; color: rgba(255,255,255,.3); }

/* ── TOAST ───────────────────────────────────────────────────────── */
#xtoast {
  position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%);
  background: #2c5bbf; color: #fff; padding: 11px 24px;
  border-radius: 50px; font-size: 13px; font-weight: 600;
  z-index: 9999; transition: opacity .3s; white-space: nowrap;
  box-shadow: 0 6px 20px rgba(44,91,191,.3); opacity: 0; pointer-events: none;
}
#xtoast.show { opacity: 1; }

/* ── INTRO SPLASH ────────────────────────────────────────────────── */
body.intro-lock { overflow: hidden; }
.intro-splash {
  position: fixed; inset: 0; z-index: 9000;
  background: linear-gradient(135deg,#061020 0%,#0d1f42 50%,#1a3a6e 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; transition: opacity .52s ease, transform .52s ease;
}
.intro-splash.hide { opacity: 0; transform: scale(1.04); pointer-events: none; }
.intro-card { text-align: center; max-width: 440px; width: 100%; }
.intro-kicker {
  font-size: 11px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px; opacity: .8;
}
.intro-title {
  font-size: clamp(36px,8vw,64px); font-weight: 900; color: #fff;
  line-height: 1.05; margin-bottom: 4px;
}
.intro-title em { font-style: normal; color: var(--gold); }
.intro-sub { font-size: 14px; color: rgba(255,255,255,.5); margin-top: 14px; font-weight: 300; line-height: 1.6; }
.intro-actions { margin-top: 28px; display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.intro-btn {
  background: linear-gradient(135deg, var(--gold), #e0a800);
  color: #0a1628; border: none; border-radius: 50px; padding: 13px 28px;
  font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 800;
  cursor: pointer; box-shadow: 0 6px 24px rgba(249,205,85,.4); transition: all .3s;
}
.intro-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(249,205,85,.55); }

/* ── RESPONSIVE MOBILE ───────────────────────────────────────────── */
@media(max-width:600px) {
  .header-inner { padding: 8px 12px; gap: 8px; }
  .logo-wrap img { height: 36px; }
  .search-bar { border-radius: 40px; }
  .search-bar input { font-size: 13px; padding: 9px 14px; }
  .cart-btn { padding: 9px 12px; font-size: 12px; }
  .cart-btn span { display: none; }
  .cats-nav-inner { padding: 0 10px; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .cat-pill { padding: 10px 13px; font-size: 12px; white-space: nowrap; flex-shrink: 0; }
  .hero { height: 220px; }
  .cats-grid { grid-template-columns: repeat(3,1fr); gap: 8px; }
  .cat-img-wrap { height: 60px; }
  .cat-label { font-size: 9px; padding: 5px 4px; }
  .prods-grid { grid-template-columns: repeat(2,1fr); gap: 8px; }
  .prod-img { height: 130px; }
  .prod-img img { width: 100px; height: 100px; }
  .prod-body { padding: 8px 10px 12px; }
  .prod-name { font-size: 11px; }
  .prod-cat { font-size: 9px; }
  .modal-overlay { padding: 6px; align-items: flex-end; }
  .modal { border-radius: 20px 20px 0 0; max-height: 92vh; width: 100%; }
  .modal-body { padding: 14px 16px 24px; }
  .modal-name { font-size: 16px; }
  .modal-actions { flex-direction: column; gap: 8px; }
  .modal-wa, .modal-cart { width: 100%; justify-content: center; }
  .float-wa { bottom: 16px; right: 12px; padding: 10px 16px; font-size: 13px; }
  .cart-drawer { max-width: 100%; border-radius: 20px 20px 0 0; top: auto; height: 85vh; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-btns { flex-direction: row; justify-content: center; }
  .dept-hero { height: 130px; }
  .credit-content { padding: 18px 16px; flex-direction: column; gap: 10px; }
  .credit-left h2 { font-size: 20px; }
}

@keyframes glowIn {
  from { opacity: 0; transform: translateY(16px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
