
/* Custom variables for Night/Space vibe and Glassmorphism */
:root {
  --primary: #10B981; /* Premium Green */
  --primary-hover: #059669;
  --accent: #10B981; /* Premium Green */
  --neon-glow: 0 0 15px rgba(16, 185, 129, 0.6), 0 0 30px rgba(16, 185, 129, 0.4);
  --premium-green: #10B981; /* Emerald Green */
  --bg-dark: #07090c;
  --bg-darker: #000000;
  
  /* Glassmorphism tokens */
  --glass-bg: rgba(20, 25, 35, 0.4);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: blur(16px);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 90%; /* Efecto de zoom del 90% en escritorio */
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.5;
  user-select: none;
  -webkit-user-select: none;
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(16, 185, 129, 0.05), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(16, 185, 129, 0.05), transparent 25%);
}

/* Allow text selection for contact info */
.contact-list li, #cartNotes, input, select, option {
  user-select: text;
  -webkit-user-select: text;
}

h1, h2, h3, h4, h5, h6, .logo {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Typography --- */
.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 0.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title span {
  color: var(--primary);
  text-shadow: 0 0 15px rgba(249, 115, 22, 0.5);
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

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

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 9, 12, 0.6);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(3, 4, 6, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { height: 45px; width: auto; border-radius: 50%; box-shadow: 0 0 10px rgba(249, 115, 22, 0.5); }
.footer-logo-img { height: 70px; width: auto; border-radius: 50%; box-shadow: var(--neon-glow); }
.logo span { font-weight: 400; font-size: 1.2rem; }

.nav-links { display: flex; gap: 2rem; margin-right: auto; margin-left: 3rem; }
.nav-links a { font-weight: 500; font-size: 0.95rem; transition: var(--transition); text-transform: uppercase; letter-spacing: 1px; }
.nav-links a:hover { color: var(--primary); text-shadow: 0 0 10px rgba(249, 115, 22, 0.8); }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 85vh; /* Reduced height so it doesn't feel huge */
  display: flex;
  align-items: center;
  padding-top: 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(rgba(3, 4, 6, 0.85), rgba(7, 9, 12, 1)), url('assets/hero_background.jpg') center/cover no-repeat;
  z-index: -1;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  z-index: 2;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.03);
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  width: fit-content;
  font-size: 0.85rem;
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.1);
}
.rating-badge i { color: #fbbf24; text-shadow: 0 0 5px #fbbf24; }

.hero-title {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
}
.hero-title span {
  color: var(--primary);
  display: block;
  text-shadow: var(--neon-glow);
}

.hero-subtitle { font-size: 1.1rem; color: var(--text-muted); max-width: 95%; }

.btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  transition: var(--transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.neon-btn {
  background-color: var(--primary);
  color: #fff;
  border: 2px solid transparent;
  box-shadow: var(--neon-glow);
  position: relative;
  overflow: hidden;
}
.neon-btn::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: linear-gradient(transparent, rgba(255,255,255,0.3), transparent);
  transform: rotate(45deg);
  animation: radar 3s infinite linear;
}
@keyframes radar {
  0% { transform: rotate(45deg) translateY(-100%); }
  100% { transform: rotate(45deg) translateY(100%); }
}

.neon-btn:hover {
  background-color: #fff;
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 40px rgba(249, 115, 22, 0.8);
  transform: translateY(-3px) scale(1.02);
}

.hero-image-wrapper { position: relative; z-index: 2; display: flex; justify-content: center; align-items: center; }
.hero-image-glow {
  position: absolute;
  width: 80%; height: 80%;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
  z-index: -1;
  animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

.hero-burger-img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  object-fit: cover;
  animation: float-futuristic 5s ease-in-out infinite;
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
  border: 1px solid rgba(255,255,255,0.05);
}
@keyframes float-futuristic {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

/* --- Menu Section --- */
.menu { padding: 5rem 1.5rem; max-width: 1200px; margin: 0 auto; }
.menu-category { margin-bottom: 3.5rem; }
.category-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.category-title i { color: var(--primary); text-shadow: 0 0 10px rgba(249,115,22,0.5); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.menu-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  opacity: 1 !important; visibility: visible !important;
}

.menu-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px transparent;
  transition: var(--transition);
  pointer-events: none;
}

.menu-card:hover {
  transform: translateY(-5px);
  background: rgba(30, 40, 55, 0.6);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(14, 165, 233, 0.2);
}
.menu-card:hover .qty-overlay {
  opacity: 1 !important;
}
.menu-card:hover::after {
  box-shadow: inset 0 0 0 1px var(--accent);
}

.menu-item-img {
  width: calc(100% + 3rem);
  margin: -1.5rem -1.5rem 1.2rem -1.5rem;
  height: 220px;
  object-fit: contain; /* Encadre perfecto */
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0.8) 100%);
  border-radius: 16px 16px 0 0;
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem;
}

