/* =============================================================
   layout.css — MÍSTICA SIN FRONTERAS
   Violeta profundo · Lavanda · Llama dorada
   ============================================================= */

/* ── ANNOUNCEMENT BAR ───────────────────────────────────────── */
.ann-bar {
  height: var(--bar-h);
  background: #3d1f6e;
  border-bottom: 1px solid rgba(102,51,170,0.20);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.ann-track {
  display: flex; align-items: center;
  animation: annScroll 22s linear infinite;
  white-space: nowrap;
}
.ann-item {
  display: flex; align-items: center; gap: 20px;
  padding: 0 48px;
  font-size: 10.5px; font-weight: 400; letter-spacing: 1px;
  color: rgba(255,255,255,0.55);
  font-family: 'Poppins', sans-serif;
}
.ann-item em { color: rgba(245,196,48,0.85); font-style: normal; font-weight: 500; }
.ann-sep { width: 1px; height: 8px; background: rgba(102,51,170,0.20); flex-shrink: 0; }

/* ── HEADER ─────────────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 600;
  background: #3d1f6e;
  height: var(--nav-h);
  border-bottom: 1px solid rgba(102,51,170,0.25);
  transition: box-shadow var(--e);
}
.header.elevated {
  box-shadow: 0 4px 30px rgba(0,0,0,0.60), 0 1px 0 rgba(102,51,170,0.20);
}

.nav-inner {
  display: flex; align-items: center; gap: 16px;
  height: 100%; max-width: var(--max);
  margin: 0 auto; padding: 0 20px;
}

.logo { flex-shrink: 0; display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 700; color: #fff;
  letter-spacing: 2px; text-transform: uppercase;
}
.logo-name em { font-style: normal; color: inherit; }
.logo-sub {
  font-size: 7px; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(245,196,48,0.72); margin-top: 4px;
  font-family: 'Poppins', sans-serif; font-weight: 400;
}

.search-wrap { flex: 1; min-width: 0; position: relative; }
.search-box {
  display: flex; align-items: center;
  background: rgba(102,51,170,0.08);
  border: 1px solid rgba(102,51,170,0.20);
  border-radius: 4px; overflow: hidden;
  transition: background var(--e), border-color var(--e), box-shadow var(--e);
}
.search-box:focus-within {
  background: rgba(102,51,170,0.12);
  border-color: rgba(245,196,48,0.45);
  box-shadow: 0 0 0 3px rgba(245,196,48,0.08);
}
.search-in {
  flex: 1; padding: 11px 16px;
  background: transparent; border: none; outline: none;
  font-size: 13px; color: rgba(255,255,255,0.92);
  font-family: 'Poppins', sans-serif; font-weight: 300; letter-spacing: 0.2px;
}
.search-in::placeholder { color: rgba(255,255,255,0.38); }
.search-btn {
  padding: 0 18px; height: 44px;
  background: var(--mystic); border: none;
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: #fff; letter-spacing: 0.6px; text-transform: uppercase;
  flex-shrink: 0; font-family: 'Poppins', sans-serif;
  transition: background var(--e);
}
.search-btn:hover { background: var(--copper); }
.search-btn svg { width: 14px; height: 14px; }

/* ── AUTOCOMPLETE DROPDOWN ──────────────────────────────── */
.search-suggestions {
  position: absolute; top: calc(100% + 5px); left: 0; right: 0;
  background: #2a0f50;
  border: 1px solid rgba(102,51,170,0.50);
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.55), 0 2px 8px rgba(0,0,0,0.30);
  z-index: 700;
  list-style: none; margin: 0; padding: 5px 0;
  max-height: 300px; overflow-y: auto;
  display: none;
  scrollbar-width: thin; scrollbar-color: rgba(102,51,170,0.40) transparent;
}
.search-suggestions.open { display: block; }
.search-suggest-item {
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
  transition: background var(--e);
  border-left: 2px solid transparent;
}
.search-suggest-item:hover,
.search-suggest-item.focused {
  background: rgba(102,51,170,0.28);
  border-left-color: #F5C430;
}
.sug-icon { font-size: 16px; flex-shrink: 0; line-height: 1; }
.sug-icon-img { width: 28px; height: 28px; object-fit: cover; border-radius: 2px; flex-shrink: 0; }
.sug-info { flex: 1; min-width: 0; }
.sug-name {
  font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.88);
  font-family: 'Poppins', sans-serif; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.sug-name em { color: #F5C430; font-style: normal; font-weight: 600; }
.sug-sub {
  font-size: 10.5px; color: rgba(255,255,255,0.38);
  font-family: 'Poppins', sans-serif; font-weight: 300;
  margin-top: 1px; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}

.nav-actions { display: flex; align-items: center; gap: 2px; flex-shrink: 0; position: relative; }
.nav-icon {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 8px 12px; border: none; background: transparent;
  color: rgba(255,255,255,0.60); border-radius: 4px;
  position: relative; white-space: nowrap; cursor: pointer;
  text-decoration: none;
  transition: color var(--e), background var(--e);
}
.nav-icon:hover { color: var(--copper-l); background: rgba(245,196,48,0.06); }
.nav-icon svg { width: 20px; height: 20px; }
.nav-icon-lbl { font-size: 9px; font-weight: 500; letter-spacing: 0.5px; font-family: 'Poppins', sans-serif; text-transform: uppercase; }

.cart-badge {
  position: absolute; top: 5px; right: 8px;
  min-width: 17px; height: 17px; padding: 0 4px;
  background: var(--mystic); color: #fff;
  font-size: 10px; font-weight: 700; border-radius: 99px;
  display: flex; align-items: center; justify-content: center;
  transform: scale(0); transition: transform var(--e-spring);
}
.cart-badge.show { transform: scale(1); }

/* ── BARRA SOCIAL ───────────────────────────────────────────── */
.catbar {
  background: #3d1f6e;
  border-bottom: 1px solid rgba(102,51,170,0.30);
  position: sticky; top: var(--nav-h); z-index: 500;
  overflow-x: auto; scrollbar-width: none;
}
.catbar::-webkit-scrollbar { display: none; }

.catbar-inner {
  display: flex; align-items: center;
  max-width: var(--max); margin: 0 auto;
  padding: 0 20px; height: var(--cat-h);
  width: max-content; min-width: 100%; gap: 2px;
}

.catbar-social { justify-content: space-between; width: 100%; }

.csoc-group { display: flex; align-items: center; }

.csoc-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 0 18px; height: var(--cat-h);
  font-size: 12px; font-weight: 500; letter-spacing: 0.3px;
  color: rgba(255,255,255,0.58);
  background: transparent; border: none;
  border-right: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap; text-decoration: none;
  font-family: 'Poppins', sans-serif;
  transition: color var(--e), background var(--e);
}
.csoc-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.csoc-btn:hover { background: rgba(255,255,255,0.05); }
.csoc-ig:hover { color: #e1306c; }
.csoc-fb:hover { color: #7b9dd1; }
.csoc-tt:hover { color: rgba(255,255,255,0.90); }
.csoc-wa:hover { color: #25D366; }
.csoc-yt:hover { color: #FF0000; }

.csoc-about-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 0 22px; height: var(--cat-h);
  font-size: 12px; font-weight: 600; letter-spacing: 0.4px;
  color: rgba(245,196,48,0.85);
  background: transparent; border: none;
  border-left: 1px solid rgba(255,255,255,0.10);
  white-space: nowrap; cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: color var(--e), background var(--e);
}
.csoc-about-btn svg { width: 15px; height: 15px; }
.csoc-about-btn:hover { color: #F5C430; background: rgba(245,196,48,0.07); }

/* ── MODAL QUIÉNES SOMOS ────────────────────────────────────── */
.about-overlay {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(8,3,26,0.78);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.about-overlay.hidden { display: none; }

.about-card {
  position: relative; background: #2a0f50;
  border: 1px solid rgba(102,51,170,0.50); border-radius: 6px;
  padding: 48px 44px 40px; max-width: 540px; width: 100%;
  max-height: calc(100vh - 40px); overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.70); text-align: center;
  animation: aboutIn 0.28s cubic-bezier(.22,.68,0,1.2) both;
}
@keyframes aboutIn {
  from { opacity: 0; transform: scale(0.93) translateY(14px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.about-close {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  background: rgba(102,51,170,0.35); border: 1px solid rgba(102,51,170,0.60);
  border-radius: 5px; color: rgba(255,255,255,0.80); cursor: pointer;
  transition: background var(--e), color var(--e);
  flex-shrink: 0;
}
.about-close svg { width: 16px; height: 16px; }
.about-close:hover { background: rgba(102,51,170,0.65); color: #fff; border-color: rgba(102,51,170,0.90); }
.about-flame { font-size: 38px; margin-bottom: 14px; }
.about-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700; color: #fff;
  letter-spacing: 0.5px; margin-bottom: 14px;
}
.about-divider {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, transparent, #F5C430, transparent);
  margin: 0 auto 24px;
}
.about-desc {
  font-size: 13.5px; font-family: 'Poppins', sans-serif; font-weight: 300;
  color: rgba(255,255,255,0.72); line-height: 1.78;
  margin-bottom: 14px; text-align: left;
}
.about-desc strong { color: #F5C430; font-weight: 600; }
.about-desc:last-of-type { margin-bottom: 28px; }
.about-soc-row {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding-top: 20px; border-top: 1px solid rgba(102,51,170,0.25);
}
.about-soc-btn {
  width: 42px; height: 42px; border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(102,51,170,0.18); border: 1px solid rgba(102,51,170,0.30);
  color: rgba(255,255,255,0.55); text-decoration: none;
  transition: all var(--e);
}
.about-soc-btn svg { width: 18px; height: 18px; }
.about-soc-ig:hover { background: rgba(225,48,108,0.15); border-color: #e1306c; color: #e1306c; }
.about-soc-fb:hover { background: rgba(66,103,178,0.15); border-color: #7b9dd1; color: #7b9dd1; }
.about-soc-tt:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.40); color: #fff; }
.about-soc-wa:hover { background: rgba(37,211,102,0.12); border-color: #25D366; color: #25D366; }
.about-soc-yt:hover { background: rgba(255,0,0,0.12); border-color: #FF0000; color: #FF0000; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero { padding: 32px 0 24px; }
.hero-inner { display: grid; grid-template-columns: 1fr 340px; gap: 14px; align-items: stretch; }

.hero-main {
  background: linear-gradient(135deg, #f0e6ff 0%, #bb88ee 60%, #e8d6ff 100%);
  border-radius: 4px; overflow: hidden;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; padding: 52px 56px;
  position: relative; min-height: 280px;
  border: 1px solid rgba(102,51,170,0.25);
}
.hero-main::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 75% at 90% 50%, rgba(245,196,48,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 5% 90%, rgba(102,51,170,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 30% 40% at 50% 0%, rgba(102,51,170,0.08) 0%, transparent 50%);
}

.hero-text { position: relative; z-index: 1; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 4px 12px;
  background: rgba(245,196,48,0.08);
  border: 1px solid rgba(245,196,48,0.25);
  border-radius: 2px;
  font-size: 9.5px; font-weight: 600; letter-spacing: 2px;
  color: rgba(245,196,48,0.90); text-transform: uppercase;
  margin-bottom: 24px; font-family: 'Poppins', sans-serif;
}
.hero-tag .dot { width: 5px; height: 5px; background: #F5C430; border-radius: 50%; animation: glowPulse 2s ease-in-out infinite; }

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 4px rgba(245,196,48,0.6); }
  50%       { box-shadow: 0 0 12px rgba(245,196,48,1); }
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 700; color: #2d1155;
  line-height: 1.06; margin-bottom: 18px; letter-spacing: -0.5px;
}
.hero-h1 em { font-style: italic; color: #F5C430; }

.hero-p {
  font-size: 13px; font-family: 'Poppins', sans-serif; font-weight: 300;
  color: rgba(61,31,110,0.82); line-height: 1.78;
  max-width: 340px; margin-bottom: 36px; letter-spacing: 0.1px;
}

.hero-cta {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 34px; background: #6633aa; color: #fff;
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  border: none; border-radius: 2px;
  position: relative; overflow: hidden;
  font-family: 'Poppins', sans-serif;
  transition: background var(--e), transform var(--e), box-shadow var(--e);
}
.hero-cta::after {
  content: ''; position: absolute; top: -50%; left: -80%;
  width: 45%; height: 200%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-25deg); transition: left 0.55s ease;
}
.hero-cta:hover { background: #F5C430; color: #0D0520; transform: translateY(-1px); box-shadow: 0 6px 28px rgba(102,51,170,0.40); }
.hero-cta:hover::after { left: 130%; }
.hero-cta:active { transform: translateY(0); }
.hero-cta svg { width: 14px; height: 14px; }

.hero-product-visual {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; padding: 0 16px;
}
.hero-orb {
  width: 148px; height: 148px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(102,51,170,0.25) 0%, rgba(13,5,32,0) 70%);
  border: 1px solid rgba(245,196,48,0.30);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 40px rgba(102,51,170,0.20), 0 0 80px rgba(245,196,48,0.08), inset 0 1px 0 rgba(255,255,255,0.10);
  animation: orbFloat 5s ease-in-out infinite;
  color: rgba(245,196,48,0.70);
}
.hero-orb svg { width: 72px; height: 72px; }
.hero-orb-label {
  font-size: 10px; color: rgba(61,31,110,0.75); letter-spacing: 1.2px;
  text-align: center; font-family: 'Poppins', sans-serif; text-transform: uppercase;
}
.hero-orb-price {
  font-size: 16px; font-weight: 600; color: #F5C430;
  font-family: 'Poppins', sans-serif; letter-spacing: 0.5px;
}

.hero-side { display: flex; flex-direction: column; gap: 14px; }

.hero-card {
  flex: 1; border-radius: 4px; overflow: hidden;
  padding: 26px 26px; display: flex; flex-direction: column;
  justify-content: space-between; cursor: pointer;
  position: relative; min-height: 120px;
  border: 1px solid rgba(102,51,170,0.22);
  transition: transform var(--e), box-shadow var(--e), border-color var(--e);
}
.hero-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(102,51,170,0.20);
  border-color: #F5C430;
}

.hero-card-1 {
  background: linear-gradient(135deg, #f0e6ff 0%, #cc99ff 60%, #e8d6ff 100%);
  border-color: rgba(102,51,170,0.25);
}
.hero-card-2 {
  background: linear-gradient(135deg, #e8d6ff 0%, #bb88ee 60%, #f0e6ff 100%);
  border-color: rgba(102,51,170,0.25);
}
.hero-card-1::before,
.hero-card-2::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(245,196,48,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 5% 90%, rgba(102,51,170,0.12) 0%, transparent 55%);
}

.hero-card .card-tag {
  font-size: 9px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(245,196,48,0.90); margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
}
.hero-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 600; color: #2d1155; line-height: 1.28;
}
.hero-card p {
  font-size: 11.5px; color: rgba(61,31,110,0.65); margin-top: 5px;
  font-family: 'Poppins', sans-serif; font-weight: 300; line-height: 1.55;
}
.hero-card .card-link {
  margin-top: 14px; font-size: 10px; font-weight: 600;
  color: #6633aa; display: inline-flex; align-items: center; gap: 5px;
  font-family: 'Poppins', sans-serif; letter-spacing: 1px; text-transform: uppercase;
  transition: color var(--e);
}
.hero-card .card-link svg { width: 11px; height: 11px; transition: transform var(--e); }
.hero-card:hover .card-link { color: #F5C430; }
.hero-card:hover .card-link svg { transform: translateX(3px); }

.card-deco {
  position: absolute; right: 16px; bottom: 10px;
  width: 70px; height: 70px;
  color: rgba(245,196,48,0.22); pointer-events: none;
}
.card-deco svg { width: 100%; height: 100%; }

/* ── STATS STRIP ────────────────────────────────────────────── */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: #f0e6ff;
  border: 1px solid rgba(102,51,170,0.22);
  border-radius: 4px; overflow: hidden; margin: 14px 0 0;
}
.stat-item {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 20px;
  border-right: 1px solid rgba(102,51,170,0.15);
  transition: background var(--e);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(102,51,170,0.08); }
.stat-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #F5C430;
}
.stat-icon svg { width: 22px; height: 22px; }
.stat-label { font-size: 12px; font-weight: 600; color: #2d1155; font-family: 'Poppins', sans-serif; }
.stat-sub   { font-size: 10.5px; color: rgba(61,31,110,0.72); margin-top: 2px; font-family: 'Poppins', sans-serif; }

/* ── SHOP LAYOUT ────────────────────────────────────────────── */
.shop-wrap {
  display: grid; grid-template-columns: 220px 1fr;
  gap: 24px; padding: 32px 0 72px; align-items: start;
}

/* ── SIDEBAR ────────────────────────────────────────────────── */
.sidebar {
  display: flex; flex-direction: column; gap: 10px;
  position: sticky; top: calc(var(--nav-h) + var(--cat-h) + 20px);
}

.sb-box {
  background: #f0e6ff;
  border: 1px solid rgba(102,51,170,0.22);
  border-radius: 4px; overflow: hidden;
}

.sb-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 15px;
  font-size: 9.5px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase;
  color: rgba(61,31,110,0.70);
  border-bottom: 1px solid rgba(102,51,170,0.15);
  font-family: 'Poppins', sans-serif;
}
.sb-head button {
  font-size: 11px; font-weight: 500; color: #F5C430;
  background: none; border: none; letter-spacing: 0; text-transform: none;
  transition: color var(--e);
}
.sb-head button:hover { color: #2d1155; }

.sb-list { padding: 5px 0; }
.sb-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 15px; font-size: 12.5px; color: rgba(61,31,110,0.78);
  cursor: pointer; gap: 8px;
  font-family: 'Poppins', sans-serif; font-weight: 400;
  transition: background var(--e), color var(--e);
}
.sb-item:hover { background: rgba(102,51,170,0.10); color: #2d1155; }
.sb-item.active { color: #2d1155; font-weight: 600; background: rgba(245,196,48,0.07); }
.sb-item .cnt {
  font-size: 10px; color: rgba(61,31,110,0.65);
  background: rgba(102,51,170,0.12); padding: 1px 7px; border-radius: 99px;
}
.sb-item.active .cnt { background: rgba(245,196,48,0.14); color: #F5C430; }

.sb-price { padding: 12px 15px; }
.price-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.price-in {
  padding: 8px 10px;
  border: 1px solid rgba(102,51,170,0.25); border-radius: 4px;
  font-size: 12.5px; color: #2d1155;
  background: rgba(102,51,170,0.08);
  width: 100%; outline: none; font-family: 'Poppins', sans-serif;
  transition: border-color var(--e), box-shadow var(--e);
}
.price-in::placeholder { color: rgba(61,31,110,0.30); }
.price-in:focus { border-color: #F5C430; box-shadow: 0 0 0 3px rgba(245,196,48,0.10); }
.price-apply {
  width: 100%; padding: 9px;
  background: #6633aa; color: #FFFFFF;
  border: none; border-radius: 4px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  transition: background var(--e);
}
.price-apply:hover { background: #F5C430; color: #0D0520; }

.sb-rating { padding: 5px 0 8px; }
.rating-row {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 15px; cursor: pointer;
  font-size: 12.5px; color: rgba(61,31,110,0.78);
  font-family: 'Poppins', sans-serif;
  transition: background var(--e), color var(--e);
}
.rating-row:hover { background: rgba(102,51,170,0.10); color: #2d1155; }
.rating-row.active { background: rgba(245,196,48,0.07); color: #2d1155; }
.r-stars { display: flex; gap: 1px; }
.r-star  { font-size: 12px; color: #F5C430; }
.r-star.e { color: rgba(102,51,170,0.25); }

.sb-checks { padding: 6px 0 12px; }
.chk-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 15px; font-size: 12.5px;
  color: rgba(61,31,110,0.78); cursor: pointer;
  font-family: 'Poppins', sans-serif;
}
.chk-row input { width: 15px; height: 15px; accent-color: #6633aa; cursor: pointer; }

/* ── RESULTS PANEL ──────────────────────────────────────────── */
.results-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; flex-wrap: wrap; gap: 10px;
}
.results-info { font-size: 12px; color: rgba(45,17,85,0.80); font-family: 'Poppins', sans-serif; }
.results-info strong { color: #2d1155; font-weight: 600; }

.sort-wrap { display: flex; align-items: center; gap: 8px; }
.sort-lbl  { font-size: 11px; color: rgba(45,17,85,0.72); font-family: 'Poppins', sans-serif; letter-spacing: 0.3px; }
.sort-btns { display: flex; gap: 5px; flex-wrap: wrap; }
.sort-btn {
  padding: 5px 14px; font-size: 11.5px; font-weight: 400;
  border: 1px solid rgba(102,51,170,0.25); border-radius: 2px;
  background: transparent; color: rgba(45,17,85,0.80);
  font-family: 'Poppins', sans-serif;
  transition: all var(--e);
}
.sort-btn:hover  { border-color: #6633aa; color: #3d1f6e; background: rgba(102,51,170,0.08); }
.sort-btn.active { background: #6633aa; border-color: #6633aa; color: #FFFFFF; font-weight: 600; }

.mobile-filter-row { display: none; margin-bottom: 16px; gap: 8px; }
.mob-filter-btn {
  flex: 1; padding: 10px;
  background: #f0e6ff; border: 1px solid rgba(102,51,170,0.25); border-radius: 4px;
  font-size: 12px; font-weight: 500; color: rgba(61,31,110,0.60);
  display: flex; align-items: center; justify-content: center; gap: 7px;
  font-family: 'Poppins', sans-serif;
  transition: border-color var(--e), color var(--e);
}
.mob-filter-btn:hover { border-color: #6633aa; color: #3d1f6e; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: #3d1f6e;
  border-top: 1px solid rgba(245,196,48,0.15);
  color: rgba(255,255,255,0.50);
  padding: 60px 0 28px; margin-top: 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .logo-name { font-size: 19px; margin-bottom: 14px; display: block; }
.footer-brand p {
  font-size: 13px; line-height: 1.78; color: rgba(255,255,255,0.45);
  max-width: 210px; font-family: 'Poppins', sans-serif; font-weight: 300;
}

.footer-social { display: flex; gap: 8px; margin-top: 22px; }
.soc {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15); border-radius: 4px;
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.40); text-decoration: none;
  transition: all var(--e);
}
.soc svg { width: 15px; height: 15px; }
.soc:hover { border-color: var(--copper-l); color: var(--copper-l); background: rgba(245,196,48,0.07); }

.footer-col h4 {
  font-size: 9px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(245,196,48,0.70);
  margin-bottom: 18px; font-family: 'Poppins', sans-serif;
}
.footer-col ul  { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 13px; color: rgba(255,255,255,0.48);
  font-family: 'Poppins', sans-serif;
  transition: color var(--e);
}
.footer-col ul a:hover { color: var(--copper-l); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 11px; flex-wrap: wrap; gap: 8px;
  font-family: 'Poppins', sans-serif; color: rgba(255,255,255,0.35);
}
.footer-pay { display: flex; align-items: center; gap: 8px; }
.pay-chip {
  padding: 3px 9px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px; font-size: 9.5px; font-weight: 600; color: rgba(255,255,255,0.40);
}

/* ── FILTER DRAWER (móvil) ──────────────────────────────────── */
.filter-overlay {
  position: fixed; inset: 0;
  background: rgba(8,3,26,0.70);
  backdrop-filter: blur(4px);
  z-index: 800; opacity: 0; pointer-events: none;
  transition: opacity var(--e);
}
.filter-overlay.open { opacity: 1; pointer-events: auto; }

.filter-drawer {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: 300px; background: #bb88ee;
  border-right: 1px solid rgba(102,51,170,0.25);
  z-index: 900; overflow-y: auto;
  transform: translateX(-100%);
  transition: transform var(--e);
  box-shadow: 4px 0 30px rgba(0,0,0,0.50);
}
.filter-drawer.open { transform: translateX(0); }

.filter-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 16px;
  border-bottom: 1px solid rgba(102,51,170,0.20);
}
.filter-drawer-head h3 {
  font-size: 13px; font-weight: 600; color: #2d1155;
  font-family: 'Poppins', sans-serif; letter-spacing: 0.5px;
}
.filter-close {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(102,51,170,0.12); border: 1px solid rgba(102,51,170,0.25);
  border-radius: 4px; color: rgba(61,31,110,0.55); cursor: pointer;
  transition: background var(--e), color var(--e);
}
.filter-close svg { width: 14px; height: 14px; }
.filter-close:hover { background: rgba(102,51,170,0.22); color: #2d1155; }
