/* ============================================================
   KAIKY SHOES — Stylesheet principal
   Paleta pastel: lila #b39ddb | menta #80cbc4 | rosa #f48fb1
   amarillo #fff176 | celeste #81d4fa | fondo blanco cremoso
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&family=Fredoka+One&display=swap');

:root {
  --bg:        #fdf8ff;
  --bg2:       #f3eeff;
  --surface:   #ffffff;
  --surface2:  #f8f4ff;
  --surface3:  #ede7f6;
  --purple:    #b39ddb;
  --purple2:   #9575cd;
  --mint:      #80cbc4;
  --mint2:     #4db6ac;
  --pink:      #f48fb1;
  --pink2:     #e91e8c;
  --yellow:    #fff176;
  --yellow2:   #ffd54f;
  --blue:      #81d4fa;
  --blue2:     #29b6f6;
  --text:      #4a3f6b;
  --text2:     #6b5c8a;
  --muted:     #9e8fbf;
  --border:    rgba(179,157,219,.3);
  --border2:   rgba(179,157,219,.6);
  --success:   #66bb6a;
  --warn:      #ffa726;
  --danger:    #ef5350;
  --info:      #42a5f5;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow:    0 4px 20px rgba(149,117,205,.15);
  --shadow-lg: 0 8px 32px rgba(149,117,205,.22);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
}

h1,h2,h3,h4,h5 {
  font-family: 'Fredoka One', cursive;
  font-weight: 400;
  color: var(--text);
  letter-spacing: .3px;
}

a { color: var(--purple2); text-decoration: none; transition: color .2s; }
a:hover { color: var(--pink2); }
img { max-width: 100%; display: block; }

/* ── Fondo con burbujas decorativas ─────────────────────── */
body::before {
  content: '';
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(179,157,219,.12) 0%, transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(128,203,196,.1) 0%, transparent 35%),
    radial-gradient(circle at 80% 80%, rgba(244,143,177,.1) 0%, transparent 40%),
    radial-gradient(circle at 20% 85%, rgba(129,212,250,.1) 0%, transparent 35%);
  pointer-events: none; z-index: 0;
}
body > * { position: relative; z-index: 1; }

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── Navbar ─────────────────────────────────────────────── */
.navbar {
  background: rgba(255,255,255,.92);
  border-bottom: 2px solid var(--border);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 16px rgba(149,117,205,.1);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 20px; gap: 16px;
}
.navbar-logo img { height: 52px; width: auto; }

.navbar-nav { display: flex; align-items: center; gap: 4px; }
.navbar-nav a {
  color: var(--muted); font-size: 14px; font-weight: 700;
  padding: 7px 16px; border-radius: 50px; transition: all .2s;
  font-family: 'Nunito', sans-serif;
}
.navbar-nav a:hover { color: var(--purple2); background: var(--surface2); }
.navbar-nav a.active {
  color: var(--purple2); background: var(--bg2);
  box-shadow: 0 2px 8px rgba(149,117,205,.2);
}

.navbar-right { display: flex; align-items: center; gap: 10px; }

.cart-btn {
  position: relative; background: var(--surface2); border: 2px solid var(--border);
  border-radius: 50px; padding: 7px 18px; color: var(--text2); font-size: 13px;
  font-weight: 700; cursor: pointer; transition: all .2s;
  display: flex; align-items: center; gap: 6px;
  font-family: 'Nunito', sans-serif;
}
.cart-btn:hover { border-color: var(--purple); background: var(--bg2); color: var(--purple2); }
.cart-badge {
  position: absolute; top: -6px; right: -6px;
  background: var(--pink); color: #fff; font-size: 9px; font-weight: 800;
  border-radius: 50%; width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid white;
}

.user-menu { position: relative; }
.user-btn {
  display: flex; align-items: center; gap: 8px; cursor: pointer;
  background: var(--surface2); border: 2px solid var(--border);
  border-radius: 50px; padding: 6px 14px; transition: all .2s;
}
.user-btn:hover { border-color: var(--purple); }
.user-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: #fff;
}
.user-name { font-size: 13px; font-weight: 700; color: var(--text2); }