.menu-card-content { display: flex; justify-content: space-between; align-items: center; }
.menu-card-content h4 { font-size: 1.15rem; font-weight: 600; text-transform: uppercase; }
.menu-card-content .price { font-family: 'Outfit', sans-serif; color: var(--primary); font-weight: 800; font-size: 1.2rem; text-shadow: 0 0 8px rgba(249,115,22,0.4); }
.menu-item-desc { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.5rem; line-height: 1.4; }


/* --- Sucursales Section --- */

/* --- Tabs para Sucursales --- */
.tabs-header { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.tab-btn { background: var(--glass-bg); color: var(--text-main); border: 1px solid var(--glass-border); padding: 1rem 2rem; border-radius: 8px; cursor: pointer; font-family: 'Outfit', sans-serif; font-weight: 700; transition: var(--transition); text-transform: uppercase; letter-spacing: 1px; font-size: 0.95rem; }
.tab-btn:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.tab-btn.active { background: var(--primary); border-color: var(--primary); box-shadow: var(--neon-glow); color: white; }
.tab-content { display: none; animation: fadeIn 0.5s ease; max-width: 800px; margin: 0 auto; width: 100%; }
.tab-content.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

.sucursales { padding: 5rem 1.5rem; max-width: 1200px; margin: 0 auto; }
.sucursales-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.sucursal-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: var(--transition);
}
.sucursal-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--neon-glow);
  border-color: var(--primary);
}
.sucursal-card h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}
.sucursal-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.sucursal-card p i {
  color: var(--accent);
  margin-right: 5px;
}
.sucursal-card .map-container {
  margin-top: 1rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.sucursal-card .map-container iframe {
  /* Dark mode filter for standard Google Maps iframe */
  filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(85%);
}

/* --- Gallery & Reviews --- */
.gallery { padding: 4rem 1.5rem; background-color: var(--bg-darker); position: relative; }
.instagram-handle { display: block; text-align: center; color: var(--primary); font-weight: 700; font-size: 1.1rem; margin-top: -1rem; margin-bottom: 3rem; transition: var(--transition); letter-spacing: 1px; }
.instagram-handle:hover { text-shadow: var(--neon-glow); }
.gallery-container { max-width: 1200px; margin: 0 auto; }
.glass-panel { background: var(--glass-bg); backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border); border-radius: 20px; min-height: 250px; display: flex; justify-content: center; align-items: center; text-align: center; padding: 2rem; }
.placeholder-content i { font-size: 3rem; background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 1rem; }

.reviews { padding: 5rem 1.5rem; max-width: 1200px; margin: 0 auto; overflow: hidden; }
.rating-overall { display: flex; flex-direction: column; align-items: center; margin-top: -1.5rem; margin-bottom: 2rem; }
.rating-number { font-size: 3.5rem; font-weight: 900; line-height: 1; text-shadow: 0 0 20px rgba(255,255,255,0.2); }
.rating-stars i { color: #fbbf24; font-size: 1rem; text-shadow: 0 0 5px #fbbf24; }

/* --- Footer --- */
.footer { background-color: var(--bg-darker); border-top: 1px solid var(--glass-border); padding-top: 3rem; }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2.5rem; margin-bottom: 2rem; }
.footer-logo { margin-bottom: 1rem; }
.footer-desc { color: var(--text-muted); font-size: 0.9rem; }
.social-links { display: flex; gap: 0.8rem; }
.social-links a { display: inline-flex; justify-content: center; align-items: center; width: 35px; height: 35px; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); transition: var(--transition); }
.social-links a:hover { background: var(--primary); border-color: var(--primary); color: white; transform: translateY(-3px); box-shadow: var(--neon-glow); }

