/* ============================================================
   styles.css — Healthy Sushi · Tema oscuro
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --brand:        #0a0808;
  --accent:       #C41E3A;
  --accent-hover: #9B1526;
  --accent-glow:  rgba(196,30,58,0.22);
  --glass-bg:     rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --text-primary: rgba(255,255,255,0.88);
  --text-muted:   rgba(255,255,255,0.40);
}

/* ── Bootstrap Dark Mode Overrides ─────────────────────────── */
[data-bs-theme="dark"] {
  --bs-body-bg:                  #0a0808;
  --bs-body-bg-rgb:              10,8,8;
  --bs-body-color:               rgba(255,255,255,0.85);
  --bs-card-bg:                  rgba(255,255,255,0.04);
  --bs-card-border-color:        rgba(255,255,255,0.08);
  --bs-border-color:             rgba(255,255,255,0.10);
  --bs-border-color-translucent: rgba(255,255,255,0.08);
  --bs-secondary-bg:             rgba(255,255,255,0.05);
  --bs-link-color:               #C41E3A;
  --bs-link-hover-color:         #9B1526;
  --bs-table-bg:                 transparent;
  --bs-table-border-color:       rgba(255,255,255,0.08);
  --bs-dropdown-bg:              #1a1717;
  --bs-dropdown-border-color:    rgba(255,255,255,0.08);
  --bs-dropdown-link-color:      rgba(255,255,255,0.72);
  --bs-dropdown-link-hover-bg:   rgba(255,255,255,0.08);
  --bs-input-bg:                 rgba(255,255,255,0.05);
  --bs-input-border-color:       rgba(255,255,255,0.12);
}

/* ── Base ──────────────────────────────────────────────────── */
body {
  background: #0a0808;
  color: var(--text-primary);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
}

/* ── Navbar Glass ───────────────────────────────────────────── */
.navbar {
  background: rgba(10,8,8,0.80) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}

.navbar-brand {
  letter-spacing: 0.3px;
}

.navbar-logo {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  margin-right: 10px;
}

.brand-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.brand-sub {
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.2;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
}

.navbar-dark .navbar-nav .nav-link.active {
  color: var(--accent);
  background: rgba(196,30,58,0.10);
}

.navbar-dark .form-control {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
  border-radius: 8px;
}

.navbar-dark .form-control::placeholder {
  color: rgba(255,255,255,0.30);
}

.navbar-dark .form-control:focus {
  background: rgba(255,255,255,0.10);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196,30,58,0.15);
  color: #fff;
}

/* Carrito + Acceso en la navbar */
.navbar-dark .btn-outline-action {
  color: rgba(255,255,255,0.70);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 8px;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: all 0.15s;
}

.navbar-dark .btn-outline-action:hover {
  color: #fff;
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.35);
}

/* Barra de búsqueda + carrito en móvil */
@media (max-width: 991.98px) {
  .navbar-right-tools { width: 100%; }
}

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--glass-bg) !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: 14px !important;
  color: var(--text-primary);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card-title { color: rgba(255,255,255,0.92); }
.card-text  { color: rgba(255,255,255,0.58); }
.card .price { color: var(--accent); font-weight: 700; }

/* ── Grid de Productos ─────────────────────────────────────── */
#promocionesGrid,
#grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

@media (min-width: 1200px) {
  #promocionesGrid, #grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #promocionesGrid, #grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}

@media (max-width: 767.98px) {
  #promocionesGrid, #grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  #promocionesGrid > *, #grid > * { min-width: 0; overflow: hidden; }
}

/* ── Product Cards ─────────────────────────────────────────── */
.product-item-card {
  width: 100%;
  overflow: hidden;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out, border-color 0.2s;
}

.product-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 3rem rgba(0,0,0,0.50) !important;
  border-color: rgba(196,30,58,0.25) !important;
}

.product-item-card > a {
  display: block;
  overflow: hidden;
  line-height: 0;
}

.product-item-card .card-img-top {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 190px;
  object-fit: cover;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .product-item-card .card-img-top { height: 160px; }
}

@media (max-width: 767.98px) {
  .product-item-card .card-img-top { height: 140px; object-fit: cover; }
  .product-item-card .card-body    { padding: 0.6rem 0.65rem; }
  .product-item-card .card-title {
    font-size: 0.88rem; line-height: 1.3; margin-bottom: 0.25rem;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
  }
  .product-item-card .card-text {
    font-size: 0.77rem; margin-bottom: 0.25rem;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
  }
  .product-item-card .price { font-size: 1rem !important; display: block; margin-bottom: 0.4rem; }
  .product-item-card .btn-gradient {
    display: block; width: 100%; min-height: 42px;
    font-size: 0.82rem; padding: 8px 6px; text-align: center;
  }
}

