:root {
  --bg: #050505;
  --bg-soft: #111111;
  --bg-card: #171717;

  --yellow: #f4b400;
  --yellow-strong: #ffcc1d;
  --yellow-dark: #d99a00;
  --orange-food: #ff8a00;

  --text: #ffffff;
  --muted: #a7a7ad;

  --border: rgba(244, 180, 0, 0.22);
  --border-soft: rgba(255, 255, 255, 0.08);

  --shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --green: #07b947;
  --danger: #ff4343;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top, rgba(244, 180, 0, 0.08), transparent 24%),
    linear-gradient(180deg, #040404, #0a0a0b);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea {
  font-family: inherit;
}

button {
  border: none;
  cursor: pointer;
}

.section {
  padding: 78px 8%;
}

.section-dark {
  background: #050505;
}

.section-title {
  text-align: center;
  font-size: 3.5rem;
  line-height: 1.05;
  margin-bottom: 14px;
  font-weight: 800;
}

.section-title span {
  color: var(--yellow-strong);
}

.section-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 38px;
  font-size: 1.02rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(4, 4, 4, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(244, 180, 0, 0.16);
  padding: 14px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
}

.brand-title {
  font-size: 1.7rem;
  line-height: 1;
  color: var(--yellow-strong);
  font-weight: 800;
}

.brand-subtitle {
  color: #d7d7db;
  margin-top: 4px;
  font-size: 0.88rem;
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  color: #efefef;
  font-weight: 600;
  font-size: 0.98rem;
  transition: 0.3s;
}

.nav a:hover {
  color: var(--yellow-strong);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.call-btn {
  min-height: 50px;
  padding: 0 18px;
  background: transparent;
  color: var(--yellow-strong);
  font-weight: 700;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  transition: 0.3s;
}

.call-btn:hover {
  border-color: var(--yellow-strong);
  background: rgba(244, 180, 0, 0.08);
  transform: translateY(-2px);
}

.cart-btn {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: var(--bg-soft);
  color: var(--yellow-strong);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 1.02rem;
  position: relative;
  transition: 0.3s;
}

.cart-btn:hover {
  border-color: var(--yellow-strong);
  transform: translateY(-2px);
}

.cart-btn.bump {
  animation: cartBump 0.45s ease;
}

@keyframes cartBump {
  0% { transform: scale(1); }
  30% { transform: scale(1.08); }
  60% { transform: scale(0.96); }
  100% { transform: scale(1); }
}

/* HERO */
.hero {
  min-height: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 8% 52px;
  background:
    linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.86)),
    url("img/hero.jpg") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 204, 29, 0.10), transparent 42%),
    linear-gradient(to top, rgba(255, 138, 0, 0.06), transparent);
}

.hero-content {
  max-width: 980px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--yellow-strong);
  background: rgba(244, 180, 0, 0.08);
  margin-bottom: 22px;
  font-size: 0.95rem;
  font-weight: 700;
}

.hero h2 {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 18px;
  font-weight: 800;
  text-shadow: 0 8px 22px rgba(0,0,0,0.55);
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.hero h2 span {
  color: var(--yellow-strong);
}

.hero p {
  font-size: 1.08rem;
  color: #f0f0f0;
  max-width: 720px;
  margin: 0 auto 26px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.btn {
  border-radius: 16px;
  padding: 15px 24px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--yellow-strong), var(--yellow));
  color: #111;
  box-shadow: 0 10px 24px rgba(244, 180, 0, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffd84d, #f4b400);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: white;
}

.btn-secondary:hover {
  border-color: var(--yellow-strong);
  color: var(--yellow-strong);
  background: rgba(244, 180, 0, 0.08);
}

.btn-map {
  background: linear-gradient(135deg, var(--orange-food), var(--yellow));
  color: #111;
  box-shadow: 0 10px 24px rgba(255, 138, 0, 0.18);
}

.btn-map:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ff9d26, #ffcf33);
}

.btn-uber {
  background: #1c1c1c;
  color: #ffffff;
  border: 1px solid rgba(244, 180, 0, 0.24);
}

.btn-uber:hover {
  background: #232323;
  transform: translateY(-2px);
  border-color: var(--yellow-strong);
}

.full-width {
  width: 100%;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.highlight-card {
  background: linear-gradient(180deg, #101012, #181818);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.highlight-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(244, 180, 0, 0.12);
  color: var(--yellow-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.22rem;
  flex-shrink: 0;
}

.highlight-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
}

.highlight-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* PROMOS */
.promos-section {
  background:
    radial-gradient(circle at top, rgba(244, 180, 0, 0.06), transparent 35%),
    #050505;
}

.promos-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.promo-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 204, 29, 0.18);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.40);
  transition: 0.3s;
}

