﻿/* =============================================================
   BLISSFUL - TITO BURGER DARK THEME (custom-dark.css)
   Sistema de diseño:
   - Fondo: pared de ladrillos oscura / negro mate (#000000 / #000000)
   - Acentos dorados/naranja: #e0a96d / #b87e38 (precios, píldoras, CTAs)
   - Rojo neón / handwritten: #e63946 / #ff2a2a (días, acentos cursivos)
   ============================================================= */

:root {
  --tt-bg: #000000;
  --tt-bg-2: #000000;
  --tt-card: #050505;
  --tt-card-2: #1a0004;
  --tt-gold: #e0a96d;
  --tt-gold-2: #b87e38;
  --tt-red: #e63946;
  --tt-red-2: #ff2a2a;
  --tt-text: #ffffff;
  --tt-muted: rgba(255,255,255,0.62);
  --tt-border: rgba(184,126,56,0.35);
  --tt-hand: 'Caveat', cursive;
  --tt-display: 'Bebas Neue', 'Outfit', sans-serif;

  --primary-color: var(--tt-gold);
  --secondary-color: var(--tt-gold-2);
  --accent-color: var(--tt-red);

  --tblr-body-bg: var(--tt-bg);
  --tblr-body-color: var(--tt-text);
  --tblr-muted-color: var(--tt-muted);
  --tblr-border-color: var(--tt-border);
  --tblr-card-bg: var(--tt-card);
  --tblr-card-color: var(--tt-text);
  --tblr-card-border-color: var(--tt-border);
  --tblr-primary: var(--tt-gold);
  --tblr-primary-rgb: 255, 222, 100;
  --tblr-primary-fg: #000000;
  --tblr-danger: var(--tt-red);
  --tblr-danger-rgb: 230, 57, 70;
  --tblr-navbar-bg: var(--tt-bg-2);
}

/* ================= BASE / BRICK WALL ================= */
html { scroll-behavior: smooth; }

body {
  background-color: var(--tt-bg) !important;
  background-image:
    radial-gradient(1100px 460px at 85% -5%, rgba(255, 159, 28, 0.07), transparent 60%),
    radial-gradient(900px 420px at 5% 108%, rgba(230, 57, 70, 0.05), transparent 60%),
    linear-gradient(rgba(255, 183, 3, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 183, 3, 0.10) 1px, transparent 1px);
  background-size: auto, auto, 46px 30px, 46px 30px;
  background-position: 0 0, 0 0, 0 0, 23px 15px;
  background-attachment: fixed;
  color: var(--tt-text) !important;
}

.page,
.page-wrapper { background: transparent !important; }

::selection { background: rgba(255, 183, 3, 0.35); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--tt-bg-2); }
::-webkit-scrollbar-thumb { background: rgba(255, 183, 3, 0.35); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255, 159, 28, 0.6); }

.text-truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ================= TYPOGRAPHY ================= */
.tt-hand {
  font-family: var(--tt-hand);
  color: var(--tt-red);
  text-shadow: 0 0 16px rgba(230, 57, 70, 0.55);
  transform: rotate(-2deg);
  display: inline-block;
}

.tt-neon { color: var(--tt-red-2); }

.tt-display {
  font-family: var(--tt-display);
  letter-spacing: 0.03em;
}

.text-gold { color: var(--tt-gold) !important; }

.tt-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 0.95;
  color: #ffffff;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.55);
}

.tt-section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #ffffff;
  margin: 0;
}

.tt-hand-big { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.tt-hand-md { font-size: 1.7rem; }
.tt-hand-sm { font-size: 1.25rem; }

.tt-sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 0;
}

/* ================= NAVBAR ================= */
.tt-navbar,
.navbar-dark {
  background: rgba(10, 10, 10, 0.92) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 183, 3, 0.18) !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45) !important;
}

.tt-navbar .nav-link,
.navbar-dark .nav-link {
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: 0.2s;
  border-radius: 2rem;
  padding: 0.5rem 1rem !important;
}

.tt-navbar .nav-link:hover,
.tt-navbar .nav-link:focus {
  color: var(--tt-gold) !important;
  background: rgba(255, 183, 3, 0.08);
}

.tt-navbar .navbar-toggler-icon { filter: invert(1) grayscale(1); }
.tt-navbar .navbar-toggler:focus { box-shadow: 0 0 0 2px rgba(255, 183, 3, 0.35); }