@media (max-width: 375px) {
  .product-item-card .card-img-top { height: 115px; }
  .product-item-card .card-title   { font-size: 0.82rem; }
  .product-item-card .btn-gradient { min-height: 40px; font-size: 0.78rem; }
}

/* ── Filtros de categoría ───────────────────────────────────── */
.badge-filter {
  cursor: pointer;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  background: rgba(255,255,255,0.06) !important;
  color: rgba(255,255,255,0.60) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  border-radius: 8px;
  transition: all 0.15s;
}

.badge-filter:hover {
  background: rgba(196,30,58,0.15) !important;
  color: #fff !important;
  border-color: rgba(196,30,58,0.30) !important;
}

.badge-filter.active-filter {
  background: var(--accent) !important;
  color: #fff !important;
  border-color: var(--accent) !important;
}

/* ── Testimonios ────────────────────────────────────────────── */
.testimonial-card {
  background: var(--glass-bg) !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 3rem rgba(0,0,0,0.40) !important;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px; left: 10px;
  font-size: 100px;
  color: var(--accent);
  opacity: 0.10;
  line-height: 1;
  z-index: 1;
}

.testimonial-card .card-body  { position: relative; z-index: 2; }
.testimonial-card .card-text  { font-size: 1.05rem; font-style: italic; color: rgba(255,255,255,0.62); }
.testimonial-card .blockquote-footer { color: var(--accent); font-weight: bold; }

/* ── Botones ────────────────────────────────────────────────── */
.btn-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, #7a0f20 100%);
  border: none;
  color: #fff;
  font-weight: 700;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gradient:hover { color: #fff !important; }

.btn-gradient::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, #9B1526 0%, var(--accent) 100%);
  transition: opacity 0.3s ease;
  z-index: -1; opacity: 0;
}

.btn-gradient:hover::before { opacity: 1; }

.btn-action {
  padding: 12px 25px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(196,30,58,0.25);
}

.btn-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(196,30,58,0.35);
}

.btn-outline-action {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.75);
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.15s;
}

.btn-outline-action:hover {
  color: #fff;
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.40);
  transform: translateY(-1px);
}

.btn-outline-action::before {
  background: linear-gradient(45deg, var(--accent) 0%, #7a0f20 100%);
}

/* ── Floating Cart ──────────────────────────────────────────── */
.floating-cart-btn {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 1050;
}

.floating-cart-btn .btn-action {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 25px; border-radius: 50px;
  box-shadow: 0 8px 24px rgba(196,30,58,0.35);
}

.floating-cart-btn .btn-action span {
  background: rgba(255,255,255,0.25);
  border-radius: 50%; padding: 4px 8px; font-size: 0.8em;
}

/* ── Hero Slider ────────────────────────────────────────────── */
.hero-slider-section { position: relative; }

.hero-slider-container { display: flex; width: 100%; justify-content: center; flex-wrap: wrap; }

.hero-slide { flex: 0 0 auto; width: 100%; }

@media (min-width: 768px) { .hero-slide { width: 50%; } }
@media (min-width: 992px) { .hero-slide { width: 33.333%; } }

.hero-slide img { width: 100%; height: auto; display: block; }

/* ── Notificación carrito ───────────────────────────────────── */
.cart-notification {
  position: fixed; bottom: 20px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 12px 20px;
  background: #C41E3A;
  color: #fff;
  border-radius: 10px;
  z-index: 9999; opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 24px rgba(196,30,58,0.40);
  font-weight: 600; font-size: 0.9rem;
}

.cart-notification.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Wave Divider ───────────────────────────────────────────── */
.wave-divider { position: absolute; top: 0; left: 0; width: 100%; overflow: hidden; line-height: 0; transform: rotate(180deg); }
.wave-divider svg { position: relative; display: block; width: calc(100% + 1.3px); height: 80px; }
.wave-divider .shape-fill { fill: var(--accent); }

/* ── CTA Section (Home hero) ────────────────────────────────── */
.cta-section {
  background-image: url('../fotos/Sushi-fondo.webp');
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  position: relative;
  color: #fff;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(10,8,8,0.75) 0%, rgba(196,30,58,0.35) 100%);
  z-index: 1;
}

.cta-section .container { position: relative; z-index: 2; }

/* ── Hero Inner Pages ───────────────────────────────────────── */
.hero { position: relative; overflow: hidden; }
.hero .hero-img {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-position: center; background-size: cover;
  filter: saturate(1.05) contrast(1.05);
}
.hero .hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(10,8,8,0.65);
  z-index: 1;
}
.hero .content { position: relative; z-index: 2; }

