/* ==========================================
   AKS FAST FOOD - Professional Website CSS
   Modern, Premium Fast Food Design
   ========================================== */

/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand Colors */
  --primary-red: #E41E26;
  --dark-red: #B71C1C;
  --accent-yellow: #FFC107;
  --dark-bg: #1A1A1A;
  --darker-bg: #0D0D0D;
  --light-bg: #F5F5F5;
  --white: #FFFFFF;
  --text-dark: #212121;
  --text-light: #757575;
  --border-color: #E0E0E0;
  
  /* Spacing */
  --container-width: 1200px;
  --section-padding: 80px 20px;
  --card-radius: 12px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
  
  /* Transitions */
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}


/* === NAVIGATION === */
.navbar {
  background: var(--dark-bg);
  color: var(--white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.logo-icon {
  font-size: 1.8rem;
}

.logo-text {
  color: var(--primary-red);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover {
  background: var(--primary-red);
  color: var(--white);
}

.nav-phone {
  background: var(--primary-red);
  padding: 8px 16px !important;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem !important;
}

.nav-phone:hover {
  background: var(--dark-red);
  transform: none;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}


/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--primary-red);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--dark-red);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--dark-bg);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--darker-bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: var(--accent-yellow);
  color: var(--dark-bg);
  box-shadow: var(--shadow-sm);
}

.btn-accent:hover {
  background: #FFB300;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-light {
  background: var(--white);
  color: var(--primary-red);
  border: 2px solid var(--white);
}

.btn-light:hover {
  background: transparent;
  color: var(--white);
}

.btn-full {
  width: 100%;
}


/* === HERO SECTION === */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  color: var(--white);
  padding: 120px 20px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(228, 30, 38, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent-yellow);
  margin-bottom: 20px;
}

.hero-text {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}


/* === FEATURES SECTION === */
.features {
  padding: var(--section-padding);
  background: var(--white);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: var(--text-dark);
}

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

.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--card-radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid var(--border-color);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-red);
}

.feature-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.7;
}


/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}


/* === PAGE HEADER === */
.page-header {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
  color: var(--white);
  padding: 80px 20px 60px;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.page-header p {
  font-size: 1.3rem;
  opacity: 0.9;
}

.about-header,
.deals-header {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
}


/* === MENU PAGE === */
.menu-section {
  padding: var(--section-padding);
  background: var(--light-bg);
}

.menu-category {
  margin-bottom: 60px;
  background: var(--white);
  padding: 40px;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-sm);
}

.category-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--primary-red);
  border-bottom: 3px solid var(--primary-red);
  padding-bottom: 10px;
}

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

.menu-item {
  background: var(--light-bg);
  padding: 25px;
  border-radius: 10px;
  transition: var(--transition);
  border: 2px solid transparent;
}

.menu-item:hover {
  border-color: var(--primary-red);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.menu-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.menu-item p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

.menu-cta {
  background: var(--dark-bg);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}

.menu-cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.menu-cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}


/* === DEALS PAGE === */
.deals-section {
  padding: var(--section-padding);
  background: var(--light-bg);
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.deal-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border: 2px solid var(--border-color);
}

.deal-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-red);
}

.deal-card.featured {
  border: 3px solid var(--primary-red);
  background: linear-gradient(135deg, #FFF 0%, #FFF8F8 100%);
}

.deal-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-yellow);
  color: var(--dark-bg);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.deal-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.deal-description {
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.7;
}

.deal-savings {
  color: var(--primary-red);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.deals-note {
  background: var(--white);
  padding: 30px;
  border-radius: var(--card-radius);
  border-left: 5px solid var(--primary-red);
}

.deals-note p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.8;
}


/* === RESERVATION PAGE === */
.reservation-section {
  padding: var(--section-padding);
  background: var(--light-bg);
}

.reservation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.reservation-info h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.reservation-info h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--primary-red);
}

.reservation-info p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 15px;
}

.benefits-list {
  list-style: none;
  margin: 20px 0;
}