.footer-col h3 { font-size: 1.1rem; margin-bottom: 1rem; color: var(--text-main); text-transform: uppercase; letter-spacing: 1px; }
.contact-list { display: flex; flex-direction: column; gap: 0.8rem; }
.contact-col li { display: flex; gap: 0.8rem; color: var(--text-muted); font-size: 0.9rem; }
.contact-col li i { color: var(--primary); margin-top: 0.2rem; }
.delivery-apps { display: flex; flex-direction: column; gap: 0.8rem; }

.app-btn { display: inline-block; padding: 0.6rem 1.2rem; border-radius: 8px; font-weight: 700; text-align: center; transition: var(--transition); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; text-transform: uppercase; }
.app-btn:hover { background: rgba(255,255,255,0.1); transform: translateX(5px); }
.app-btn.pedidosya { border-left: 3px solid #E81A46; }
.app-btn.rappi { border-left: 3px solid #FF5E5B; }
.footer-bottom { text-align: center; padding: 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); color: var(--text-muted); font-size: 0.8rem; }

/* --- Responsive Layout Fixes --- */
@media (max-width: 992px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; gap: 2rem; padding-top: 2rem; }
  .hero-content { align-items: center; }
  .hero-title { font-size: 2.8rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .btn { width: 100%; padding: 1rem; }
  .section-title { font-size: 1.8rem; }
  .hero { padding-top: 40px; min-height: 80vh; }
  .hero-burger-img { max-width: 90%; }
  
  /* --- Menu Compression for Mobile --- */
  .menu-category { margin-bottom: 2.5rem; }
  .category-title { font-size: 1.4rem; margin-bottom: 1.2rem; }
  .menu-grid {
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 1rem;
  }
  .menu-card {
      padding: 1rem;
      border-radius: 12px;
  }
  .menu-item-img {
      height: 120px;
      margin: -1rem -1rem 1rem -1rem;
      width: calc(100% + 2rem);
  }
  .menu-card-content h4 { font-size: 1rem; }
  .menu-item-desc { font-size: 0.8rem; margin-top: 0.3rem; }
  .price { font-size: 1.05rem; }
}

@media (max-width: 480px) {
  html { font-size: 14px; }
  .hero-title { font-size: 1.9rem; }
  
  /* On very small screens, switch to 1 column for better visibility */
  .menu-grid { grid-template-columns: 1fr; }
  .menu-item-img { height: 160px; }
}
/* --- Product Modal --- */
.product-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8); backdrop-filter: blur(5px);
    display: flex; justify-content: center; align-items: center;
    z-index: 2000; opacity: 0; pointer-events: none; transition: 0.3s;
}
.product-modal-overlay.active { opacity: 1; pointer-events: auto; }
.product-modal {
    width: 90%; max-width: 500px; max-height: 90vh; overflow-y: auto;
    background: var(--bg-color); border: 1px solid var(--primary);
    padding: 2rem; position: relative; border-radius: 16px;
}
.close-modal {
    position: absolute; top: 1rem; right: 1rem; background: none; border: none;
    color: var(--text-main); font-size: 1.5rem; cursor: pointer;
}
.modal-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.extras-section h4, .notes-section h4 {
    color: var(--primary); margin-top: 1rem; margin-bottom: 0.5rem; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 5px;
}
.extras-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; font-size: 0.85rem;
}
.notes-section textarea {
    width: 100%; height: 60px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: white; padding: 0.5rem; border-radius: 8px; resize: none; font-family: inherit;
}
.modal-footer {
    display: flex; justify-content: space-between; align-items: center; margin-top: 2rem;
    padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.1);
}
.modal-price-total { font-size: 1.2rem; font-weight: bold; }