.tt-navbar .navbar-brand { color: #ffffff !important; }
.tt-navbar .bi-cart3 { color: #ffffff; transition: 0.2s; }
.tt-navbar .nav-item a:hover .bi-cart3 { color: var(--tt-gold); }
#header-total { color: var(--tt-gold) !important; }
#global-cart-badge { box-shadow: 0 0 0 2px var(--tt-bg-2); }

#btn-change-sede:hover,
#btn-change-sede:focus { color: var(--tt-gold) !important; }

/* ================= HERO (TITO STYLE) ================= */
.tt-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--tt-bg-2);
}

.tt-hero .carousel { position: absolute; inset: 0; }
.tt-hero .carousel-item,
.tt-hero .hero-slide-item { height: 100%; }

.tt-hero .hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.38) saturate(0.9);
  display: block;
}

.tt-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.55) 50%, rgba(10, 10, 10, 0.35) 100%),
    linear-gradient(0deg, var(--tt-bg-2) 0%, transparent 30%);
}

.hero-slide-fallback {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(700px 340px at 75% 20%, rgba(255, 183, 3, 0.2), transparent 65%),
    radial-gradient(520px 300px at 15% 85%, rgba(230, 57, 70, 0.16), transparent 60%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    var(--tt-bg-2);
  background-size: auto, auto, 46px 30px, 46px 30px;
  background-position: 0 0, 0 0, 0 0, 23px 15px;
}

.tt-hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 4.5rem 0;
  pointer-events: none;
}

.tt-hero-content a,
.tt-hero-content .btn { pointer-events: auto; }

.tt-hero .carousel-control-prev,
.tt-hero .carousel-control-next {
  z-index: 10;
  width: 5%;
  opacity: 0.85;
}
.tt-hero .carousel-control-prev-icon,
.tt-hero .carousel-control-next-icon {
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
}

.tt-hero-badge {
  position: absolute;
  font-family: var(--tt-hand);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.55rem 1.15rem;
  border-radius: 2rem;
  white-space: nowrap;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.tt-badge-red {
  background: linear-gradient(135deg, #1a0004, #1a0004);
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  transform: rotate(-10deg);
}

.tt-badge-gold {
  background: linear-gradient(135deg, #e0a96d, #b87e38);
  color: #000000;
  transform: rotate(6deg);
}

.tt-float-img {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  width: min(330px, 30vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid rgba(255, 183, 3, 0.4);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.65),
    0 0 70px rgba(255, 159, 28, 0.28);
  animation: ttFloat 5.5s ease-in-out infinite;
  z-index: 3;
  pointer-events: none;
}

@keyframes ttFloat {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(-44%); }
}

.tt-float-link {
  display: block;
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  width: min(330px, 30vw);
  aspect-ratio: 1 / 1;
  z-index: 4;
  pointer-events: auto;
  cursor: pointer;
}
.tt-float-link .tt-float-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  right: auto;
  top: auto;
  transform: none;
  pointer-events: none;
  animation: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tt-float-link:hover .tt-float-img {
  transform: scale(1.05);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.65),
    0 0 95px rgba(255, 159, 28, 0.45);
}
.tt-float-badge {
  position: absolute;
  left: 50%;
  bottom: 9%;
  transform: translateX(-50%);
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  max-width: calc(100% - 2rem);
  background: linear-gradient(135deg, #e0a96d, #b87e38);
  color: #000000;
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.5),
    0 0 0 4px rgba(255, 183, 3, 0.3),
    0 0 40px rgba(255, 159, 28, 0.65);
  pointer-events: none;
  white-space: nowrap;
  animation: ttBadgePulse 2.4s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.tt-float-link:hover .tt-float-badge {
  animation: none;
  transform: translateX(-50%) scale(1.09);
}
@keyframes ttBadgePulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.06); }
}

/* ================= CINTA SUPERIOR ABIERTO/CERRADO (horario admin) ================= */
.tt-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.7rem;
  padding: 0.6rem 1rem;
  text-align: center;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(135deg, #1a0004, #1a0004);
  border-bottom: 3px solid var(--tt-gold);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}
