/* ==========================================================================
   TORTAS CHIDAS - MODERN URBAN DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

:root {
  --primary-red: #D32F2F;
  --primary-red-dark: #B71C1C;
  --primary-red-light: #FFEBEE;
  
  --accent-yellow: #FFB703;
  --accent-yellow-hover: #F59E0B;
  
  --dark-bg: #111827;
  --dark-card: #1F2937;
  --dark-text: #F9FAFB;
  
  --light-bg: #FAFAFA;
  --light-card: #FFFFFF;
  --text-main: #1F2937;
  --text-muted: #6B7280;
  --border-color: #E5E7EB;
  
  --wa-green: #25D366;
  --wa-green-hover: #1EBE57;
  --fb-blue: #1877F2;

  --font-family: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.18);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  background-color: var(--light-bg);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, textarea, select {
  font-family: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Announcement Bar */
.announcement-bar {
  background: var(--dark-bg);
  color: #F3F4F6;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 2px solid var(--accent-yellow);
}

.announcement-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.announcement-phone {
  font-weight: 700;
  color: var(--accent-yellow);
  transition: var(--transition-fast);
}

.announcement-phone:hover {
  text-decoration: underline;
}

/* Main Header / Nav */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: var(--transition-normal);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo {
  height: 48px;
  width: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--dark-bg);
  letter-spacing: -0.5px;
}

.brand-title .highlight {
  color: var(--primary-red);
}

.brand-subtitle {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* Nav Menu Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: var(--transition-fast);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-red);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary-red);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Nav Action Buttons */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  color: white;
}

.fb-btn {
  background: var(--fb-blue);
}

.fb-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

.wa-btn {
  background: var(--wa-green);
}

.wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.cart-trigger-btn {
  position: relative;
  background: var(--dark-bg);
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.cart-trigger-btn:hover {
  background: var(--primary-red);
  transform: scale(1.05);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent-yellow);
  color: var(--dark-bg);
  font-weight: 800;
  font-size: 0.75rem;
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  width: 100%;
  height: 3px;
  background: var(--dark-bg);
  border-radius: 3px;
  transition: var(--transition-fast);
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--primary-red);
  color: white;
  box-shadow: 0 4px 14px rgba(211, 47, 47, 0.35);
}

.btn-primary:hover {
  background: var(--primary-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 47, 47, 0.45);
}

.btn-warning {
  background: var(--accent-yellow);
  color: var(--dark-bg);
  box-shadow: 0 4px 14px rgba(255, 183, 3, 0.4);
}

.btn-warning:hover {
  background: var(--accent-yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid white;
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  background: white;
  color: var(--dark-bg);
}

.btn-whatsapp {
  background: var(--wa-green);
  color: white;
}

.btn-whatsapp:hover {
  background: var(--wa-green-hover);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.btn-phone {
  background: #0284C7;
  color: white;
}

.btn-phone:hover {
  background: #0369A1;
}

.btn-maps {
  background: #EA4335;
  color: white;
}

.btn-maps:hover {
  background: #D93025;
}

/* HERO SECTION WITH BACKGROUND CAROUSEL */
.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
  padding: 5rem 0;
}

.hero-bg-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.5s ease-in-out, transform 6s ease-out;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.85) 0%, rgba(17, 24, 39, 0.7) 50%, rgba(17, 24, 39, 0.92) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero-logo-box {
  margin: 0 auto 1.5rem auto;
}

.hero-brand-img {
  height: 110px;
  width: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 3px solid white;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.5px;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #E5E7EB;
  max-width: 720px;
  margin: 0 auto 2rem auto;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-features-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.feature-pill {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
}

/* SECTIONS GENERAL */
.section {
  padding: 5rem 0;
}

.section-header {
  margin-bottom: 3.5rem;
}

.text-center {
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary-red);
  background: var(--primary-red-light);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--dark-bg);
  letter-spacing: -0.5px;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* SECTION: FAVORITOS */
.favorites-section {
  background: #FFFFFF;
}

.favorites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.favorite-card {
  position: relative;
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.favorite-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-yellow);
}

.fav-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--dark-bg);
  color: var(--accent-yellow);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.fav-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.fav-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark-bg);
  margin-bottom: 0.5rem;
}

.fav-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.fav-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px dashed var(--border-color);
}

.fav-price {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--primary-red);
}

/* SECTION: MENU INTERACTIVO */
.menu-section {
  background: #F8FAFC;
}

.menu-controls {
  max-width: 860px;
  margin: 0 auto 3rem auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.search-box {
  position: relative;
  width: 100%;
}

.search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.search-box input {
  width: 100%;
  padding: 1rem 3rem 1rem 3.25rem;
  font-size: 1.05rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-full);
  background: white;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  outline: none;
}

.search-box input:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.15);
}

.clear-search-btn {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  background: #E5E7EB;
  border: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  font-weight: bold;
  color: #4B5563;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.filter-pill {
  background: white;
  border: 1px solid var(--border-color);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-pill:hover {
  background: #F3F4F6;
  border-color: #D1D5DB;
}

.filter-pill.active {
  background: var(--dark-bg);
  color: white;
  border-color: var(--dark-bg);
  box-shadow: var(--shadow-sm);
}

/* MENU GRID - CLEAN NO-PHOTO CARDS */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.menu-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-yellow);
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.menu-item-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark-bg);
  line-height: 1.25;
}