.dropdown {
  display: none; position: absolute; top: 110%; right: 0;
  background: var(--surface); border: 2px solid var(--border);
  border-radius: var(--radius); min-width: 190px;
  box-shadow: var(--shadow-lg); z-index: 200; overflow: hidden;
}
.dropdown.open { display: block; }
.dropdown a {
  display: block; padding: 11px 18px; font-size: 13px; font-weight: 600;
  color: var(--text2); transition: all .2s;
}
.dropdown a:hover { background: var(--surface2); color: var(--purple2); }
.dropdown hr { border: none; border-top: 1px solid var(--border); margin: 4px 0; }

/* ── Botones ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 11px 24px; border-radius: 50px; font-size: 14px; font-weight: 800;
  cursor: pointer; transition: all .25s; border: none; text-decoration: none;
  font-family: 'Nunito', sans-serif; letter-spacing: .3px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff; box-shadow: 0 4px 16px rgba(179,157,219,.4);
}
.btn-primary:hover {
  transform: translateY(-2px); color: #fff;
  box-shadow: 0 6px 22px rgba(179,157,219,.55);
}
.btn-outline {
  background: white; border: 2px solid var(--purple);
  color: var(--purple2);
}
.btn-outline:hover { background: var(--bg2); transform: translateY(-1px); }
.btn-mint {
  background: linear-gradient(135deg, var(--mint), var(--blue));
  color: #fff; box-shadow: 0 4px 14px rgba(128,203,196,.4);
}
.btn-mint:hover { transform: translateY(-2px); color: #fff; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-success { background: var(--success); color: #fff; }
.btn-sm { padding: 7px 16px; font-size: 12px; }
.btn-full { width: 100%; }

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--surface); border: 2px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px;
  box-shadow: var(--shadow);
}
.card-hover { transition: border-color .2s, transform .2s, box-shadow .2s; }
.card-hover:hover {
  border-color: var(--purple); transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ── Producto card ───────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
}
.product-card {
  background: var(--surface); border: 2px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all .25s; display: flex; flex-direction: column;
  box-shadow: var(--shadow);
}
.product-card:hover {
  border-color: var(--purple); transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.product-card .img-wrap {
  height: 170px; background: var(--surface2);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.product-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.product-card .img-wrap .icon-placeholder { font-size: 60px; }
.product-card .card-body { padding: 14px 14px 6px; flex: 1; display: flex; flex-direction: column; }
.product-card .cat-tag {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .6px; color: var(--purple2); margin-bottom: 5px;
}
.product-card .product-name {
  font-size: 15px; font-weight: 700; color: var(--text);
  margin-bottom: 4px; line-height: 1.3; font-family: 'Nunito', sans-serif;
}
.product-card .product-price {
  font-family: 'Fredoka One', cursive; font-size: 20px;
  color: var(--purple2); margin-top: auto; padding-top: 8px;
}
.product-card .price-old {
  font-size: 12px; color: var(--muted); text-decoration: line-through;
  margin-right: 6px; font-family: 'Nunito', sans-serif; font-weight: 600;
}
.product-card .stock-badge { font-size: 11px; color: var(--muted); margin-top: 2px; font-weight: 600; }
.product-card .stock-low { color: var(--warn); }
.product-card .stock-out { color: var(--danger); }
.product-card .card-actions { padding: 10px 14px 14px; }

.badge-featured {
  position: absolute; top: 10px; left: 10px;
  background: linear-gradient(135deg, var(--yellow2), var(--warn));
  color: var(--text); font-size: 10px; font-weight: 800;
  padding: 4px 10px; border-radius: 50px; text-transform: uppercase;
  letter-spacing: .5px; box-shadow: 0 2px 8px rgba(255,167,38,.4);
}

/* ── Talle badge (específico para calzado) ──────────────── */
.talle-badge {
  display: inline-block; background: var(--surface2); border: 2px solid var(--border);
  border-radius: 8px; padding: 2px 8px; font-size: 11px; font-weight: 800;
  color: var(--purple2); margin-right: 4px; margin-top: 4px;
}