.tt-ribbon i { color: var(--tt-gold); font-size: 1.05rem; }
.tt-ribbon .tt-ribbon-sep { opacity: 0.55; }
.tt-ribbon .tt-ribbon-time { color: #e0a96d; }
@media (max-width: 575.98px) {
  .tt-ribbon { font-size: 0.85rem; padding: 0.5rem 0.75rem; }
}
.tt-swal-closed-title { color: #e0a96d !important; }

/* ================= GOLD BUTTONS ================= */
.style-yellow-btn,
.btn-primary,
.btn-warning {
  --tblr-btn-bg: var(--tt-gold);
  --tblr-btn-border-color: var(--tt-gold);
  --tblr-btn-color: #000000;
  --tblr-btn-hover-bg: #e0a96d;
  --tblr-btn-hover-border-color: #e0a96d;
  --tblr-btn-hover-color: #000000;
  --tblr-btn-active-bg: #b87e38;
  background: linear-gradient(135deg, #e0a96d, #b87e38) !important;
  border: none !important;
  color: #000000 !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em;
  border-radius: 2rem !important;
  box-shadow: 0 10px 26px rgba(255, 159, 28, 0.35) !important;
  transition: 0.2s;
}

.style-yellow-btn:hover,
.btn-primary:hover,
.btn-warning:hover,
.style-yellow-btn:focus,
.btn-primary:focus,
.btn-warning:focus {
  background: linear-gradient(135deg, #e0a96d, #b87e38) !important;
  color: #000000 !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(255, 159, 28, 0.45) !important;
}

.tt-btn-ghost {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
  font-weight: 700;
  border-radius: 2rem !important;
  transition: 0.2s;
}
.tt-btn-ghost:hover {
  border-color: var(--tt-gold) !important;
  color: var(--tt-gold) !important;
  background: rgba(255, 183, 3, 0.08) !important;
}

.btn-success {
  --tblr-btn-bg: var(--tt-gold);
  --tblr-btn-border-color: var(--tt-gold);
  --tblr-btn-color: #000000;
  background: var(--tt-gold) !important;
  border-color: var(--tt-gold) !important;
  color: #000000 !important;
}
.btn-success:hover {
  background: var(--tt-gold-2) !important;
  border-color: var(--tt-gold-2) !important;
  color: #000000 !important;
}

.btn-link { color: var(--tt-gold); }
.btn-link:hover { color: #e0a96d; }
.link-danger { color: var(--tt-red) !important; }

/* ================= CATEGORY PILLS ================= */
.btn-category-ajax {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #ffffff;
  padding: 0.55rem 1.3rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  transition: 0.2s;
}
.btn-category-ajax .cat-ic {
  font-size: 0.9rem;
  color: var(--tt-gold);
  margin-right: 0.35rem;
}
.btn-category-ajax:hover {
  color: #ffffff;
  border-color: rgba(255, 183, 3, 0.55);
  background: rgba(255, 183, 3, 0.07);
  transform: translateY(-1px);
}
.btn-category-ajax.active {
  background: linear-gradient(135deg, #e0a96d, #b87e38) !important;
  border-color: transparent !important;
  color: #000000 !important;
  box-shadow: 0 8px 20px rgba(255, 159, 28, 0.35);
}

/* ================= PRODUCT CARDS (TITO STYLE) ================= */
.tt-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #1a0004, #0a0a0a);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  padding: 14px 14px 16px;
  height: 100%;
  transition: 0.25s;
}
.tt-product-card:hover {
  border-color: rgba(255, 183, 3, 0.55);
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.55);
}

.pc-img-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.55);
  background: #0a0a0a;
}
.pc-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.tt-product-card:hover .pc-img { transform: scale(1.05); }

.pc-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-family: var(--tt-hand);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.35rem 0.8rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, #1a0004, #1a0004);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
  transform: rotate(-6deg);
}

.pc-body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding-top: 0.4rem;
}