.benefits-list li {
  padding: 10px 0;
  color: var(--text-light);
  font-size: 1.05rem;
}

.contact-detail {
  font-size: 1.05rem;
  margin: 10px 0;
}

.contact-detail a {
  color: var(--primary-red);
  font-weight: 600;
}

.contact-detail a:hover {
  text-decoration: underline;
}

.reservation-form-container {
  background: var(--white);
  padding: 40px;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-md);
}

.reservation-form-container h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.reservation-form .form-group {
  margin-bottom: 25px;
}

.reservation-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(228, 30, 38, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-note {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 20px;
  text-align: center;
  line-height: 1.6;
}


/* === ABOUT PAGE === */
.about-section {
  padding: var(--section-padding);
  background: var(--white);
}

.about-story,
.about-values,
.about-difference,
.about-location {
  margin-bottom: 60px;
}

.about-story h2,
.about-values h2,
.about-difference h2,
.about-location h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--text-dark);
}

.about-story p,
.about-difference p,
.about-location p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 20px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.value-card {
  background: var(--light-bg);
  padding: 30px;
  border-radius: var(--card-radius);
  border-left: 5px solid var(--primary-red);
  transition: var(--transition);
}

.value-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.value-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.value-card p {
  color: var(--text-light);
  line-height: 1.7;
}

.difference-list {
  list-style: none;
  margin: 30px 0;
}

.difference-list li {
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.05rem;
}

.difference-list li:last-child {
  border-bottom: none;
}

.difference-list strong {
  color: var(--primary-red);
  font-weight: 600;
}

.contact-info-box {
  background: var(--light-bg);
  padding: 30px;
  border-radius: var(--card-radius);
  border-left: 5px solid var(--primary-red);
  margin: 30px 0;
}

.contact-info-box p {
  margin: 10px 0;
  font-size: 1.05rem;
}

.contact-info-box a {
  color: var(--primary-red);
  font-weight: 600;
}

.contact-info-box a:hover {
  text-decoration: underline;
}

.about-cta {
  background: var(--light-bg);
  padding: 50px 40px;
  border-radius: var(--card-radius);
  text-align: center;
}

.about-cta h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}


/* === PRIVACY POLICY PAGE === */
.privacy-section {
  padding: var(--section-padding);
  background: var(--white);
}

.privacy-content {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-intro {
  background: var(--light-bg);
  padding: 30px;
  border-radius: var(--card-radius);
  margin-bottom: 40px;
  border-left: 5px solid var(--primary-red);
}

.privacy-intro p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
}

.privacy-section-block {
  margin-bottom: 45px;
}

.privacy-section-block h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.privacy-section-block h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 25px 0 15px;
  color: var(--primary-red);
}

.privacy-section-block p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 15px;
}

.privacy-section-block ul {
  margin: 20px 0 20px 25px;
  color: var(--text-light);
}

.privacy-section-block ul li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.privacy-section-block strong {
  color: var(--text-dark);
  font-weight: 600;
}

.privacy-section-block a {
  color: var(--primary-red);
  font-weight: 600;
}

.privacy-section-block a:hover {
  text-decoration: underline;
}

.contact-box {
  background: var(--light-bg);
  padding: 25px;
  border-radius: var(--card-radius);
  margin: 20px 0;
  border-left: 5px solid var(--primary-red);
}

.contact-box p {
  margin: 8px 0;
}

.privacy-footer {
  background: var(--light-bg);
  padding: 25px;
  border-radius: var(--card-radius);
  margin-top: 40px;
  text-align: center;
}

.privacy-footer p {
  font-size: 0.95rem;
  color: var(--text-light);
  font-style: italic;
}


/* === FOOTER === */
.footer {
  background: var(--dark-bg);
  color: var(--white);
  padding: 60px 20px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--accent-yellow);
}

.footer-col h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--white);
}

.footer-col p {
  margin-bottom: 12px;
  line-height: 1.7;
  opacity: 0.9;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--accent-yellow);
  padding-left: 5px;
}

.footer-social {
  margin-top: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  text-align: center;
}