.promo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 204, 29, 0.34);
}

.promo-card-gold {
  background:
    radial-gradient(circle at top right, rgba(255, 204, 29, 0.12), transparent 35%),
    linear-gradient(145deg, #131315, #1c1b18);
}

.promo-card-fire {
  background:
    radial-gradient(circle at top right, rgba(255, 138, 0, 0.16), transparent 35%),
    linear-gradient(145deg, #141212, #1c1410);
}

.promo-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 0;
}

.promo-day,
.promo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.promo-day {
  background: rgba(255, 204, 29, 0.14);
  color: var(--yellow-strong);
}

.promo-chip {
  background: rgba(255, 255, 255, 0.06);
  color: #f3f3f3;
}

.promo-content {
  padding: 18px 18px 22px;
}

.promo-content h3 {
  font-size: 1.7rem;
  line-height: 1.12;
  margin: 14px 0;
  color: #fff;
}

.promo-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--yellow-strong);
  margin-bottom: 10px;
}

.promo-note {
  color: var(--muted);
  margin-bottom: 18px;
}

.promo-btn {
  width: 100%;
  justify-content: center;
}

/* SEARCH */
.search-box {
  max-width: 720px;
  margin: 0 auto 34px;
  background: #111214;
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  height: 58px;
}

.search-box i {
  color: #9096a1;
  font-size: 1rem;
}

.search-box input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-size: 0.98rem;
}

.search-box input::placeholder {
  color: #7f8693;
}

/* CATEGORIES */
.categories-header h3 {
  font-size: 1.8rem;
  margin-bottom: 18px;
}

.categories-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.categories-carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 6px 4px;
  flex: 1;
  scrollbar-width: none;
}

.categories-carousel::-webkit-scrollbar {
  display: none;
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #111214;
  color: white;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  flex-shrink: 0;
}

.carousel-arrow:hover {
  border-color: var(--yellow-strong);
  color: var(--yellow-strong);
}

.category-card {
  min-width: 180px;
  max-width: 180px;
  min-height: 124px;
  background: linear-gradient(180deg, #101012, #191919);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px 14px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  text-align: center;
  transition: 0.3s;
  flex-shrink: 0;
}

.category-card:hover,
.category-card.active {
  border-color: rgba(255, 204, 29, 0.42);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(244, 180, 0, 0.10);
}

.category-card.active {
  background: linear-gradient(180deg, rgba(244,180,0,0.18), rgba(255,138,0,0.10));
  color: var(--yellow-strong);
}

.category-card.active .category-icon,
.category-card.active .category-count {
  color: var(--yellow-strong);
}

.category-icon {
  color: var(--yellow-strong);
  font-size: 1.35rem;
}

.category-name {
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-wrap: balance;
}

.category-count {
  color: #9ea5b0;
  font-size: 0.9rem;
  font-weight: 600;
}

/* PRODUCTS */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  gap: 16px;
}

.product-card {
  background: linear-gradient(180deg, #111214, #1a1b1f);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: 0.35s;
  box-shadow: var(--shadow);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 204, 29, 0.34);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.50);
}

.product-image-wrap {
  position: relative;
  background: #1a1b1f;
}

.product-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.38), transparent 55%);
  pointer-events: none;
}

.product-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.product-badge {
  display: none;
}

.product-featured {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, var(--yellow), var(--orange-food));
  color: #111;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 7px 10px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(244, 180, 0, 0.24);
  z-index: 2;
}

.product-info {
  padding: 12px;
}

.product-name {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 6px;
  min-height: auto;
  line-height: 1.25;
}

.product-description {
  display: none;
}