/* --- Cart Sidebar --- */
.cart-overlay {
    position: fixed; top: 0; right: -400px; width: 400px; height: 100%; max-width: 100%;
    background: var(--bg-color); border-left: 1px solid var(--primary); box-shadow: -5px 0 30px rgba(0,0,0,0.5);
    z-index: 2000; transition: 0.4s ease; display: flex; flex-direction: column;
}
.cart-overlay.active { right: 0; }
.cart-header { padding: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; }
.close-cart { background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }
.cart-items { flex: 1; overflow-y: auto; padding: 1.5rem; }
.cart-item { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.cart-item h4 { font-size: 1rem; margin-bottom: 0.2rem; }
.cart-item-extras, .cart-item-notes { font-size: 0.8rem; color: var(--text-muted); }
.cart-item-price { color: var(--primary); font-weight: bold; margin-top: 0.3rem; }
.remove-item { background: none; border: none; color: #ff4444; cursor: pointer; padding: 5px; }
.cart-footer { padding: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); background: rgba(0,0,0,0.2); }
.cart-total-line { display: flex; justify-content: space-between; font-size: 1.2rem; margin-bottom: 1rem; }

/* --- Floating Button --- */
.floating-cart-btn {
    position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px;
    background: var(--primary); border: none; border-radius: 50%; color: white;
    font-size: 1.5rem; cursor: pointer; box-shadow: var(--neon-glow); z-index: 1000;
    transition: transform 0.3s; display: flex; justify-content: center; align-items: center;
}
.floating-cart-btn:hover { transform: scale(1.1); }
.cart-badge {
    position: absolute; top: -5px; right: -5px; background: #ff4444; color: white;
    font-size: 0.8rem; font-weight: bold; width: 24px; height: 24px; border-radius: 50%;
    display: flex; justify-content: center; align-items: center; border: 2px solid var(--bg-color);
}

/* About Logo & Closed Mode */
.about-logo {
  max-width: 350px;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--neon-glow);
  border: 2px solid var(--accent);
  transform: rotate(2deg);
  transition: transform 0.3s ease;
}
.about-logo:hover {
  transform: rotate(0deg) scale(1.05) !important;
}

#menu.closed-mode .menu-card {
  opacity: 0.8;
  filter: brightness(50%) contrast(110%);
  pointer-events: none;
  cursor: not-allowed !important;
}

#menu.closed-mode .qty-overlay,
#menu.closed-mode select {
  display: none !important;
}

/* Premium Select Styling */
.premium-select {
  appearance: none;
  -webkit-appearance: none;
  background-color: rgba(20, 25, 35, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 10px 15px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  width: 100%;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  margin-top: 5px;
  margin-bottom: 10px;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2310B981%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 15px top 50%;
  background-size: 12px auto;
}

.premium-select:hover {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.premium-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.premium-select option {
  background-color: var(--bg-dark);
  color: #fff;
  padding: 10px;
}

/* Anthony Logo Style */
.anthony-logo-container {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    font-family: Impact, 'Arial Black', sans-serif;
    font-weight: 400;
    filter: drop-shadow(4px 4px 5px rgba(0,0,0,0.9));
    user-select: none;
    -webkit-user-select: none;
    transform: rotate(-2deg);
    line-height: 1;
}

.anthony-word {
    color: #e32322;
    font-size: 1.8em;
    line-height: 0.85;
    letter-spacing: 0.05em;
    text-shadow: 
        1.5px 1.5px 0 #111, -1.5px -1.5px 0 #111, 1.5px -1.5px 0 #111, -1.5px 1.5px 0 #111,
        0 2.5px 0 #111, 0 -2.5px 0 #111, 2.5px 0 0 #111, -2.5px 0 0 #111,
        2px 2px 0 #111, 3px 3px 0 #111, 4px 4px 0 #111;
    position: relative;
    z-index: 2;
}

.burguer-word {
    color: #00c240;
    font-size: 1em;
    line-height: 0.85;
    letter-spacing: 0.38em;
    margin-left: 0.25em; 
    text-shadow: 
        1.5px 1.5px 0 #111, -1.5px -1.5px 0 #111, 1.5px -1.5px 0 #111, -1.5px 1.5px 0 #111,
        0 2.5px 0 #111, 0 -2.5px 0 #111, 2.5px 0 0 #111, -2.5px 0 0 #111,
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 1rem;
  }
  .menu-card {
      padding: 1rem;
      border-radius: 12px;
  }
  .menu-item-img {
      height: 120px;
      margin: -1rem -1rem 1rem -1rem;
      width: calc(100% + 2rem);
  }
  .menu-card-content h4 { font-size: 1rem; }
  .menu-item-desc { font-size: 0.8rem; margin-top: 0.3rem; }
  .price { font-size: 1.05rem; }
}

@media (max-width: 480px) {
  html { font-size: 14px; }
  .hero-title { font-size: 1.9rem; }
  
  /* On very small screens, switch to 1 column for better visibility */
  .menu-grid { grid-template-columns: 1fr; }
  .menu-item-img { height: 160px; }
}
/* --- Product Modal --- */
.product-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8); backdrop-filter: blur(5px);
    display: flex; justify-content: center; align-items: center;
    z-index: 2000; opacity: 0; pointer-events: none; transition: 0.3s;
}
.product-modal-overlay.active { opacity: 1; pointer-events: auto; }
.product-modal {
    width: 90%; max-width: 500px; max-height: 90vh; overflow-y: auto;
    background: var(--bg-color); border: 1px solid var(--primary);
    padding: 2rem; position: relative; border-radius: 16px;
}
.close-modal {
    position: absolute; top: 1rem; right: 1rem; background: none; border: none;
    color: var(--text-main); font-size: 1.5rem; cursor: pointer;
}
.modal-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.extras-section h4, .notes-section h4 {
    color: var(--primary); margin-top: 1rem; margin-bottom: 0.5rem; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 5px;
}
.extras-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; font-size: 0.85rem;
}
.notes-section textarea {
    width: 100%; height: 60px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: white; padding: 0.5rem; border-radius: 8px; resize: none; font-family: inherit;
}
.modal-footer {
    display: flex; justify-content: space-between; align-items: center; margin-top: 2rem;
    padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.1);
}
.modal-price-total { font-size: 1.2rem; font-weight: bold; }