/* ── Utilidades ─────────────────────────────────────────────── */
.text-accent { color: var(--accent) !important; }

[data-bs-theme="dark"] .text-muted {
  color: rgba(255,255,255,0.40) !important;
}

[data-bs-theme="dark"] .border-top,
[data-bs-theme="dark"] .border-bottom,
[data-bs-theme="dark"] .border {
  border-color: rgba(255,255,255,0.08) !important;
}

/* ── Mapa ───────────────────────────────────────────────────── */
.map-responsive { overflow: hidden; padding-bottom: 56.25%; position: relative; height: 0; }
.map-responsive iframe { left: 0; top: 0; height: 100%; width: 100%; position: absolute; }

/* ── Presentation Section (Home) ────────────────────────────── */
.presentation-section {
  background: #0d0b0b;
  display: flex; align-items: center; justify-content: center;
  height: 400px;
  transition: opacity 0.6s ease-out, height 0.6s ease-out;
  overflow: hidden;
}

.presentation-section.hidden { opacity: 0; min-height: 0; height: 0; padding: 0; }
.presentation-logo { max-width: 450px; }

.fade-in-section { opacity: 0; transition: opacity 1s ease-in-out; }
.fade-in-section.show { opacity: 1; }
.fade-in-section.show.d-none { display: block !important; }

/* ── Carrito (cart.php) ─────────────────────────────────────── */
.cart-summary-card { position: sticky; top: 80px; }

.cart-item-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
  color: var(--text-primary);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.cart-item-card:hover {
  border-color: rgba(196,30,58,0.25);
  box-shadow: 0 4px 20px rgba(0,0,0,0.30);
}

.cart-item-img {
  width: 80px; height: 80px;
  object-fit: cover; border-radius: 10px; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.10);
}

.cart-item-img--placeholder {
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.28);
  font-size: 1.8rem;
}

.cart-item-name     { font-weight: 600; font-size: 0.95rem; line-height: 1.3; word-break: break-word; color: rgba(255,255,255,0.90); }
.cart-item-unit-price { font-size: 0.8rem; color: rgba(255,255,255,0.42); }
.cart-item-subtotal { font-weight: 700; font-size: 1rem; color: var(--accent); white-space: nowrap; }
.cart-qty-btn       { width: 32px; padding: 0; line-height: 1.6; }
.cart-qty-display   { min-width: 40px; text-align: center; }

@media (max-width: 499.98px) {
  .cart-item-card   { padding: 10px 12px; }
  .cart-item-img    { width: 60px; height: 60px; }
  .cart-item-name   { font-size: 0.85rem; }
  .cart-item-subtotal { font-size: 0.9rem; }
}

/* ── Forms (checkout / contacto) ────────────────────────────── */
[data-bs-theme="dark"] .form-control,
[data-bs-theme="dark"] .form-select {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.85);
  border-radius: 10px;
}

[data-bs-theme="dark"] .form-control:focus,
[data-bs-theme="dark"] .form-select:focus {
  background: rgba(255,255,255,0.08);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196,30,58,0.15);
  color: #fff;
}

[data-bs-theme="dark"] .form-control::placeholder {
  color: rgba(255,255,255,0.22);
}

[data-bs-theme="dark"] .form-label {
  color: rgba(255,255,255,0.58);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

[data-bs-theme="dark"] .input-group-text {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.42);
}

/* ── Footer ─────────────────────────────────────────────────── */
footer {
  background: #0a0808;
}

footer .text-muted,
footer a.text-muted {
  color: rgba(255,255,255,0.28) !important;
}

footer a.text-muted:hover {
  color: rgba(255,255,255,0.60) !important;
}

/* ── Scrollbar dark ─────────────────────────────────────────── */
::-webkit-scrollbar       { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ══════════════════════════════════════════════════════════════
   TIENDA — REDISEÑO SUSHI
   ══════════════════════════════════════════════════════════════ */

/* ── Sección wrapper ────────────────────────────────────────── */
.tienda-section {
  padding: 3.5rem 0;
}

/* ── Encabezado de sección ──────────────────────────────────── */
.sushi-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.sushi-section-kicker {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.55rem;
}

.sushi-section-heading {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  font-weight: 700;
  font-style: italic;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
  position: relative;
  display: inline-block;
  padding-bottom: 0.8rem;
}

.sushi-section-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 44px; height: 2px;
  border-radius: 2px;
  background: var(--accent);
}