.footer-bottom p {
  margin: 8px 0;
  opacity: 0.8;
  font-size: 0.95rem;
}

.footer-bottom a {
  color: var(--accent-yellow);
  font-weight: 500;
}

.footer-bottom a:hover {
  text-decoration: underline;
}


/* === RESPONSIVE DESIGN === */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 70px);
    background: var(--dark-bg);
    flex-direction: column;
    padding: 30px 20px;
    gap: 10px;
    transition: right 0.4s ease;
    box-shadow: var(--shadow-lg);
    align-items: flex-start;
  }

  .nav-links.active {
    right: 0;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.4rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .reservation-content {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.2rem;
  }

  .page-header p {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .deals-grid {
    grid-template-columns: 1fr;
  }

  .menu-category {
    padding: 25px;
  }

  .reservation-form-container {
    padding: 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.2rem;
  }

  .logo-icon {
    font-size: 1.5rem;
  }

  .hero {
    padding: 80px 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .feature-card,
  .deal-card {
    padding: 25px 20px;
  }
}


/* === SUCCESS MESSAGE === */
.success-message {
  background: #4CAF50;
  color: white;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  text-align: center;
  display: none;
}

.success-message.show {
  display: block;
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* === LOADING SPINNER === */
.spinner {
  border: 3px solid rgba(255,255,255,0.3);
  border-top: 3px solid white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 0.8s linear infinite;
  display: inline-block;
  margin-left: 10px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* === ACCESSIBILITY === */
:focus {
  outline: 3px solid var(--accent-yellow);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}


/* === PRINT STYLES === */
@media print {
  .navbar,
  .footer,
  .btn,
  .cta-section {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}

/* === CART BUTTON IN NAVIGATION === */
.nav-cart {
  background: var(--accent-yellow) !important;
  color: var(--dark-bg) !important;
  font-weight: 700 !important;
  padding: 8px 16px !important;
  border-radius: 25px !important;
  font-size: 0.9rem !important;
}

.nav-cart:hover {
  background: #FFB300 !important;
  transform: none !important;
}

#cart-count {
  background: var(--primary-red);
  color: white;
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  min-width: 20px;
  display: inline-block;
  text-align: center;
}


/* === MENU ITEM CARDS WITH IMAGES === */
.menu-section-new {
  padding: var(--section-padding);
  background: var(--light-bg);
}

.menu-category-new {
  margin-bottom: 60px;
  background: var(--white);
  padding: 40px;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-sm);
}

.menu-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.menu-item-card {
  background: var(--white);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.menu-item-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-red);
}

.menu-item-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.menu-item-card:hover .menu-item-image img {
  transform: scale(1.1);
}

.menu-item-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.menu-item-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.menu-item-content p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 15px;
  flex-grow: 1;
}

.menu-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}

.menu-item-footer .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-red);
}

.btn-add-to-cart {
  background: var(--primary-red);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
}

.btn-add-to-cart:hover {
  background: var(--dark-red);
  transform: scale(1.05);
}

.btn-add-to-cart:active {
  transform: scale(0.95);
}


/* === DEALS CARDS WITH IMAGES === */
.deals-section-new {
  padding: var(--section-padding);
  background: var(--light-bg);
}

.deals-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.deal-card-new {
  background: var(--white);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border: 2px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.deal-card-new:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-red);
}

.deal-card-new .deal-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
}

.deal-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.deal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.deal-card-new:hover .deal-image img {
  transform: scale(1.1);
}

.deal-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.deal-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.deal-content .deal-description {
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.7;
}

.deal-items-list {
  list-style: none;
  margin: 15px 0;
  padding: 0;
}

.deal-items-list li {
  padding: 5px 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

.deal-pricing {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
}

.original-price {
  font-size: 1.2rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.deal-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-red);
}

.deal-discount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-yellow);
  background: var(--dark-bg);
  padding: 5px 15px;
  border-radius: 20px;
}


/* === CHECKOUT PAGE === */
.checkout-section {
  padding: var(--section-padding);
  background: var(--light-bg);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.order-summary-section {
  background: var(--white);
  padding: 30px;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}

.order-summary-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--text-dark);
}