.product-price {
  color: var(--yellow-strong);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.add-btn,
.quick-buy-btn {
  width: 100%;
  padding: 9px 8px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: 0.3s;
}

.add-btn {
  background: linear-gradient(135deg, var(--yellow-strong), var(--yellow));
  color: #111;
}

.add-btn:hover {
  background: linear-gradient(135deg, #ffd84d, #f4b400);
}

.quick-buy-btn {
  background: rgba(244, 180, 0, 0.08);
  color: var(--yellow-strong);
  border: 1px solid var(--border);
}

.quick-buy-btn:hover {
  border-color: var(--yellow-strong);
  background: rgba(244, 180, 0, 0.16);
  color: #111;
}

.empty-cart {
  text-align: center;
  color: var(--muted);
  padding: 50px 0;
}

/* HORARIO */
.schedule-card {
  max-width: 940px;
  margin: 0 auto;
  background: linear-gradient(180deg, #111214, #1a1b1f);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(244, 180, 0, 0.08);
  font-size: 1.04rem;
  transition: 0.25s;
}

.schedule-row:last-child {
  border-bottom: none;
}

.schedule-row.closed strong {
  color: #ff4e4e;
}

.schedule-row strong {
  color: #e6e6e8;
}

.schedule-day-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.today-badge {
  display: none;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--yellow);
  color: #111;
}

.schedule-row.today {
  background: rgba(244, 180, 0, 0.12);
  box-shadow: inset 4px 0 0 var(--yellow);
}

.schedule-row.today strong,
.schedule-row.today span {
  color: var(--yellow-strong);
}

.schedule-row.today .today-badge {
  display: inline-flex;
}

/* REDES */
.social-section {
  background:
    radial-gradient(circle at top, rgba(244, 180, 0, 0.06), transparent 35%),
    #050505;
}

.social-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.social-card {
  background: linear-gradient(180deg, #111214, #1a1b1f);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: 0.3s;
  box-shadow: var(--shadow);
}

.social-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 204, 29, 0.34);
}

.social-card-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: rgba(244, 180, 0, 0.10);
  color: var(--yellow-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  flex-shrink: 0;
}

.social-card h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
  color: #fff;
}

.social-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.social-card.instagram:hover .social-card-icon,
.social-card.facebook:hover .social-card-icon,
.social-card.tiktok:hover .social-card-icon {
  background: linear-gradient(135deg, rgba(255, 204, 29, 0.16), rgba(255, 138, 0, 0.18));
}

/* CONTACTO */
.contact-grid-single {
  display: flex;
  justify-content: center;
}