/* --- Cart Sidebar --- */
.cart-overlay {
    position: fixed; top: 0; right: -400px; width: 400px; height: 100%; max-width: 100%;
    background: var(--bg-color); border-left: 1px solid var(--primary); box-shadow: -5px 0 30px rgba(0,0,0,0.5);
    z-index: 2000; transition: 0.4s ease; display: flex; flex-direction: column;
}
.cart-overlay.active { right: 0; }
.cart-header { padding: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; }
.close-cart { background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }
.cart-items { flex: 1; overflow-y: auto; padding: 1.5rem; }
.cart-item { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.cart-item h4 { font-size: 1rem; margin-bottom: 0.2rem; }
.cart-item-extras, .cart-item-notes { font-size: 0.8rem; color: var(--text-muted); }
.cart-item-price { color: var(--primary); font-weight: bold; margin-top: 0.3rem; }
.remove-item { background: none; border: none; color: #ff4444; cursor: pointer; padding: 5px; }
.cart-footer { padding: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); background: rgba(0,0,0,0.2); }
.cart-total-line { display: flex; justify-content: space-between; font-size: 1.2rem; margin-bottom: 1rem; }

/* --- Floating Button --- */
.floating-cart-btn {
    position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px;
    background: var(--primary); border: none; border-radius: 50%; color: white;
    font-size: 1.5rem; cursor: pointer; box-shadow: var(--neon-glow); z-index: 1000;
    transition: transform 0.3s; display: flex; justify-content: center; align-items: center;
}
.floating-cart-btn:hover { transform: scale(1.1); }
.cart-badge {
    position: absolute; top: -5px; right: -5px; background: #ff4444; color: white;
    font-size: 0.8rem; font-weight: bold; width: 24px; height: 24px; border-radius: 50%;
    display: flex; justify-content: center; align-items: center; border: 2px solid var(--bg-color);
}

/* About Logo & Closed Mode */
.about-logo {
  max-width: 350px;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--neon-glow);
  border: 2px solid var(--accent);
  transform: rotate(2deg);
  transition: transform 0.3s ease;
}
.about-logo:hover {
  transform: rotate(0deg) scale(1.05) !important;
}

#menu.closed-mode .menu-card {
  opacity: 0.8;
  filter: brightness(50%) contrast(110%);
  pointer-events: none;
  cursor: not-allowed !important;
}

#menu.closed-mode .qty-overlay,
#menu.closed-mode select {
  display: none !important;
}