.empty-cart-message {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-light);
  font-size: 1.1rem;
}

.empty-cart-message a {
  color: var(--primary-red);
  font-weight: 600;
  text-decoration: underline;
}

.cart-item {
  display: flex;
  gap: 15px;
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  background: var(--light-bg);
}

.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.cart-item-details h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.cart-item-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-red);
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.qty-btn {
  background: var(--primary-red);
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.qty-btn:hover {
  background: var(--dark-red);
}

.qty-display {
  font-weight: 600;
  min-width: 30px;
  text-align: center;
}

.remove-item-btn {
  background: #f44336;
  color: white;
  border: none;
  padding: 5px 12px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.85rem;
  margin-top: 8px;
  transition: var(--transition);
}

.remove-item-btn:hover {
  background: #d32f2f;
}

#cart-totals {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 2px solid var(--border-color);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 1.1rem;
}

.cart-total-row.total {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-red);
  padding-top: 15px;
  border-top: 2px solid var(--border-color);
  margin-top: 10px;
}


/* === CHECKOUT FORM - MODERN PROFESSIONAL DESIGN === */
.checkout-form-section {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  padding: 45px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(228, 30, 38, 0.1);
  position: relative;
  overflow: hidden;
}

.checkout-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red) 0%, var(--accent-yellow) 100%);
}

.checkout-form-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 35px;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 15px;
}

.checkout-form-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary-red);
  border-radius: 2px;
}

.checkout-form .form-group {
  margin-bottom: 28px;
  position: relative;
}

.checkout-form .form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.checkout-form input[type="text"],
.checkout-form input[type="tel"],
.checkout-form input[type="email"],
.checkout-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  font-family: inherit;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
  outline: none;
  border-color: var(--primary-red);
  box-shadow: 0 0 0 4px rgba(228, 30, 38, 0.1);
  transform: translateY(-2px);
}

.checkout-form textarea {
  resize: vertical;
  min-height: 100px;
}

.payment-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 12px;
}

.payment-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
  position: relative;
}

.payment-option:hover {
  border-color: var(--primary-red);
  background: rgba(228, 30, 38, 0.03);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(228, 30, 38, 0.15);
}

.payment-option input[type="radio"] {
  width: 22px;
  height: 22px;
  cursor: pointer;
  accent-color: var(--primary-red);
}

.payment-option input[type="radio"]:checked + span {
  color: var(--primary-red);
  font-weight: 700;
}

.payment-option span {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.checkout-note {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 25px;
  text-align: center;
  line-height: 1.8;
  padding: 15px;
  background: rgba(255, 193, 7, 0.08);
  border-radius: 8px;
  border-left: 4px solid var(--accent-yellow);
}

.checkout-form .btn-primary {
  width: 100%;
  padding: 18px;
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 15px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(228, 30, 38, 0.3);
  transition: all 0.3s ease;
}

.checkout-form .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(228, 30, 38, 0.4);
}


/* === RESPONSIVE FOR NEW ELEMENTS === */
@media (max-width: 992px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .order-summary-section {
    position: static;
  }

  .menu-grid-new {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .deals-grid-new {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .menu-grid-new {
    grid-template-columns: 1fr;
  }

  .deals-grid-new {
    grid-template-columns: 1fr;
  }

  .cart-item {
    flex-direction: column;
  }

  .cart-item-image {
    width: 100%;
    height: 150px;
  }
}

@media (max-width: 480px) {
  .checkout-form-section,
  .order-summary-section {
    padding: 25px 20px;
  }

  .checkout-form-section h2 {
    font-size: 1.8rem;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }

  .menu-item-content h3,
  .deal-content h3 {
    font-size: 1.1rem;
  }
}


/* === ADDED TO CART ANIMATION === */
@keyframes addedToCart {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.btn-add-to-cart.added {
  animation: addedToCart 0.5s ease;
  background: #4CAF50 !important;
}

.btn-add-to-cart.added::after {
  content: ' ✓';
}
