/* ---------- CSS VARIABLES ---------- */
:root {
  --primary-gold: #d4af37;
  --primary-gold-dark: #b8960c;
  --dark-bg: #0a0a0a;
  --dark-card: #111111;
  --dark-surface: #0f0f0f;
  --text-light: #f5f0e8;
  --text-muted: #cccccc;
  --text-dim: #aaaaaa;
  --border-color: #2a2a2a;
  --whatsapp: #25D366;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 20px 40px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 15px 40px rgba(212, 175, 55, 0.15);
}

/* ---------- RESET & GLOBAL ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

/* ---------- TYPOGRAPHY ---------- */
.section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title span {
  color: var(--primary-gold);
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 15px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 600;
  border-radius: 40px;
  transition: var(--transition);
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.primary-btn {
  background: var(--primary-gold);
  color: var(--dark-bg);
  border-color: var(--primary-gold);
}

.primary-btn:hover {
  background: transparent;
  color: var(--primary-gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.secondary-btn {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.secondary-btn:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: var(--dark-bg);
  transform: translateY(-3px);
}

/* ---------- HEADER / NAVBAR ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 20px;
}

/* Logo Styles */
.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-top {
  color: var(--primary-gold);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 3px;
}

.logo-text h2 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
  letter-spacing: 1px;
}

.logo-text h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--primary-gold);
  margin-top: 4px;
  border-radius: 10px;
  transition: width 0.3s ease;
}

.logo a:hover .logo-text h2::after {
  width: 60px;
}

/* Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--primary-gold);
}

/* Menu Button */
.menu-btn {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--primary-gold);
  background: transparent;
  border: none;
  z-index: 10001;
  padding: 10px;
}

/* ---------- HERO SECTION ---------- */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1s ease;
}

.hero-content h4 {
  font-size: 1.2rem;
  letter-spacing: 4px;
  color: var(--primary-gold);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.1s backwards;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #ddd;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s backwards;
}

.floating-shape {
  position: absolute;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 50%;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

.shape1 {
  width: 250px;
  height: 250px;
  bottom: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape2 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 8%;
  animation-delay: 1s;
}

.shape3 {
  width: 100px;
  height: 100px;
  bottom: 25%;
  right: 15%;
  animation-delay: 2s;
}

/* ---------- ABOUT SECTION ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  border-radius: 20px;
  height: 450px;
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.about-image img:hover {
  transform: scale(1.02);
}

.section-tag {
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  font-weight: 500;
}

.about-content h2 {
  font-size: 2.5rem;
  margin: 15px 0 20px;
  line-height: 1.3;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

/* ---------- FEATURED DISHES ---------- */
.featured {
  background: var(--dark-surface);
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}

.dish-card {
  background: var(--dark-card);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.dish-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-gold);
}

.dish-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: var(--transition);
}

.dish-card:hover img {
  transform: scale(1.05);
}

.dish-info {
  padding: 25px;
}

.dish-info h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.dish-info p {
  color: var(--text-dim);
  margin-bottom: 15px;
  line-height: 1.5;
}

.dish-info span {
  color: var(--primary-gold);
  font-size: 1.3rem;
  font-weight: 700;
}

/* ---------- WHY US ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.why-card {
  background: var(--dark-card);
  padding: 40px 25px;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}

.why-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-gold);
}

.why-card i {
  font-size: 3rem;
  color: var(--primary-gold);
  margin-bottom: 20px;
}

.why-card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.why-card p {
  color: var(--text-dim);
  line-height: 1.5;
}

/* ---------- GALLERY ---------- */
.gallery {
  background: var(--dark-surface);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  transition: var(--transition);
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-gold);
}

/* ---------- STATS SECTION ---------- */
.stats {
  background: linear-gradient(135deg, var(--dark-surface), #1a1a1a);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-box {
  transition: var(--transition);
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-box h2 {
  font-size: 3.2rem;
  color: var(--primary-gold);
  font-weight: 800;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* ---------- TESTIMONIALS ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--dark-card);
  padding: 35px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-gold);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 20px;
  color: #ddd;
  line-height: 1.7;
}

.testimonial-card h4 {
  color: var(--primary-gold);
  font-weight: 600;
}