/* ── Grid ───────────────────────────────────────────────────── */
.sushi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}

@media (min-width: 1200px) { .sushi-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 768px) and (max-width: 991.98px) {
  .sushi-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
@media (max-width: 767.98px) {
  .sushi-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ── Card ───────────────────────────────────────────────────── */
.sushi-grid .item {
  display: flex;
}

.sushi-card {
  background: #161212;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.25s,
              border-color 0.25s;
}

.sushi-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.60);
  border-color: rgba(196,30,58,0.38);
}

/* ── Imagen ─────────────────────────────────────────────────── */
.sushi-card__img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
  flex-shrink: 0;
}

.sushi-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}

.sushi-card:hover .sushi-card__img {
  transform: scale(1.09);
}

.sushi-card__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,8,0.65) 0%, transparent 55%);
  pointer-events: none;
}

.sushi-card__img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  background: rgba(255,255,255,0.03);
}

/* ── Badges sobre imagen ────────────────────────────────────── */
.sushi-card__badge {
  position: absolute;
  z-index: 2;
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  line-height: 1;
}

.sushi-card__badge--sale {
  top: 10px; right: 10px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(196,30,58,0.50);
}

.sushi-card__badge--cat {
  top: 10px; left: 10px;
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
}

/* ── Cuerpo ─────────────────────────────────────────────────── */
.sushi-card__body {
  padding: 14px 15px 15px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 5px;
}

.sushi-card__name {
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: rgba(255,255,255,0.92);
  margin: 0;
}

.sushi-card__desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.40);
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Tags (mix / cantidad) ──────────────────────────────────── */
.sushi-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 2px;
}

.sushi-card__tag {
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  line-height: 1;
}

.sushi-card__tag--mix {
  background: rgba(34,197,94,0.13);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.24);
}

.sushi-card__tag--qty {
  background: rgba(56,189,248,0.11);
  color: #7dd3fc;
  border: 1px solid rgba(56,189,248,0.20);
}

/* ── Footer: precio + botón ─────────────────────────────────── */
.sushi-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.sushi-card__price {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.sushi-card__price-now {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.sushi-card__price-was {
  font-size: 0.70rem;
  color: rgba(255,255,255,0.30);
  text-decoration: line-through;
}

.sushi-card__add {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  color: #fff;
  font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(196,30,58,0.38);
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}

.sushi-card__add:hover {
  background: var(--accent-hover);
  transform: scale(1.12);
  box-shadow: 0 6px 22px rgba(196,30,58,0.55);
}

.sushi-card__add:active { transform: scale(0.95); }

/* ── Filtros pill ───────────────────────────────────────────── */
.sushi-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.sushi-filter {
  padding: 7px 18px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.14);
  background: transparent;
  color: rgba(255,255,255,0.52);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.15s;
}

.sushi-filter:hover {
  border-color: rgba(255,255,255,0.32);
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.05);
}

.sushi-filter.active-filter {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(196,30,58,0.38);
}

/* ── Mobile ajustes ─────────────────────────────────────────── */
@media (max-width: 767.98px) {
  .sushi-card__img-wrap   { height: 148px; }
  .sushi-card__body       { padding: 10px 11px 12px; gap: 3px; }
  .sushi-card__name       { font-size: 0.85rem; }
  .sushi-card__desc       { font-size: 0.70rem; }
  .sushi-card__price-now  { font-size: 1rem; }
  .sushi-card__add        { width: 34px; height: 34px; font-size: 0.92rem; }
  .tienda-section         { padding: 2rem 0; }
  .sushi-section-heading  { font-size: 1.65rem; }
}

@media (max-width: 375px) {
  .sushi-card__img-wrap  { height: 120px; }
  .sushi-card__name      { font-size: 0.80rem; }
  .sushi-card__price-now { font-size: 0.92rem; }
  .sushi-card__add       { width: 30px; height: 30px; font-size: 0.82rem; }
}

/* ── Tipografía global: headings con Playfair ───────────────── */
h1.display-3, h1.display-4,
.sushi-section-heading,
.nosotros h2, section h2.fw-bold {
  font-family: 'Playfair Display', 'Georgia', serif;
}

/* ══ PRODUCT MODAL / BOTTOM SHEET ══════════════════════════════ */
.pmodal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1080;
  background: rgba(0,0,0,0.72);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.pmodal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.pmodal {
  background: #1a1214;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px 20px 0 0;
  width: 100%;
  max-width: 100%;
  max-height: 92dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
  position: relative;
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.34, 1.10, 0.64, 1);
  -webkit-overflow-scrolling: touch;
}