.menu-item-price {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--primary-red);
  background: var(--primary-red-light);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-md);
  white-space: nowrap;
}

.menu-item-category-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  background: #F3F4F6;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}

.menu-item-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: auto;
}

.no-results-box {
  text-align: center;
  padding: 4rem 1rem;
  background: white;
  border-radius: var(--radius-lg);
  max-width: 500px;
  margin: 0 auto;
}

.no-results-emoji {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

/* SECTION: SOBRE NOSOTROS */
.about-section {
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-lead {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-bg);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.about-body {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.value-card {
  background: var(--light-bg);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.value-card.value-full {
  grid-column: span 2;
}

.value-emoji {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.25rem;
}

.value-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark-bg);
  margin-bottom: 0.25rem;
}

.value-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.about-card-banner {
  position: relative;
  background: var(--dark-bg);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--accent-yellow);
}

.about-logo-hero {
  max-width: 220px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.about-badge-floating {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: var(--primary-red);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.about-badge-floating .big-number {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.about-badge-floating .small-text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* SECTION: GALERIA DE FOTOS */
.gallery-section {
  background: #F8FAFC;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  height: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Lightbox Modal */
.lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: transparent;
  border: none;
  color: white;
  font-size: 3rem;
  cursor: pointer;
}

/* SECTION: OPINIONES DE CLIENTES */
.reviews-section {
  background: white;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 3rem;
}

.review-form-card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  height: fit-content;
}

.review-form-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark-bg);
  margin-bottom: 0.25rem;
}

.form-subtext {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark-bg);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  background: white;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-red);
  outline: none;
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.12);
}

.star-rating-picker {
  display: flex;
  gap: 0.4rem;
  font-size: 1.8rem;
  cursor: pointer;
}

.star-btn {
  color: #D1D5DB;
  transition: var(--transition-fast);
}

.star-btn:hover,
.star-btn.active {
  color: var(--accent-yellow);
}

.rating-summary-box {
  background: var(--dark-bg);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.rating-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-yellow);
  line-height: 1;
}

.rating-stars-summary {
  font-size: 1.4rem;
  color: var(--accent-yellow);
  letter-spacing: 2px;
}

.rating-count-text {
  font-size: 0.9rem;
  color: #9CA3AF;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-height: 540px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.review-item-card {
  background: var(--light-bg);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.review-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.review-author-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-red);
  color: white;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.author-name {
  font-weight: 800;
  font-size: 0.98rem;
  color: var(--dark-bg);
}

.review-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.review-stars {
  color: var(--accent-yellow);
  font-size: 1.1rem;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-main);
  line-height: 1.5;
}

/* SECTION: UBICACION Y CONTACTO */
.contact-section {
  background: #F8FAFC;
}

.contact-card-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.contact-info-block {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.info-icon {
  font-size: 2rem;
  background: var(--primary-red-light);
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-details h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark-bg);
  margin-bottom: 0.25rem;
}

.info-details p, .info-details a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.info-details a:hover {
  color: var(--primary-red);
  text-decoration: underline;
}

.contact-hours-block {
  background: var(--dark-bg);
  color: white;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-hours-block h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--accent-yellow);
}

.hours-list {
  list-style: none;
  margin-bottom: 2rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
}

.hours-list li span {
  color: #9CA3AF;
}

.hours-list li strong {
  color: white;
}

.contact-actions-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* FOOTER */
.main-footer {
  background: #0B0F17;
  color: white;
  padding: 4rem 0 2rem 0;
  border-top: 4px solid var(--primary-red);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  height: 60px;
  width: auto;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-yellow);
  margin-bottom: 0.5rem;
}

.footer-location {
  color: #9CA3AF;
  font-size: 0.9rem;
}

.footer-socials h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.social-links-row {
  display: flex;
  gap: 1rem;
}

.social-link-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.social-link-btn:hover {
  background: var(--primary-red);
  color: white;
}

.footer-bottom {
  padding-top: 2rem;
  font-size: 0.85rem;
  color: #6B7280;
}

/* FLOATING STICKY BUTTONS */
.floating-wa-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1200;
  background: var(--wa-green);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  transition: var(--transition-fast);
}

.floating-wa-btn:hover {
  transform: scale(1.1);
}

.mobile-sticky-cart-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  background: white;
  padding: 0.75rem 1rem;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
}

/* SHOPPING CART MODAL & DRAWER */
.cart-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  justify-content: flex-end;
}

.cart-modal-overlay.active {
  display: flex;
}