.pc-name {
  font-family: var(--tt-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: #ffffff;
  margin: 0 0 0.4rem;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pc-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pc-sede-note {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--tt-gold);
  background: rgba(255, 183, 3, 0.08);
  border: 1px solid rgba(255, 183, 3, 0.25);
  border-radius: 6px;
  padding: 0.15rem 0.45rem;
  margin-bottom: 0.5rem;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
}

.tt-sede-aviso {
  background: linear-gradient(135deg, rgba(184, 126, 56, 0.12), rgba(224, 169, 109, 0.06));
  border: 1px dashed rgba(224, 169, 109, 0.45);
  border-radius: 16px;
  color: #f5e9d8;
}

.tt-sede-aviso-icon {
  font-size: 2.6rem;
  color: var(--tt-gold);
  line-height: 1;
}

.tt-sede-aviso p { max-width: 480px; margin-left: auto; margin-right: auto; }

.pc-price-pill {
  background: linear-gradient(135deg, #e0a96d, #b87e38);
  color: #000000;
  font-weight: 900;
  font-size: 0.95rem;
  padding: 0.3rem 0.95rem;
  border-radius: 2rem;
  box-shadow: 0 8px 18px rgba(255, 159, 28, 0.3);
  white-space: nowrap;
}

.pc-price-bs { color: var(--tt-muted); font-size: 0.72rem; font-weight: 600; width: 100%; }

.pc-price-dine { color: var(--tt-muted); font-size: 0.72rem; font-weight: 600; background: rgba(255,255,255,0.05); padding: 0.25rem 0.6rem; border-radius: 1rem; border: 1px dashed rgba(224,169,109,0.35); }

.pc-price-old { color: var(--tt-muted); font-size: 0.72rem; font-weight: 700; text-decoration: line-through; text-decoration-thickness: 2px; text-decoration-color: var(--tt-red); background: rgba(255,255,255,0.05); padding: 0.25rem 0.6rem; border-radius: 1rem; }

.pc-footer {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-top: 0.7rem;
}

.pc-add-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #e0a96d, #b87e38);
  color: #000000;
  font-size: 1.35rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(255, 159, 28, 0.4);
  transition: 0.2s;
}
.pc-add-btn:hover {
  transform: scale(1.1) rotate(90deg);
  background: linear-gradient(135deg, #e0a96d, #b87e38);
  color: #000000;
  box-shadow: 0 12px 26px rgba(255, 159, 28, 0.5);
}
.pc-add-btn .bi { line-height: 1; }

/* ================= MENU WEEKLY CAROUSEL (SCROLL-SNAP) ================= */
.tt-scroll-row {
  display: flex;
  gap: 2.6rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 2.4rem 0.6rem 1.6rem;
  -webkit-overflow-scrolling: touch;
}
.tt-scroll-row::-webkit-scrollbar { display: none; }
.tt-scroll-row { -ms-overflow-style: none; scrollbar-width: none; }
.tt-scroll-item {
  scroll-snap-align: start;
  flex: 0 0 260px;
  min-width: 260px;
}

/* ================= SECTION HEADERS ================= */
.tt-section-head { margin-bottom: 1rem; }
.tt-divider {
  height: 2px;
  border: none;
  background: linear-gradient(90deg, transparent, rgba(255, 183, 3, 0.55), transparent);
  margin: 1.6rem 0;
}

/* ================= SEARCH ================= */
.search-box { position: relative; }
.search-box-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 183, 3, 0.7);
  font-size: 1rem;
  pointer-events: none;
  z-index: 2;
}
.search-box-input {
  padding-left: 42px !important;
  border-radius: 30px !important;
  min-height: 46px;
  min-width: 280px;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
}
.search-box-input::placeholder { color: rgba(255, 255, 255, 0.45) !important; }
.search-box-input:focus {
  border-color: var(--tt-gold) !important;
  background: rgba(255, 255, 255, 0.07) !important;
  box-shadow: 0 0 0 3px rgba(255, 183, 3, 0.14) !important;
}
@media (max-width: 575.98px) {
  .search-box-input { min-width: 0; width: 100%; }
}

/* ================= HOURS & BRANCHES ================= */
.tt-panel {
  background: linear-gradient(180deg, #0a0a0a, #0a0a0a);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  padding: 1.6rem;
  height: 100%;
}
.tt-panel-title {
  font-family: var(--tt-display);
  font-size: 1.4rem;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.tt-hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.6rem 0.25rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}
.tt-hours-row:last-child { border-bottom: none; }
.tt-day {
  font-family: var(--tt-hand);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--tt-red);
  text-shadow: 0 0 12px rgba(230, 57, 70, 0.4);
}
.tt-hours { font-weight: 800; color: #ffffff; letter-spacing: 0.03em; }
.tt-hours-row.tt-weekend .tt-day { color: var(--tt-gold); text-shadow: 0 0 12px rgba(255, 183, 3, 0.4); }
.tt-hours-row.tt-weekend .tt-hours { color: var(--tt-gold); }

.tt-map-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: #000000;
  border: 1px solid rgba(255, 183, 3, 0.2);
  min-height: 220px;
  transition: 0.25s;
}
.tt-map-card:hover {
  border-color: rgba(255, 183, 3, 0.55);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
  transform: translateY(-3px);
}
.tt-map-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(340px 180px at 70% 20%, rgba(255, 183, 3, 0.14), transparent 70%);
  background-size: 34px 34px, 34px 34px, auto;
  background-position: 0 0, 17px 17px, 0 0;
}
.tt-map-road {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  transform: rotate(-28deg);
  border-radius: 4px;
}
.tt-map-pin {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -50%) rotate(-45deg);
  background: linear-gradient(135deg, #e0a96d, #b87e38);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px rgba(255, 183, 3, 0.18), 0 14px 30px rgba(0, 0, 0, 0.5);
  animation: ttPin 2.4s ease-in-out infinite;
}
.tt-map-pin .bi { color: #000000; font-size: 1.15rem; transform: rotate(45deg); }
@keyframes ttPin {
  0%, 100% { top: 38%; }
  50% { top: 35%; }
}
.tt-map-info {
  position: relative;
  margin-top: auto;
  padding: 1rem 1.1rem;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 0.55) 65%, transparent);
}