/* ── Formularios ────────────────────────────────────────────*/
.form-group { margin-bottom: 16px; }
.form-label {
  display: block; font-size: 13px; font-weight: 700;
  color: var(--text2); margin-bottom: 6px;
}
.form-control {
  width: 100%; background: var(--surface2); border: 2px solid var(--border);
  border-radius: var(--radius); padding: 10px 14px; color: var(--text);
  font-size: 14px; font-family: 'Nunito', sans-serif; font-weight: 500;
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-control:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(179,157,219,.2); }
.form-control::placeholder { color: var(--muted); }
select.form-control option { background: white; }
textarea.form-control { resize: vertical; min-height: 90px; }

/* ── Alerts ─────────────────────────────────────────────── */
.alert {
  padding: 12px 16px; border-radius: var(--radius); font-size: 13px; font-weight: 600;
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.alert-success { background: rgba(102,187,106,.12); border: 2px solid rgba(102,187,106,.35); color: #388e3c; }
.alert-error    { background: rgba(239,83,80,.1);   border: 2px solid rgba(239,83,80,.3);   color: var(--danger); }
.alert-info     { background: rgba(179,157,219,.15); border: 2px solid rgba(179,157,219,.4); color: var(--purple2); }
.alert-warn     { background: rgba(255,167,38,.12);  border: 2px solid rgba(255,167,38,.35); color: var(--warn); }

/* ── Tabla admin ─────────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius); }
.table { width: 100%; border-collapse: collapse; font-size: 13px; }
.table th {
  text-align: left; padding: 11px 14px;
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px;
  color: var(--muted); border-bottom: 2px solid var(--border); white-space: nowrap;
  background: var(--surface2);
}
.table td { padding: 12px 14px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.table tr:hover td { background: rgba(179,157,219,.06); }

/* ── Status badges ───────────────────────────────────────── */
.status {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 12px; border-radius: 50px;
  font-size: 11px; font-weight: 800; white-space: nowrap;
}
.status::before { content: '●'; font-size: 7px; }
.status-success { background: rgba(102,187,106,.15); color: #388e3c; border: 2px solid rgba(102,187,106,.3); }
.status-info    { background: rgba(179,157,219,.15); color: var(--purple2); border: 2px solid rgba(179,157,219,.3); }
.status-primary { background: rgba(128,203,196,.15); color: var(--mint2); border: 2px solid rgba(128,203,196,.3); }
.status-warn    { background: rgba(255,167,38,.15);  color: var(--warn); border: 2px solid rgba(255,167,38,.3); }
.status-danger  { background: rgba(239,83,80,.12);   color: var(--danger); border: 2px solid rgba(239,83,80,.3); }

/* ── Section title ───────────────────────────────────────── */
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.section-title { font-family: 'Fredoka One', cursive; font-size: 26px; color: var(--text); }
.section-title span { color: var(--purple2); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #f3eeff 0%, #e8f8f7 50%, #fce4ec 100%);
  padding: 60px 20px; border-bottom: 2px solid var(--border); position: relative; overflow: hidden;
}
.hero::before {
  content: '⭐'; position: absolute; top: 20px; right: 80px;
  font-size: 60px; opacity: .15; transform: rotate(15deg);
}
.hero::after {
  content: '🌟'; position: absolute; bottom: 30px; left: 60px;
  font-size: 48px; opacity: .12; transform: rotate(-10deg);
}
.hero-title {
  font-family: 'Fredoka One', cursive; font-size: 42px; color: var(--text);
  line-height: 1.15; margin-bottom: 14px;
}
.hero-title span { color: var(--purple2); }
.hero-sub { font-size: 16px; color: var(--text2); margin-bottom: 28px; max-width: 480px; font-weight: 600; }

/* ── Stats cards ─────────────────────────────────────────── */
.stats-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: 14px; }
.stat-card {
  background: var(--surface); border: 2px solid var(--border);
  border-radius: var(--radius-lg); padding: 18px; text-align: center;
  box-shadow: var(--shadow);
}
.stat-val { font-family: 'Fredoka One', cursive; font-size: 28px; color: var(--purple2); }
.stat-lbl { font-size: 12px; color: var(--muted); margin-top: 2px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }

/* ── Sidebar filtros ─────────────────────────────────────── */
.shop-layout { display: grid; grid-template-columns: 230px 1fr; gap: 26px; align-items: start; }
.sidebar { position: sticky; top: 80px; }
.sidebar-section { margin-bottom: 22px; }
.sidebar-title { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; color: var(--muted); margin-bottom: 10px; }
.filter-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: var(--radius); cursor: pointer;
  font-size: 14px; font-weight: 600; color: var(--text2); transition: all .2s; text-decoration: none;
}
.filter-item:hover, .filter-item.active {
  background: var(--surface2); color: var(--purple2); border-left: 3px solid var(--purple);
  padding-left: 10px;
}

/* ── Carrito ─────────────────────────────────────────────── */
.cart-layout { display: grid; grid-template-columns: 1fr 320px; gap: 24px; align-items: start; }
.cart-item-row {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface); border: 2px solid var(--border);
  border-radius: var(--radius-lg); padding: 14px; margin-bottom: 12px;
  box-shadow: var(--shadow);
}
.cart-item-img {
  width: 64px; height: 64px; background: var(--surface2);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  font-size: 30px; flex-shrink: 0; border: 2px solid var(--border);
}
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 700; color: var(--text); }
.cart-item-price { font-size: 12px; color: var(--muted); margin-top: 2px; font-weight: 600; }
.qty-control { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 30px; height: 30px; background: var(--surface2); border: 2px solid var(--border);
  border-radius: 50%; color: var(--purple2); cursor: pointer; font-size: 16px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; transition: all .2s;
}
.qty-btn:hover { border-color: var(--purple); background: var(--bg2); }
.qty-num { font-size: 15px; font-weight: 800; min-width: 22px; text-align: center; color: var(--text); }
.cart-subtotal { font-family: 'Fredoka One', cursive; font-size: 17px; color: var(--purple2); min-width: 80px; text-align: right; }