.contact-card {
  background: linear-gradient(180deg, #111214, #1a1b1f);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 20px;
  width: 100%;
  max-width: 420px;
}

.contact-card-combined {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-left h3 {
  font-size: 1.45rem;
  margin-bottom: 18px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(244, 180, 0, 0.10);
  color: var(--yellow-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item small {
  display: block;
  color: #96a0ad;
  margin-bottom: 2px;
}

.contact-item p {
  font-size: 1.04rem;
  font-weight: 700;
}

.contact-bottom-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.contact-square-btn {
  min-height: 58px;
  border-radius: 18px;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 12px 16px;
}

.contact-square-btn i {
  font-size: 1rem;
}

.uber-btn-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--yellow);
  color: #111;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

/* FOOTER */
.footer {
  background: #030303;
  padding: 46px 8% 18px;
  border-top: 1px solid rgba(244, 180, 0, 0.08);
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer-logo {
  width: 78px;
  height: 78px;
}

.footer-brand {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-brand h3,
.footer h4 {
  color: var(--yellow-strong);
}

.footer-links,
.footer-contact,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-social-links {
  margin-top: 0;
}

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(244, 180, 0, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #9aa2ad;
  font-size: 0.92rem;
}

.footer-bottom a {
  color: var(--yellow-strong);
}

/* FLOATING */
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  z-index: 1200;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32);
  transition: 0.3s;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
}

/* TOAST */
.add-toast {
  position: fixed;
  left: 50%;
  bottom: 88px;
  transform: translateX(-50%) translateY(20px);
  background: #111214;
  color: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 14px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  box-shadow: var(--shadow);
}

.add-toast i {
  color: var(--yellow-strong);
}

.add-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* CART */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 390px;
  max-width: 100%;
  height: 100vh;
  background: #080809;
  border-left: 1px solid var(--border-soft);
  z-index: 2000;
  transition: right 0.35s ease;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.open {
  right: 0;
}

.cart-header {
  padding: 20px 22px;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h2 {
  font-size: 1.8rem;
  font-weight: 800;
}

.close-btn {
  background: transparent;
  color: white;
  font-size: 1.4rem;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: center;
  background: #121214;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 10px;
  margin-bottom: 12px;
}

.cart-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
}

.cart-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.cart-item p {
  color: var(--yellow-strong);
  font-weight: bold;
  font-size: 1.06rem;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.quantity-controls button {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #000;
  color: white;
  border: 1px solid var(--border-soft);
}

.remove-btn {
  background: transparent;
  color: var(--danger);
  font-size: 1.05rem;
}

.cart-summary {
  border-top: 1px solid var(--border-soft);
  padding: 22px;
}

.cart-summary p {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.cart-summary h3 {
  margin: 14px 0 12px;
  font-size: 1.75rem;
  color: var(--yellow-strong);
}

/* OVERLAY */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.58);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1500;
}

.overlay.show {
  opacity: 1;
  visibility: visible;
}

/* CHECKOUT */
.checkout-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  z-index: 2500;
  transition: 0.3s;
  overflow-y: auto;
}

.checkout-modal.show {
  opacity: 1;
  visibility: visible;
}

.checkout-content {
  width: 100%;
  max-width: 560px;
  background: #080809;
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  margin: auto;
}

.checkout-content label {
  display: block;
  margin: 14px 0 8px;
  font-size: 1.02rem;
}

.checkout-content input,
.checkout-content textarea {
  width: 100%;
  background: #161719;
  color: white;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 14px;
  font-size: 0.98rem;
  outline: none;
}

.payment-options {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.payment-option {
  display: block;
}

.payment-option input[type="radio"] {
  display: none;
}

.payment-option-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  background: linear-gradient(180deg, #111214, #17181b);
  transition: 0.3s;
}

.payment-option:hover .payment-option-content {
  border-color: rgba(244, 180, 0, 0.24);
}

.payment-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.payment-badge {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(244, 180, 0, 0.10);
  color: var(--yellow-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.14rem;
  flex-shrink: 0;
}

.payment-check {
  color: #5e5e5e;
  font-size: 1.16rem;
  transition: 0.3s;
}

.payment-help {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 3px;
}

.payment-option input[type="radio"]:checked + .payment-option-content {
  border-color: var(--yellow);
  background: linear-gradient(180deg, #141416, #1a1b1f);
  box-shadow: 0 12px 24px rgba(244, 180, 0, 0.06);
}

.payment-option input[type="radio"]:checked + .payment-option-content .payment-check {
  color: var(--yellow-strong);
}

.checkout-total {
  margin-top: 20px;
  font-size: 1.65rem;
  color: var(--yellow-strong);
  font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .promos-grid {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1200px) {
  .hero h2 {
    font-size: 3.5rem;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }

  .section-title {
    font-size: 2.9rem;
  }

  .hero {
    padding: 60px 8% 46px;
  }

  .hero h2 {
    font-size: 3rem;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 14px 5%;
  }

  .hero,
  .section,
  .footer {
    padding-left: 5%;
    padding-right: 5%;
  }

  .carousel-arrow {
    display: none;
  }

  .category-card {
    min-width: 155px;
    max-width: 155px;
    min-height: 118px;
    padding: 16px 12px;
  }

  .category-name {
    font-size: 0.96rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-image {
    height: 160px;
  }

  .schedule-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .header {
    gap: 10px;
  }

  .logo {
    width: 52px;
    height: 52px;
  }

  .brand-title {
    font-size: 1.55rem;
  }

  .brand-subtitle {
    font-size: 0.9rem;
  }

  .call-btn {
    min-height: 48px;
    padding: 0 14px;
    font-size: 0.9rem;
  }

  .cart-btn {
    width: 48px;
    height: 48px;
  }

  .hero {
    padding-top: 56px;
    padding-bottom: 38px;
  }

  .hero h2 {
    font-size: 2.45rem;
    line-height: 1.05;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .product-actions {
    grid-template-columns: 1fr;
  }

  .product-image {
    height: 150px;
  }

  .product-name {
    font-size: 0.95rem;
  }

  .add-btn,
  .quick-buy-btn {
    padding: 8px;
    font-size: 0.85rem;
  }

  .contact-grid-single {
    max-width: 100%;
  }

  .contact-card {
    padding: 18px;
    max-width: 100%;
  }

  .contact-left h3 {
    font-size: 1.25rem;
  }

  .contact-bottom-stack {
    max-width: 100%;
  }

  .contact-square-btn {
    min-height: 54px;
    border-radius: 16px;
    padding: 10px 14px;
  }

  .uber-btn-logo {
    min-width: 96px;
    min-height: 34px;
    font-size: 0.9rem;
  }

  .promo-content h3 {
    font-size: 1.35rem;
  }

  .promo-price {
    font-size: 2rem;
  }

  .social-card {
    padding: 18px 16px;
  }

  .social-card-icon {
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
  }

  .cart-sidebar {
    width: 100%;
  }

  .checkout-modal {
    align-items: flex-start;
    padding: 12px;
  }

  .checkout-content {
    max-height: calc(100vh - 24px);
    padding: 18px;
    margin: 0 auto;
  }

  .payment-option-content {
    align-items: flex-start;
    flex-direction: column;
  }

  .payment-top {
    width: 100%;
  }

  .payment-check {
    align-self: flex-end;
  }

  .add-toast {
    bottom: 78px;
    width: calc(100% - 24px);
    justify-content: center;
  }

  .floating-whatsapp {
    width: 60px;
    height: 60px;
    font-size: 1.55rem;
  }

  .footer-logo {
    width: 72px;
    height: 72px;
  }

  .footer-brand {
    align-items: center;
  }
}