/* ================= FLIP CARDS SEDES (3D) ================= */
.tt-flip-card-link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.tt-flip-card {
  perspective: 1200px;
  height: 100%;
}
.tt-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 220px;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.tt-flip-card:hover .tt-flip-inner,
.tt-flip-inner.flipped { transform: rotateY(180deg); }
.tt-flip-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.tt-flip-face.tt-map-card { min-height: 0; }
.tt-flip-back {
  transform: rotateY(180deg);
  background: #000000;
  border: 1px solid rgba(255, 183, 3, 0.2);
  border-radius: 20px;
  overflow: hidden;
}
.tt-flip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tt-flip-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.65rem 1rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.45));
  color: #e0a96d;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-align: center;
  font-size: 0.85rem;
}
.tt-flip-hint { color: var(--tt-gold); opacity: 0.85; }

/* ================= RESERVATIONS STRIP ================= */
.tt-reserve {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(120deg, #e0a96d, #b87e38 60%, #e0a96d);
  color: #ff2a2a;
}
.tt-reserve::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(480px 260px at 90% -20%, rgba(255, 255, 255, 0.35), transparent 70%),
    radial-gradient(380px 240px at -5% 110%, rgba(120, 40, 0, 0.25), transparent 70%);
}
.tt-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.tt-collage img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  border: 3px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 18px 40px rgba(60, 20, 0, 0.35);
}
.tt-col-1 { transform: rotate(-4deg); }
.tt-col-2 { transform: rotate(3deg); }
.tt-col-3 { transform: rotate(2deg); }
.tt-col-4 { transform: rotate(-3deg); }

.tt-reserve-hand {
  font-family: var(--tt-hand);
  color: #ff2a2a;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.35);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  transform: rotate(-3deg);
}
.tt-reserve-title {
  font-family: var(--tt-display);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  color: #ff2a2a;
  letter-spacing: 0.04em;
  line-height: 1;
}
.tt-btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1a0004;
  color: #e0a96d !important;
  font-weight: 800;
  letter-spacing: 0.06em;
  border-radius: 2rem;
  padding: 0.85rem 1.8rem;
  box-shadow: 0 14px 30px rgba(36, 19, 3, 0.35);
  transition: 0.2s;
  text-decoration: none;
}
.tt-btn-dark:hover {
  transform: translateY(-2px);
  background: #000000;
  color: #e0a96d !important;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
}