.pmodal-overlay.is-open .pmodal {
  transform: translateY(0);
}

/* Swipe handle */
.pmodal-handle {
  width: 40px;
  height: 4px;
  background: rgba(255,255,255,0.18);
  border-radius: 2px;
  margin: 12px auto 0;
}

.pmodal-close-btn {
  position: absolute;
  top: 12px;
  right: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.70);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
  transition: background 0.15s, color 0.15s;
  z-index: 2;
}

.pmodal-close-btn:hover {
  background: rgba(196,30,58,0.25);
  color: #fff;
}

.pmodal-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.pmodal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pmodal-body {
  padding: 18px 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pmodal-cat {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.pmodal-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}

.pmodal-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  margin: 0;
}

.pmodal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pmodal-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 99px;
}

.pmodal-tag--mix {
  background: rgba(34,197,94,0.12);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.22);
}

.pmodal-tag--qty {
  background: rgba(59,130,246,0.12);
  color: #93c5fd;
  border: 1px solid rgba(59,130,246,0.20);
}

.pmodal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.pmodal-qty-ctrl {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 99px;
  overflow: hidden;
  flex-shrink: 0;
}

.pmodal-qty-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.70);
  width: 36px;
  height: 36px;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}

.pmodal-qty-btn:hover:not(:disabled) {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.pmodal-qty-btn--plus:hover:not(:disabled) {
  background: rgba(196,30,58,0.20);
  color: var(--accent);
}

.pmodal-qty-btn:disabled {
  opacity: 0.30;
  cursor: not-allowed;
}

.pmodal-qty-num {
  min-width: 28px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  user-select: none;
}

.pmodal-price-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.pmodal-price-now {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--accent);
}

.pmodal-price-was {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
}

.pmodal-add-btn {
  flex-shrink: 0;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 99px;
  padding: 12px 22px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 4px 18px rgba(196,30,58,0.38);
}

.pmodal-add-btn:active {
  transform: scale(0.96);
  background: var(--accent-hover, #9B1526);
}

.pmodal-add-btn:hover {
  background: var(--accent-hover, #9B1526);
  box-shadow: 0 6px 24px rgba(196,30,58,0.50);
}

/* Desktop: centered modal, no bottom-sheet */
@media (min-width: 600px) {
  .pmodal-overlay {
    align-items: center;
  }
  .pmodal {
    border-radius: 20px;
    max-width: 480px;
    max-height: 88dvh;
    transform: translateY(24px) scale(0.97);
    opacity: 0;
    transition: transform 0.28s cubic-bezier(0.34, 1.10, 0.64, 1), opacity 0.22s ease;
  }
  .pmodal-overlay.is-open .pmodal {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  .pmodal-handle { display: none; }
  .pmodal-img-wrap { height: 260px; }
}

/* ══ FOOTER ═════════════════════════════════════════════════════ */
.site-footer {
  background: #0d0f14;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 3rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  padding: 3.5rem 0 2.5rem;
}

.site-footer__logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 1rem;
}

.site-footer__logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.12);
}

.site-footer__brand-name {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  letter-spacing: -0.01em;
}

.site-footer__tagline {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.site-footer__wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 99px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}

.site-footer__wa-btn:hover {
  background: #1da952;
  color: #fff;
  transform: translateY(-1px);
}

.site-footer__heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.site-footer__links a {
  color: rgba(255,255,255,0.50);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.15s;
}

.site-footer__links a:hover {
  color: #fff;
}

.site-footer__hours {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer__hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.825rem;
  gap: 1rem;
}

.site-footer__hours li span:first-child { color: rgba(255,255,255,0.45); }
.site-footer__hours li span:last-child  { color: rgba(255,255,255,0.80); font-weight: 600; }

.site-footer__zone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
}

.site-footer__zone i { color: var(--accent); }

/* Bottom bar */
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.1rem 0;
}

.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.80rem;
  color: rgba(255,255,255,0.30);
}

.site-footer__bottom-inner a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.15s;
}

.site-footer__bottom-inner a:hover { color: #fff; }

.site-footer__social {
  display: flex;
  gap: 14px;
}

.site-footer__social a {
  color: rgba(255,255,255,0.35);
  font-size: 1.05rem;
  text-decoration: none;
  transition: color 0.15s, transform 0.15s;
}

.site-footer__social a:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* Footer responsive */
@media (max-width: 767.98px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 0 2rem;
  }
  .site-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer__brand { grid-column: 1 / -1; }
}