/* Premium Select Styling */
.premium-select {
  appearance: none;
  -webkit-appearance: none;
  background-color: rgba(20, 25, 35, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 10px 15px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  width: 100%;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  margin-top: 5px;
  margin-bottom: 10px;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2310B981%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 15px top 50%;
  background-size: 12px auto;
}

.premium-select:hover {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.premium-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.premium-select option {
  background-color: var(--bg-dark);
  color: #fff;
  padding: 10px;
}

/* Anthony Logo Style */
.anthony-logo-container {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    font-family: Impact, 'Arial Black', sans-serif;
    font-weight: 400;
    filter: drop-shadow(4px 4px 5px rgba(0,0,0,0.9));
    user-select: none;
    -webkit-user-select: none;
    transform: rotate(-2deg);
    line-height: 1;
}

.anthony-word {
    color: #e32322;
    font-size: 1.8em;
    line-height: 0.85;
    letter-spacing: 0.05em;
    text-shadow: 
        1.5px 1.5px 0 #111, -1.5px -1.5px 0 #111, 1.5px -1.5px 0 #111, -1.5px 1.5px 0 #111,
        0 2.5px 0 #111, 0 -2.5px 0 #111, 2.5px 0 0 #111, -2.5px 0 0 #111,
        2px 2px 0 #111, 3px 3px 0 #111, 4px 4px 0 #111;
    position: relative;
    z-index: 2;
}

.burguer-word {
    color: #00c240;
    font-size: 1em;
    line-height: 0.85;
    letter-spacing: 0.38em;
    margin-left: 0.25em; 
    text-shadow: 
        1.5px 1.5px 0 #111, -1.5px -1.5px 0 #111, 1.5px -1.5px 0 #111, -1.5px 1.5px 0 #111,
        0 2.5px 0 #111, 0 -2.5px 0 #111, 2.5px 0 0 #111, -2.5px 0 0 #111,
        2px 2px 0 #111, 3px 3px 0 #111, 4px 4px 0 #111;
    position: relative;
    z-index: 2;
}

  .menu-card-img {
      height: 120px;
      margin: -1rem -1rem 1rem -1rem;
      width: calc(100% + 2rem);
  }
  .menu-card-content h4 { font-size: 1rem; }
  .menu-item-desc { font-size: 0.8rem; margin-top: 0.3rem; }
  .price { font-size: 1.05rem; }
}

@media (max-width: 480px) {
  html { font-size: 14px; }
  .hero-title { font-size: 1.9rem; }
  
  /* On very small screens, switch to 1 column for better visibility */
  .menu-grid { grid-template-columns: 1fr; }
  .menu-item-img { height: 160px; }
}
/* --- Product Modal --- */
.product-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8); backdrop-filter: blur(5px);
    display: flex; justify-content: center; align-items: center;
    z-index: 2000; opacity: 0; pointer-events: none; transition: 0.3s;
}
.product-modal-overlay.active { opacity: 1; pointer-events: auto; }
.product-modal {
    width: 90%; max-width: 500px; max-height: 90vh; overflow-y: auto;
    background: var(--bg-color); border: 1px solid var(--primary);
    padding: 2rem; position: relative; border-radius: 16px;
}
.close-modal {
    position: absolute; top: 1rem; right: 1rem; background: none; border: none;
    color: var(--text-main); font-size: 1.5rem; cursor: pointer;
}
.modal-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.extras-section h4, .notes-section h4 {
    color: var(--primary); margin-top: 1rem; margin-bottom: 0.5rem; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 5px;
}
.extras-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; font-size: 0.85rem;
}
.notes-section textarea {
    width: 100%; height: 60px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: white; padding: 0.5rem; border-radius: 8px; resize: none; font-family: inherit;
}
.modal-footer {
    display: flex; justify-content: space-between; align-items: center; margin-top: 2rem;
    padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.1);
}
.modal-price-total { font-size: 1.2rem; font-weight: bold; }