/* ================= FEATURES ================= */
.tt-feature-card {
  background: linear-gradient(180deg, #0a0a0a, #000000);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 24px;
  padding: 2.2rem 1.6rem;
  text-align: center;
  height: 100%;
  transition: 0.25s;
}
.tt-feature-card:hover {
  border-color: rgba(255, 183, 3, 0.55);
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
}
.tt-feature-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  margin: 0 auto 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--tt-gold);
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.16), rgba(255, 159, 28, 0.05));
  border: 1px solid rgba(255, 183, 3, 0.4);
  box-shadow: 0 10px 24px rgba(255, 159, 28, 0.15);
}
.tt-feature-title {
  font-family: var(--tt-display);
  font-size: 1.35rem;
  color: #ffffff;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}
.tt-feature-text { color: var(--tt-muted); font-size: 0.92rem; margin: 0; }

/* ================= OFFcanvas CART ================= */
.offcanvas {
  background: #0a0a0a !important;
  color: var(--tt-text);
}
.offcanvas .card { background: transparent !important; border: none; box-shadow: none !important; }
.offcanvas .table,
.offcanvas .card-table,
.cart-side-card .table {
  --tblr-table-bg: transparent;
  --tblr-table-color: #ffffff;
  --tblr-table-border-color: rgba(255, 255, 255, 0.08);
}
.offcanvas .table-vcenter td { color: #ffffff; }
.offcanvas .table-vcenter .fw-bold { color: #ffffff; }

.offcanvas-header.bg-primary,
.cart-side-card > .card-header.bg-primary,
.modal-header.bg-primary {
  background: linear-gradient(135deg, #e0a96d, #b87e38) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15) !important;
  color: #000000 !important;
}
.offcanvas-header .offcanvas-title,
.cart-side-card > .card-header h3,
.cart-side-card > .card-header .bi,
.modal-header.bg-primary .modal-title,
.modal-header.bg-primary .bi {
  color: #000000 !important;
}
.offcanvas-header .btn-close,
.modal-header.bg-primary .btn-close {
  filter: invert(0.05);
  opacity: 0.8;
}

.cart-totals { background: rgba(255, 255, 255, 0.04); border-top: 1px solid rgba(255, 255, 255, 0.08) !important; }
.cart-side-card > .card-header .btn-close { filter: invert(0.05); }

/* ================= MODALS ================= */
.modal-content {
  background: #0a0a0a;
  border: 1px solid rgba(255, 183, 3, 0.18);
  color: var(--tt-text);
  border-radius: 20px;
}
.modal-header { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.modal-footer { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.modal-title { color: #ffffff; }

.sede-card {
  background: #0a0a0a !important;
  color: var(--tt-text);
  border-color: rgba(255, 255, 255, 0.1) !important;
}
.sede-option { cursor: pointer; }
.sede-option:hover .sede-card { border-color: rgba(255, 183, 3, 0.5) !important; }
.sede-check { color: rgba(255, 183, 3, 0.4); }
.sede-option.selected .sede-card {
  border-color: var(--tt-gold) !important;
  background: rgba(255, 183, 3, 0.08) !important;
  box-shadow: 0 8px 22px rgba(255, 159, 28, 0.18) !important;
}
.sede-option.selected .sede-check { color: var(--tt-gold); }

/* Refuerzo oscuro del modal de selección de sede (evita fondo blanco) */
#modal-sede .modal-content,
#modal-checkout .modal-content,
#modal-extras .modal-content {
  background: #000000 !important;
  color: var(--tt-text) !important;
}
/* Ingredientes gratis: más visibles (verde oscuro, letras blancas, más grande) */
#modal-extras .tt-ing-head { font-size: 1.2rem; color: #ffffff; }
#modal-extras .tt-free-badge {
  background: #0b5c2e !important;
  color: #ffffff !important;
  font-size: 1.05rem !important;
  padding: 0.35em 0.9em;
  letter-spacing: 0.02em;
}
#modal-extras .tt-house-ing {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
}
#modal-extras .tt-house-ing i { color: #16a34a; }
#modal-extras .tt-gratis-tag {
  color: #ffffff !important;
  background: #0b5c2e;
  border-radius: 0.5rem;
  padding: 0.2em 0.7em;
  font-weight: 800;
  font-size: 1.05rem;
}
#modal-extras .ing-opt .form-check-label { font-size: 1.05rem; color: #ffffff; }
#modal-extras .ing-opt .ing-price { font-size: 1.05rem; }
#modal-sede .modal-body,
#modal-checkout .modal-body,
#modal-extras .modal-body { background: #000000; }
#sede-list .sede-card {
  background: #0a0a0a !important;
  color: var(--tt-text) !important;
  border-color: rgba(255, 183, 3, 0.25) !important;
}
#sede-list .sede-card .small,
#sede-list .sede-card .text-muted { color: var(--tt-muted) !important; }
#sede-list .sede-card:hover { border-color: var(--tt-gold) !important; }

/* ================= MODAL SEDE ACCESIBLE (GRANDE Y VISIBLE) ================= */
#modal-sede.tt-sede-modal { --bs-modal-width: 680px; }
#modal-sede.tt-sede-modal .modal-header { padding: 1.75rem 2rem; }
#modal-sede.tt-sede-modal .modal-title { font-size: 2rem !important; color: #000000; }
#modal-sede.tt-sede-modal .modal-body { padding: 1.75rem 2rem !important; }
#modal-sede.tt-sede-modal .form-hint { font-size: 1.35rem; color: var(--tt-gold); }
#modal-sede.tt-sede-modal .sede-card {
  border-radius: 1.1rem !important;
  padding: 1.4rem 1.6rem !important;
  border-color: rgba(255, 183, 3, 0.35) !important;
}
#modal-sede.tt-sede-modal .sede-card .h4 { font-size: 1.65rem !important; }
#modal-sede.tt-sede-modal .sede-card .fs-6 { font-size: 1.1rem !important; }
#modal-sede.tt-sede-modal .sede-check i { font-size: 2.6rem; }
#modal-sede.tt-sede-modal .sede-option.selected .sede-card {
  border-color: var(--tt-gold) !important;
  background: rgba(255, 183, 3, 0.14) !important;
  box-shadow: 0 10px 28px rgba(255, 159, 28, 0.28) !important;
}