.cart-drawer {
  width: 100%;
  max-width: 480px;
  height: 100%;
  background: white;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.2);
  animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.cart-header {
  padding: 1.25rem 1.5rem;
  background: var(--dark-bg);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h3 {
  font-size: 1.2rem;
  font-weight: 800;
}

.cart-close-btn {
  background: transparent;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.cart-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-empty-state {
  text-align: center;
  padding: 3rem 1rem;
}

.empty-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 1rem;
}

.cart-empty-state h4 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.cart-empty-state p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.cart-items-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem;
  background: var(--light-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-title {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--dark-bg);
}

.cart-item-unit-price {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: white;
  font-weight: bold;
  cursor: pointer;
}

.qty-btn:hover {
  background: var(--primary-red);
  color: white;
  border-color: var(--primary-red);
}

.qty-val {
  font-weight: 800;
  font-size: 0.95rem;
  min-width: 20px;
  text-align: center;
}

.cart-item-subtotal {
  font-weight: 900;
  font-size: 1rem;
  color: var(--primary-red);
  min-width: 65px;
  text-align: right;
}

.cart-item-remove {
  background: transparent;
  border: none;
  color: #9CA3AF;
  cursor: pointer;
  font-size: 1.1rem;
  margin-left: 0.5rem;
}

.cart-item-remove:hover {
  color: var(--primary-red);
}

/* CHECKOUT FORM STYLES */
.checkout-heading {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark-bg);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-yellow);
  margin-bottom: 1.25rem;
}

.required {
  color: var(--primary-red);
}

.radio-toggle-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.radio-option input {
  display: none;
}

.radio-box {
  display: block;
  text-align: center;
  padding: 0.75rem 0.5rem;
  background: var(--light-bg);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.radio-option input:checked + .radio-box {
  background: var(--primary-red-light);
  border-color: var(--primary-red);
  color: var(--primary-red-dark);
}

.alert-info-box {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  color: #1E40AF;
  padding: 0.85rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.alert-info-box p {
  margin-bottom: 0.25rem;
}

.alert-info-box p:last-child {
  margin-bottom: 0;
}

.alert-warning-box {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  color: #92400E;
  padding: 0.85rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  margin-top: 0.75rem;
}

.bank-details-card {
  background: var(--dark-bg);
  color: white;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
}

.bank-card-header {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--accent-yellow);
  margin-bottom: 1rem;
}

.bank-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.6rem;
}

.bank-field-info {
  display: flex;
  flex-direction: column;
}

.bank-label {
  font-size: 0.75rem;
  color: #9CA3AF;
}

.bank-value {
  font-family: monospace;
  font-size: 1rem;
  letter-spacing: 1px;
  color: white;
}

.btn-copy {
  background: var(--accent-yellow);
  color: var(--dark-bg);
  border: none;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-copy:hover {
  background: white;
}

.cart-footer {
  padding: 1.25rem 1.5rem;
  background: var(--light-bg);
  border-top: 1px solid var(--border-color);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.total-amount {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary-red);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  background: var(--dark-bg);
  color: white;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-weight: 700;
  font-size: 0.9rem;
  border-left: 4px solid var(--accent-yellow);
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* MEDIA QUERIES FOR RESPONSIVENESS */
@media (max-width: 992px) {
  .about-grid, .reviews-layout, .contact-card-main {
    grid-template-columns: 1fr;
  }

  .about-card-banner {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .announcement-bar {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    box-shadow: var(--shadow-lg);
    clip-path: circle(0% at 100% 0%);
    transition: clip-path 0.4s ease-in-out;
  }

  .nav-menu.active {
    clip-path: circle(140% at 100% 0%);
  }

  .nav-actions .fb-btn, .nav-actions .wa-btn {
    display: none;
  }

  .hero-section {
    min-height: 80vh;
    padding: 3rem 0;
  }

  .hero-brand-img {
    height: 90px;
  }

  .mobile-sticky-cart-bar {
    display: block;
  }

  .floating-wa-btn {
    bottom: 80px;
  }

  .reviews-list-container {
    padding-bottom: 4rem;
  }

  .contact-info-block, .contact-hours-block {
    padding: 2rem 1.5rem;
  }
}

/* ==========================================
   PROMOTION SPECIAL STYLES
   ========================================== */
.promo-highlight-card {
  background: linear-gradient(135deg, #FFF5F5 0%, #FFFBEB 100%);
  border: 2px solid var(--primary-red);
  box-shadow: 0 10px 25px rgba(211, 47, 47, 0.15);
  position: relative;
  overflow: hidden;
}

.promo-highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(211, 47, 47, 0.25);
  border-color: var(--accent-yellow-hover);
}

.promo-badge {
  background: linear-gradient(90deg, #D32F2F 0%, #E65100 100%) !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 10px rgba(211, 47, 47, 0.3);
  font-weight: 900 !important;
  letter-spacing: 0.5px;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.promo-pill-hero {
  background: linear-gradient(90deg, #D32F2F 0%, #F59E0B 100%) !important;
  color: white !important;
  border: none !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 14px rgba(211, 47, 47, 0.4);
}

.promo-filter-pill {
  background: #FFF0F0;
  border-color: var(--primary-red);
  color: var(--primary-red);
  font-weight: 800;
}

.promo-filter-pill:hover, .promo-filter-pill.active {
  background: var(--primary-red);
  color: white;
  border-color: var(--primary-red);
}