/* --- Cart Sidebar --- */
.cart-overlay {
    position: fixed; top: 0; right: -400px; width: 400px; height: 100%; max-width: 100%;
    background: var(--bg-color); border-left: 1px solid var(--primary); box-shadow: -5px 0 30px rgba(0,0,0,0.5);
    z-index: 2000; transition: 0.4s ease; display: flex; flex-direction: column;
}
.cart-overlay.active { right: 0; }
.cart-header { padding: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; }
.close-cart { background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }
.cart-items { flex: 1; overflow-y: auto; padding: 1.5rem; }
.cart-item { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.cart-item h4 { font-size: 1rem; margin-bottom: 0.2rem; }
.cart-item-extras, .cart-item-notes { font-size: 0.8rem; color: var(--text-muted); }
.cart-item-price { color: var(--primary); font-weight: bold; margin-top: 0.3rem; }
.remove-item { background: none; border: none; color: #ff4444; cursor: pointer; padding: 5px; }
.cart-footer { padding: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); background: rgba(0,0,0,0.2); }
.cart-total-line { display: flex; justify-content: space-between; font-size: 1.2rem; margin-bottom: 1rem; }

/* --- Floating Button --- */
.floating-cart-btn {
    position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px;
    background: var(--primary); border: none; border-radius: 50%; color: white;
    font-size: 1.5rem; cursor: pointer; box-shadow: var(--neon-glow); z-index: 1000;
    transition: transform 0.3s; display: flex; justify-content: center; align-items: center;
}
.floating-cart-btn:hover { transform: scale(1.1); }
.cart-badge {
    position: absolute; top: -5px; right: -5px; background: #ff4444; color: white;
    font-size: 0.8rem; font-weight: bold; width: 24px; height: 24px; border-radius: 50%;
    display: flex; justify-content: center; align-items: center; border: 2px solid var(--bg-color);
}

/* About Logo & Closed Mode */
.about-logo {
  max-width: 350px;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--neon-glow);
  border: 2px solid var(--accent);
  transform: rotate(2deg);
  transition: transform 0.3s ease;
}
.about-logo:hover {
  transform: rotate(0deg) scale(1.05) !important;
}

#menu.closed-mode .menu-card {
  opacity: 0.8;
  filter: brightness(50%) contrast(110%);
  pointer-events: none;
  cursor: not-allowed !important;
}

#menu.closed-mode .qty-overlay,
#menu.closed-mode select {
  display: none !important;
}

/* Premium Select Styling */
.premium-select {
  appearance: none;
  -webkit-appearance: none;
  background-color: rgba(20, 25, 35, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 10px 15px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  width: 100%;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  margin-top: 5px;
  margin-bottom: 10px;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2310B981%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 15px top 50%;
  background-size: 12px auto;
}

.premium-select:hover {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.premium-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.premium-select option {
  background-color: var(--bg-dark);
  color: #fff;
  padding: 10px;
}

/* Anthony Logo Style */
.anthony-logo-container {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    font-family: Impact, 'Arial Black', sans-serif;
    font-weight: 400;
    filter: drop-shadow(4px 4px 5px rgba(0,0,0,0.9));
    user-select: none;
    -webkit-user-select: none;
    transform: rotate(-2deg);
    line-height: 1;
}

.anthony-word {
    color: #e32322;
    font-size: 1.8em;
    line-height: 0.85;
    letter-spacing: 0.05em;
    text-shadow: 
        1.5px 1.5px 0 #111, -1.5px -1.5px 0 #111, 1.5px -1.5px 0 #111, -1.5px 1.5px 0 #111,
        0 2.5px 0 #111, 0 -2.5px 0 #111, 2.5px 0 0 #111, -2.5px 0 0 #111,
        2px 2px 0 #111, 3px 3px 0 #111, 4px 4px 0 #111;
    position: relative;
    z-index: 2;
}

.burguer-word {
    color: #00c240;
    font-size: 1em;
    line-height: 0.85;
    letter-spacing: 0.38em;
    margin-left: 0.25em; 
    text-shadow: 
        1.5px 1.5px 0 #111, -1.5px -1.5px 0 #111, 1.5px -1.5px 0 #111, -1.5px 1.5px 0 #111,
        0 2.5px 0 #111, 0 -2.5px 0 #111, 2.5px 0 0 #111, -2.5px 0 0 #111,
        2px 2px 0 #111, 3px 3px 0 #111, 4px 4px 0 #111;
    position: relative;
    z-index: 2;
}

.logo-a {
    position: relative;
    display: inline-block;
    color: inherit;
}
.logo-star {
    position: absolute;
    color: white;
    font-size: 0.38em;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: none !important;
    z-index: 5;
}