.order-summary {
  background: var(--surface); border: 2px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px; position: sticky; top: 80px;
  box-shadow: var(--shadow-lg);
}
.summary-row { display: flex; justify-content: space-between; font-size: 13px; font-weight: 600; color: var(--muted); padding: 7px 0; }
.summary-total { display: flex; justify-content: space-between; font-family: 'Fredoka One', cursive; font-size: 20px; color: var(--purple2); border-top: 2px solid var(--border); padding-top: 14px; margin-top: 8px; }

/* ── Tracking progress ───────────────────────────────────── */
.tracking-bar { display: flex; align-items: center; gap: 0; margin: 16px 0; }
.tracking-step { flex: 1; text-align: center; position: relative; }
.tracking-step::before {
  content: ''; position: absolute; top: 11px; left: 50%;
  width: 100%; height: 3px; background: var(--surface3); z-index: 0; border-radius: 2px;
}
.tracking-step:last-child::before { display: none; }
.tracking-step .dot {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--surface3); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; position: relative; z-index: 1; margin: 0 auto 6px;
}
.tracking-step.done .dot { background: var(--purple); border-color: var(--purple); color: #fff; }
.tracking-step.done::before { background: var(--purple); }
.tracking-step .step-lbl { font-size: 10px; color: var(--muted); font-weight: 700; }
.tracking-step.done .step-lbl { color: var(--purple2); }

/* ── Paginación ─────────────────────────────────────────── */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 30px; }
.page-btn {
  padding: 8px 14px; background: var(--surface); border: 2px solid var(--border);
  border-radius: 50px; font-size: 13px; font-weight: 700; color: var(--muted); cursor: pointer; transition: all .2s;
}
.page-btn:hover, .page-btn.active { border-color: var(--purple); color: var(--purple2); background: var(--bg2); }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: linear-gradient(135deg, #ede7f6, #e0f2f1);
  border-top: 2px solid var(--border); padding: 36px 20px; margin-top: 60px; text-align: center;
}
.footer-logo img { height: 44px; margin: 0 auto 12px; }
.footer p { font-size: 13px; color: var(--text2); font-weight: 600; }

/* ── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; opacity: .5; }

/* ── Utilidades ─────────────────────────────────────────── */
.text-center { text-align: center; }
.text-muted  { color: var(--muted); }
.text-purple { color: var(--purple2); }
.text-mint   { color: var(--mint2); }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.d-flex { display: flex; } .gap-2 { gap: 8px; } .align-center { align-items: center; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .shop-layout { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}
@media (max-width: 600px) {
  .navbar-nav { display: none; }
  .hero-title { font-size: 28px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2,1fr); }
}

/* ============================================================
   PRECIOS MAYORISTA / MINORISTA
   ============================================================ */