/* ================= FORMS ================= */
.form-control, .form-select {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  color-scheme: dark;
}
.form-select option,
.form-select optgroup {
  background-color: #0a0a0a !important;
  color: #ffffff !important;
}
.form-select option:checked {
  background-color: var(--tt-gold) !important;
  color: #000000 !important;
}
.form-control:focus, .form-select:focus {
  border-color: var(--tt-gold);
  box-shadow: 0 0 0 3px rgba(255, 183, 3, 0.15);
  background-color: rgba(255, 255, 255, 0.07);
  color: #ffffff;
}
.form-control::placeholder { color: rgba(255, 255, 255, 0.4) !important; }
.form-control:disabled, .form-select:disabled { background-color: rgba(255, 255, 255, 0.03); color: rgba(255, 255, 255, 0.35); }
.form-label { color: #ffffff; }
.form-check-label { color: var(--tt-text); }
.form-check-input { background-color: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.25); }
.form-check-input:checked { background-color: var(--tt-gold); border-color: var(--tt-gold); }
.form-hint { color: var(--tt-muted); }

/* ================= ALERTS ================= */
.alert-warning {
  background: rgba(255, 183, 3, 0.1);
  color: #e0a96d;
  border-color: rgba(255, 183, 3, 0.3);
}
.alert-success {
  background: rgba(255, 183, 3, 0.08);
  color: #e0a96d;
  border-color: rgba(255, 183, 3, 0.3);
}

/* ================= BUTTONS (resto) ================= */
.btn-light {
  --tblr-btn-bg: #1a0004;
  --tblr-btn-border-color: rgba(255, 255, 255, 0.12);
  --tblr-btn-color: #ffffff;
  --tblr-btn-hover-bg: #1a0004;
  --tblr-btn-hover-border-color: rgba(255, 183, 3, 0.4);
  --tblr-btn-hover-color: #ffffff;
  background-color: #1a0004 !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
}
.btn-light:hover { background-color: #1a0004 !important; color: #ffffff !important; }
.btn-outline-secondary {
  --tblr-btn-color: #ffffff;
  --tblr-btn-border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}
.btn-outline-secondary:hover {
  color: #000000 !important;
  background-color: var(--tt-gold) !important;
  border-color: var(--tt-gold) !important;
}
.btn-ghost-danger { color: var(--tt-red) !important; }
.btn-ghost-danger:hover { background: rgba(230, 57, 70, 0.12); }

/* ================= STICKY BOTTOM BAR ================= */
.sticky-bottom-bar {
  background: rgba(10, 10, 10, 0.95) !important;
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 183, 3, 0.25) !important;
}
.sticky-bottom-bar .text-white-50 { color: var(--tt-muted) !important; }
.sticky-bottom-bar .btn-warning { box-shadow: 0 10px 26px rgba(255, 159, 28, 0.4) !important; }

/* ================= FOOTER ================= */
.tt-footer {
  background: #000000;
  border-top: 1px solid rgba(255, 183, 3, 0.22);
  margin-top: 4rem;
  position: relative;
}
.tt-footer h4, .tt-footer .h4 { color: var(--tt-gold); font-weight: 800; }
.tt-footer a { color: #ffffff; text-decoration: none; transition: 0.2s; }
.tt-footer a:hover { color: var(--tt-gold); }
.tt-footer .social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 183, 3, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tt-gold);
  font-size: 1.15rem;
  transition: 0.2s;
}
.tt-footer .social-icon:hover {
  background: rgba(255, 183, 3, 0.12);
  border-color: var(--tt-gold);
  transform: translateY(-3px);
  color: var(--tt-gold);
}
.tt-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--tt-muted);
}
.tt-footer-bottom .tt-footer-sep {
  color: rgba(255, 255, 255, 0.25);
}
.tt-footer-bottom > div:last-child {
  color: rgba(255, 255, 255, 0.55);
}