/* ---------- RESERVATION CTA ---------- */
.reservation {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.reservation h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.reservation p {
  color: #ddd;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* ---------- CONTACT FORM ---------- */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px;
  margin-bottom: 18px;
  background: var(--dark-card);
  color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
  border: none;
}

/* ---------- ALERT MESSAGES ---------- */
.alert-message {
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  font-weight: 500;
  text-align: center;
  animation: fadeInUp 0.5s ease;
}

.success-message {
  background: var(--primary-gold);
  color: var(--dark-bg);
}

.error-message {
  background: #dc2626;
  color: #fff;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #050505;
  padding: 70px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-box h3,
.footer-box h4 {
  color: var(--primary-gold);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-box p {
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-box ul {
  list-style: none;
}

.footer-box ul li {
  margin-bottom: 12px;
}

.footer-box ul li a {
  color: var(--text-dim);
  transition: var(--transition);
}

.footer-box ul li a:hover {
  color: var(--primary-gold);
  padding-left: 5px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: #fff;
  padding: 12px 24px;
  border-radius: 40px;
  font-weight: 600;
  transition: var(--transition);
  margin-top: 10px;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.socials {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.socials a {
  width: 42px;
  height: 42px;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: var(--transition);
}

.socials a:hover {
  background: var(--primary-gold);
  color: var(--dark-bg);
  transform: translateY(-3px);
}

.hours-text {
  text-align: center;
  margin-top: 40px;
  color: var(--text-dim);
}

.copyright {
  text-align: center;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid #222;
  color: #777;
  font-size: 0.9rem;
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-gold);
  border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-gold-dark);
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Fade-in on scroll animation class */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-image img {
    height: 400px;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .reservation h2 {
    font-size: 2.3rem;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 900px) {
  /* Mobile Menu */
  .menu-btn {
    display: block !important;
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 280px;
    height: calc(100vh - 80px);
    background: var(--dark-bg);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
    transition: left 0.4s ease-in-out;
    border-right: 3px solid var(--primary-gold);
    z-index: 9999;
    margin: 0;
    gap: 25px;
  }
  
  .nav-links.active {
    left: 0 !important;
  }
  
  .nav-links li {
    width: 100%;
    text-align: center;
    margin: 0;
  }
  
  .nav-links a {
    display: block;
    padding: 12px 20px;
    font-size: 1.2rem;
  }
  
  .nav-links a::after {
    display: none;
  }
  
  .nav-links a:hover {
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
  }
  
  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
  }
  
  /* Mobile Logo Adjustments */
  .logo img {
    width: 45px;
    height: 45px;
  }
  
  .logo-top {
    font-size: 7px;
    letter-spacing: 1.5px;
  }
  
  .logo-text h2 {
    font-size: 18px;
  }
  
  .logo-text h2::after {
    width: 35px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 200px;
  }
  
  .section {
    padding: 70px 0;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .stats-grid,
  .dish-grid,
  .why-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .reservation h2 {
    font-size: 1.8rem;
  }
  
  .reservation {
    background-attachment: scroll;
  }
  
  .footer-grid {
    text-align: center;
  }
  
  .socials {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content h4 {
    font-size: 1rem;
    letter-spacing: 2px;
  }
  
  .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
  }
  
  .about-content h2 {
    font-size: 1.8rem;
  }
  
  .stat-box h2 {
    font-size: 2.5rem;
  }
  
  .reservation h2 {
    font-size: 1.5rem;
  }
  
  .floating-shape {
    display: none;
  }
  
  /* Small mobile logo */
  .logo img {
    width: 35px;
    height: 35px;
  }
  
  .logo-text h2 {
    font-size: 14px;
  }
  
  .logo-top {
    font-size: 6px;
    letter-spacing: 1px;
  }
  
  .logo a {
    gap: 6px;
  }
}
/* ============================================
   ONLINE ORDERING SYSTEM STYLES
   Covers: Menu, Cart, Checkout, Orders
   ============================================ */

/* ---------- CART SIDEBAR ---------- */
.cart-sidebar {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: #111;
    border-left: 2px solid #d4af37;
    z-index: 1001;
    transition: right 0.4s ease;
    padding: 20px;
    overflow-y: auto;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
    margin-bottom: 20px;
}

.cart-header h3 {
    color: #d4af37;
    font-size: 1.3rem;
}

.close-cart {
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s;
}

.close-cart:hover {
    color: #d4af37;
    transform: rotate(90deg);
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #222;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 500;
    margin-bottom: 3px;
}

.cart-item-price {
    color: #d4af37;
    font-size: 13px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-item-quantity input {
    width: 55px;
    padding: 6px;
    background: #222;
    border: 1px solid #333;
    color: white;
    text-align: center;
    border-radius: 6px;
}

.cart-item-quantity button {
    background: #dc2626;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    cursor: pointer;
    color: white;
    transition: all 0.3s;
}

.cart-item-quantity button:hover {
    background: #ef4444;
    transform: scale(1.05);
}

.cart-total {
    padding: 15px 0;
    border-top: 2px solid #d4af37;
    margin-top: 20px;
}

.cart-total h4 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.checkout-btn {
    width: 100%;
    padding: 14px;
    background: #d4af37;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s;
    font-size: 16px;
}

.checkout-btn:hover {
    background: #b8960c;
    transform: translateY(-2px);
}

/* ---------- CART ICON ---------- */
.cart-icon {
    position: relative;
    cursor: pointer;
    margin-left: 20px;
}

.cart-icon i {
    font-size: 24px;
    color: #d4af37;
    transition: all 0.3s;
}

.cart-icon:hover i {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #d4af37;
    color: #000;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* ---------- ADD TO CART BUTTON ---------- */
.add-to-cart-btn {
    background: #d4af37;
    color: #000;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    width: 100%;
    margin-top: 12px;
}

.add-to-cart-btn:hover {
    background: #b8960c;
    transform: translateY(-2px);
}

/* ---------- CART OVERLAY ---------- */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: none;
}

.cart-overlay.active {
    display: block;
}

/* ---------- TOAST MESSAGE ---------- */
.toast-message {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #10b981;
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    z-index: 1002;
    animation: slideIn 0.3s ease;
    display: none;
    font-weight: 500;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ---------- CHECKOUT PAGE STYLES ---------- */
.checkout-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.order-summary {
    background: #111;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #2a2a2a;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.checkout-form {
    background: #111;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #2a2a2a;
}

.checkout-form .form-group {
    margin-bottom: 20px;
}

.checkout-form .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #d4af37;
    font-weight: 500;
}

.checkout-form .form-group input,
.checkout-form .form-group select,
.checkout-form .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: #222;
    border: 1px solid #333;
    border-radius: 10px;
    color: white;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
}

.checkout-form .form-group input:focus,
.checkout-form .form-group select:focus,
.checkout-form .form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #222;
}

.order-total {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid #d4af37;
}

.order-total h4 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.place-order-btn {
    width: 100%;
    padding: 14px;
    background: #d4af37;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s;
}

.place-order-btn:hover {
    background: #b8960c;
    transform: translateY(-2px);
}

.alert-success {
    background: #10b981;
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.alert-error {
    background: #dc2626;
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.back-to-menu {
    display: inline-block;
    margin-top: 15px;
    color: #d4af37;
    text-decoration: none;
}

/* ---------- ADMIN ORDERS PAGE STYLES ---------- */
.status-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending { background: rgba(245, 158, 11, 0.2); color: #f59e0b; }
.status-confirmed { background: rgba(16, 185, 129, 0.2); color: #10b981; }
.status-preparing { background: rgba(59, 130, 246, 0.2); color: #3b82f6; }
.status-delivered { background: rgba(16, 185, 129, 0.2); color: #10b981; }
.status-cancelled { background: rgba(239, 68, 68, 0.2); color: #ef4444; }

.order-details {
    cursor: pointer;
    color: #d4af37;
}

.order-details:hover {
    text-decoration: underline;
}

/* Modal for order details */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #111;
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    border: 1px solid #d4af37;
}

.close-modal {
    float: right;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s;
}

.close-modal:hover {
    color: #d4af37;
}

/* ---------- RESPONSIVE FOR CHECKOUT/CART ---------- */
@media (max-width: 768px) {
    .checkout-container {
        grid-template-columns: 1fr;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .order-summary {
        position: static;
    }
    
    .toast-message {
        bottom: 20px;
        right: 20px;
        left: 20px;
        text-align: center;
    }
}

/* ---------- CATEGORY TITLES ---------- */
.category-wrapper {
    text-align: center;
}

.category-title {
    display: inline-block;
    margin: 40px 0 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #d4af37;
    font-size: 1.8rem;
}

/* ---------- DISH GRID ---------- */
.dish-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}