:root {
  --blue-min: #1565c0;   /* azul minorista */
  --red-may:  #c62828;   /* rojo mayorista  */
}

/* Bloque de precios en card */
.price-block {
  margin-top: 10px;
  display: flex; flex-direction: column; gap: 4px;
}
.price-row {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.price-label {
  font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .6px; padding: 2px 8px; border-radius: 20px;
}
.price-label-min {
  background: rgba(21,101,192,.12); color: var(--blue-min);
  border: 1.5px solid rgba(21,101,192,.3);
}
.price-label-may {
  background: rgba(198,40,40,.1); color: var(--red-may);
  border: 1.5px solid rgba(198,40,40,.25);
}
.price-value {
  font-family: 'Fredoka One', cursive; font-size: 18px;
}
.price-value-min { color: var(--blue-min); }
.price-value-may { color: var(--red-may); }

.mayorista-hint {
  font-size: 10px; font-weight: 700; color: var(--red-may);
  background: rgba(198,40,40,.07); border-radius: 8px;
  padding: 4px 8px; margin-top: 4px; text-align: center;
  border: 1px dashed rgba(198,40,40,.3);
}

/* Banner en carrito */
.mayorista-banner {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-radius: var(--radius); margin-bottom: 18px;
  font-size: 13px; font-weight: 700;
}
.mayorista-banner-active {
  background: linear-gradient(135deg, rgba(198,40,40,.1), rgba(198,40,40,.05));
  border: 2px solid rgba(198,40,40,.35); color: var(--red-may);
}
.mayorista-banner-hint {
  background: linear-gradient(135deg, rgba(179,157,219,.15), rgba(128,203,196,.1));
  border: 2px solid var(--border); color: var(--text2);
  flex-wrap: wrap; gap: 10px;
}

/* Badge tipo de precio en resumen */
.precio-tipo-badge {
  text-align: center; padding: 10px 14px; border-radius: var(--radius);
  font-size: 13px; font-weight: 700; margin-bottom: 4px;
}
.precio-tipo-may {
  background: rgba(198,40,40,.1); border: 2px solid rgba(198,40,40,.3);
  color: var(--red-may);
}
.precio-tipo-min {
  background: rgba(21,101,192,.08); border: 2px solid rgba(21,101,192,.2);
  color: var(--blue-min);
}

/* Precios en filas del carrito */
.cart-precio-min {
  font-size: 12px; font-weight: 800; color: var(--blue-min);
}
.cart-precio-may {
  font-size: 12px; font-weight: 800; color: var(--red-may);
}
.cart-precio-min-tachado {
  font-size: 11px; color: var(--muted); text-decoration: line-through;
  margin-left: 6px; font-weight: 600;
}
.cart-precio-may-hint {
  font-size: 11px; color: var(--muted); margin-left: 6px; font-weight: 600;
}

/* ── Precios ocultos para no logueados ────────────────────── */
.precio-login-blur {
  position: relative; margin-top: 10px; display: inline-block; width: 100%;
}
.precio-blur-fake {
  font-family: 'Fredoka One', cursive; font-size: 22px;
  color: transparent; user-select: none;
  text-shadow: 0 0 10px rgba(149,117,205,.5);
  filter: blur(6px); letter-spacing: 2px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  padding: 4px 0;
}
.precio-blur-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.precio-blur-btn {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: white; font-size: 11px; font-weight: 800;
  padding: 5px 14px; border-radius: 50px; text-decoration: none;
  box-shadow: 0 2px 10px rgba(179,157,219,.4);
  transition: all .2s; white-space: nowrap;
}
.precio-blur-btn:hover {
  transform: translateY(-1px); color: white;
  box-shadow: 0 4px 14px rgba(179,157,219,.55);
}

/* Banner en tienda para no logueados */
.login-banner-tienda {
  background: linear-gradient(135deg, #f3eeff, #fce4ec);
  border: 2px solid var(--border2); border-radius: var(--radius-lg);
  padding: 16px 22px; margin-bottom: 22px;
  display: flex; align-items: center; gap: 14px;
}
.login-banner-tienda p {
  font-size: 14px; font-weight: 700; color: var(--text2); margin: 0;
}
.login-banner-tienda span { font-size: 11px; color: var(--muted); font-weight: 600; }