/* ================= ALERTA CARRITO (SWEETALERT2 ACCESIBLE) ================= */
.swal2-popup.tt-swal-popup {
  border: 2px solid rgba(255, 183, 3, 0.75);
  border-radius: 28px !important;
  box-shadow:
    0 0 0 10px rgba(230, 57, 70, 0.12),
    0 30px 90px rgba(0, 0, 0, 0.85) !important;
  padding: 2.2rem 2rem 1.6rem !important;
}
.swal2-popup.tt-swal-popup .swal2-title {
  font-family: var(--tt-display);
  font-size: clamp(1.9rem, 5vw, 2.6rem) !important;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--tt-gold) !important;
  text-shadow: 0 0 24px rgba(255, 183, 3, 0.45);
}
.swal2-popup.tt-swal-popup .swal2-icon.swal2-success {
  border-color: var(--tt-gold) !important;
  color: var(--tt-gold) !important;
}
.swal2-popup.tt-swal-popup .swal2-success-ring { border-color: var(--tt-gold) !important; }
.swal2-popup.tt-swal-popup .swal2-success [class^="swal2-success-line"] { background-color: var(--tt-gold) !important; }
.swal2-popup.tt-swal-popup .swal2-html-container {
  margin-top: 0.9rem !important;
}
.tt-swal-msg {
  font-size: clamp(1.45rem, 4.5vw, 2.1rem) !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  line-height: 1.35;
  word-break: break-word;
}
.tt-swal-confirm {
  font-size: 1.35rem !important;
  font-weight: 900 !important;
  padding: 0.65rem 3rem !important;
  border-radius: 3rem !important;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #e0a96d, #b87e38) !important;
  box-shadow: 0 12px 32px rgba(255, 159, 28, 0.45) !important;
}
.swal2-popup.tt-swal-popup .swal2-timer-progress-bar { background: var(--tt-red) !important; }
.swal2-popup.tt-swal-popup .swal2-close { color: var(--tt-gold) !important; font-size: 2rem; }

/* ================= UTILITIES OVERRIDES ================= */
.bg-light { background-color: rgba(255, 255, 255, 0.05) !important; }
.bg-primary { background-color: var(--tt-gold) !important; }
.bg-white { background-color: #0a0a0a !important; color: var(--tt-text); }
.text-primary { color: var(--tt-gold) !important; }
.text-success { color: var(--tt-gold) !important; }
.text-secondary { color: var(--tt-muted) !important; }
.text-muted, .text-muted a { color: var(--tt-muted) !important; }
.text-white-50 { color: rgba(255, 255, 255, 0.55) !important; }
.border-primary { border-color: var(--tt-gold) !important; }
.border-secondary, hr.border-secondary { border-color: rgba(255, 183, 3, 0.25) !important; }
hr { border-color: rgba(255, 255, 255, 0.1); }

.card { background-color: #0a0a0a; color: var(--tt-text); border-color: rgba(255, 255, 255, 0.08); }
.card-title { color: #ffffff; }

.list-group-item {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.08);
}

.page-title, h1, h2, h3, h4, h5, h6 { color: #ffffff; }
.chart-lg text, .apexcharts-canvas text { fill: var(--tt-muted); }

/* ================= RESPONSIVE ================= */
@media (max-width: 991.98px) {
  .tt-hero { min-height: 520px; }
  .tt-float-img { width: 240px; right: 4%; }
  .tt-float-link { width: 240px; right: 4%; }
  .tt-float-badge { font-size: 1rem; padding: 0.6rem 1.5rem; }
}

@media (max-width: 767.98px) {
  .tt-hero { min-height: 500px; }
  .tt-float-img { display: none; }
  .tt-float-link { display: none; }
  .tt-hero-content { padding: 3rem 0; }
  .tt-title { font-size: clamp(2.6rem, 14vw, 4rem); }
  .tt-badge-gold { display: none; }
  .tt-scroll-item { flex: 0 0 230px; min-width: 230px; }
}

@media (max-width: 575.98px) {
  .tt-hero { min-height: 460px; }
  .tt-hero-badge { font-size: 1.1rem; padding: 0.45rem 0.95rem; }
  .tt-panel { padding: 1.2rem; }
  .tt-reserve { border-radius: 22px; }
  .brand-logo { max-width: 42vw; }
  #btn-nav-pedir { padding: 0.45rem 0.75rem !important; font-size: 0.85rem; }
  #btn-nav-pedir i { font-size: 0.95rem; }
}
}