/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

/* ======= HEADER ======= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  transition: all 0.4s ease;
  z-index: 1000;
  background: transparent;
}

header.scrolled {
  background: #fdb827;
  padding: 12px 50px;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.navlogo {
  width: 180px;
  transition: all 0.3s ease;
}

header.scrolled .navlogo {
  width: 120px;
}

nav {
  flex: 1;
  text-align: center;
}

nav ul {
  list-style: none;
  display: inline-flex;
  gap: 30px;
  align-items: center;
}

nav ul li a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  transition: color 0.3s;
}

.order-btn {
  background: #d32f2f;
  color: #fff;
  padding: 10px 25px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.order-btn:hover {
  background: #b71c1c;
}

/* ======= TOGGLE BUTTON ======= */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #000;
  transition: all 0.3s ease;
  z-index: 1100;

}

/* ======= RESPONSIVE NAV ======= */
@media (max-width: 992px) {
  header {
    height: 60px;
    padding: 15px 25px;
  }

  /* Hide desktop nav by default */
  nav ul {
    z-index: 99999;
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 25px;
    width: 230px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 15px 0;
    text-align: center;
    animation: fadeIn 0.3s ease forwards;
  }

  /* Show menu when nav is active */
  nav.active ul {
    display: flex;
  }

  /* Show toggle icon */
  .menu-toggle {
    display: block;
  }

  nav ul li {
    padding: 10px 0;
    width: 100%;
  }

  nav ul li a {
    color: #000;
    width: 100%;
    display: block;
  }

  /* Order button inside dropdown */
  .order-btn {
    width: 80%;
    margin: 10px auto;
    font-size: 0.9rem;
  }
}

/* Small screens */
@media (max-width: 480px) {
  .navlogo {
    width: 140px;
  }

  nav ul {
    width: 180px;
    right: 15px;
  }

  .menu-toggle {
    font-size: 25px;
    right: 0;
  }
}

/* Animation for dropdown */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.footer-section {
    background-color: #000000; /* Main footer background color (dark green) */
    position: relative;
    color: #E0E0E0; /* Light text color for contrast */
    padding-top: 100px; /* Space for the wave to overlap from the top */
    padding-bottom: 30px; /* Space for the bottom text */
    overflow: hidden; /* Important for containing the wave background */
}


.footer-content-wrapper {
    position: relative;
    z-index: 2; /* Ensure content is above the wave */
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    gap: 40px; /* Space between columns */
}

.footer-left,
.footer-middle,
.footer-right {
    flex: 1; /* Allow columns to grow and shrink */
    min-width: 280px; /* Minimum width for each column before wrapping */
}

/* Footer Left - Contact Info */
.footer-left {
    text-align: left;
    line-height: 1.6;
}

.footer-left .get-in-touch {
    color: #AAD9BB; /* Lighter green for "Get In Touch" */
    font-size: 0.9em;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-left .get-in-touch .fas {
    color: #AAD9BB; /* Lighter green for the heart icon */
}

.footer-left .contact-info-title {
    color: #F8F8F8; /* White/light gray for the title */
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-left p {
    margin-bottom: 8px;
    font-size: 0.95em;
}

.footer-left .contact-text {
    font-style: italic;
    font-size: 0.85em;
    margin-bottom: 20px;
}

.footer-left .phone-number,
.footer-left .email-address,
.footer-left .location {
    font-weight: 500;
}

/* Footer Middle - Navigation Links */
.footer-middle {
    display: flex;
    justify-content: space-around; /* Distribute link columns */
    gap: 20px;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 10px;
}

.footer-nav-list a {
    color: #E0E0E0;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px; /* Space between icon and text */
}

.footer-nav-list a:hover {
    color: #AAD9BB; /* Lighter green on hover */
}

.footer-nav-list a .fas {
    color: #AAD9BB; /* Lighter green for dot icons */
    font-size: 0.7em;
}

.footer-right {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 90px;
}

.map-placeholder {
    width: 250px;      /* Circle width */
    height: 250px;     /* Circle height */
    border-radius: 10%; /* Makes container circular */
    overflow: hidden;  /* Clips the iframe inside circle */
    border: 5px solid #AAD9BB;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    background-color: #ccc; /* Optional fallback */
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    display: block;
}


/* Footer Bottom - Copyright and Policy */
.footer-bottom {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Subtle separator */
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
    margin: 5px 0;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .footer-content-wrapper {
        flex-direction: column; /* Stack columns vertically */
        align-items: center;
        text-align: center; /* Center text for stacked columns */
    }

    .footer-left,
    .footer-middle,
    .footer-right {
        min-width: unset; /* Remove min-width to allow full width */
        width: 100%;
        margin-bottom: 30px; /* Add space between stacked sections */
    }

    .footer-left {
        text-align: center;
    }

    .footer-left .get-in-touch {
        justify-content: center;
    }

    .footer-middle {
        flex-direction: row; /* Keep nav lists side-by-side if space allows */
        justify-content: center;
    }

    .footer-nav-list {
        margin: 0 15px; /* Add some margin between the two nav lists */
    }

    .footer-right {
        margin-bottom: 0; /* No extra margin for the last section */
    }
}

@media (max-width: 600px) {
    .footer-middle {
        flex-direction: column; /* Stack nav lists on very small screens */
        align-items: center;
    }
    .footer-nav-list {
        margin: 0 0 20px 0; /* Space out stacked lists */
    }
}


h1 {
    color: #c0392b;
    font-weight: 700;
    line-height: 2;
    margin-bottom: 0;
    position: relative;
    text-transform: capitalize;
       padding-top: 100px;
text-align: center;
    
}
h1::before {
    background: #c0392b;
    width: 70px;
    height: 2px;
    position: absolute;
    content: '';
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
}
h1::after {
    position: absolute;
    content: '';
    background: #fbc531;
    width: 30px;
    height: 2px;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Section One */
.sectionone {
  margin: auto;
  font-family: Arial, sans-serif;

  /* 🔹 Background Image Settings */
  /* background-image: url("images/wooden1.png"); 
  background-size: cover;      
  background-position: center;  
  background-repeat: no-repeat; 
  background-attachment: fixed;  */

  /* Optional overlay for readability */
  position: relative;
  background-color: #e6a13947;
}




.menu-section {
  max-width: 1400px;
  margin: auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.menu-container {
  padding-top: 50px;
  display: flex;
  gap: 20px;
}

/* LEFT SIDE */
.menu-left {
  flex: 2;
}

/* ===== FIXED CATEGORY BAR ===== */
.menu-categories {
  position: sticky;
  top: 75px;                   /* Adjust to match your header height */
  z-index: 900; /* ✅ lower than header */
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  padding: 10px 10px;
  border-radius: 30px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* When scrolled, background and subtle shadow appear */
.menu-categories.scrolled {
  background-color: #e6a13947;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px); /* optional for nice glass look */
}

.menu-categories .category {
  padding: 8px 15px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  background: #f5f5f5;
  transition: all 0.2s ease;
}

.menu-categories .category:hover {
  background: #ffb3b3;
}

.menu-categories .category.active {
  background: #ff4d4d;
  color: white;
}


/* Layout */
.menu-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* exactly 3 cards per row */
  gap: 40px;
  padding: 20px;
  justify-items: center; /* centers cards inside grid cells */
}

/* Card container */
.menu-card {
  position: relative;
  width: 350px;
  height: 200px;
  background: #ffffffa9;
  border-radius: 90px 15px 15px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: background 0.3s ease;
  overflow: visible;
}

/* Inner layout */
.menu-content {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
}

/* Image outside box bottom-left */
.menu-card img {
  position: absolute;
  left: -40px;
  bottom: -5px;
  width: 180px;
  height: auto;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.15));
}

/* Text area */
.menu-text {
  margin-left: 110px;
  padding: 18px 20px;
  transition: color 0.3s ease;
}

/* Title */
.menu-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ff7b00;
  margin-bottom: 6px;
}

/* Description */
.menu-text p {
  font-size: 0.75rem;
  color: #999;
  line-height: 1.3;
  margin-bottom: 8px;
  font-weight: 500;
}

/* Price */
.menu-text .price {
  font-weight: 700;
  color: #e63946;
  font-size: 1.1rem;
  transition: opacity 0.3s ease;
}

/* Order Now button (hidden by default) */
.menu-text .add-btn {
  display: none;
  background: #ff7b00;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 15px 28px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.menu-text .add-btn:hover {
  background: #ffa63b;
}

/* Hover Effect */
.menu-card:hover {
  background: #e63946;
}

.menu-card:hover h3,
.menu-card:hover p {
  color: #fff;
}

.menu-card:hover .price {
  display: none;
}

.menu-card:hover .add-btn {
  display: inline-block;
}
/* Size selector styling */
.size-select {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.size-select label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #444;
}

.size-select select {
  font-size: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 3px 6px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.size-select select:hover {
  border-color: #ff7b00;
}

/* ===============================
   🛒 CART BELOW MENU (Aligned Layout)
   =============================== */

.cart {
  width: 90%;
  max-width: 800px;
  margin: 60px auto 40px auto; /* centers cart below menu */
  border-radius: 15px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  padding: 25px 30px;
  position: relative;
  z-index: 5;
  text-align: left;
  transition: all 0.3s ease;
}

/* Cart header */
.cart h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e63946;
  margin-bottom: 15px;
  text-align: center;
}

/* List styling */
.cart ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cart li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #f9f9f9;
  border-radius: 8px;
  padding: 10px 15px;
  margin-bottom: 10px;
  border: 1px solid rgba(0,0,0,0.05);
}

/* Item text */
.cart-item-content div {
  color: #222;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Remove button */
.remove-btn {
  background: #e63946;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.3s;
}

.remove-btn:hover {
  background: #c62828;
}

/* Buy Now Button */
#buyNow {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

#buyNow:hover {
  background: #218838;
}
/* 🌮 Tacos card layout */
#taccoss {
  margin-top: 30px;
  width: 1000px; /* wider */
  min-height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 25px;
  padding: 20px;
}

#taccoss .menu-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-left: 150px;
}

/* 🧩 Viande + Suppléments side-by-side */
.options-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  margin-top: 15px;
}
.meat-box{
  margin-left: -280px;
}
/* 🥩 Viande box and 🧀 Suppléments box */
.meat-box,
.supplements-box {
  margin-top: 30px;
  flex: 1;
  min-width: 50%;
  border: 1px solid #333333c8;
  border-radius: 12px;
  padding: 12px 15px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

/* Headings */
.meat-box h4,
.supplements-box h4 {
  color: #000;
  font-size: 1rem;
  margin-bottom: 10px;
}

/* Lists */
.meat-list,
.supplement-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.meat-list label,
.supplement-list label {
  width: 45%;
  font-size: 0.9rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.meat-list input[type="checkbox"],
.supplement-list input[type="checkbox"] {
  accent-color: #ff7a59;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* Hover (inside red card) */
.menu-card:hover .meat-list label,
.menu-card:hover .supplement-list label {
  color: white;
}

/* 🧩 Responsive Fix (stack on smaller screens) */
@media (max-width: 767px) {
  #taccoss {
    width: 100%;
    height: auto;
    padding: 15px;
    text-align: left;
  }

  .options-row {
    flex-direction: column;
    gap: 15px;
  }
.meat-box{
  margin-left: 0px;
}
  .meat-box,
  .supplements-box {
    width: 100%;
  }

  .meat-list label,
  .supplement-list label {
    width: 80%;
  }
}
/* ===============================
   📱 MOBILE FIX — Taille alignment
   =============================== */

/* General alignment */
.size-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: nowrap;
}

/* Ensure label doesn’t break line */
.size-row label {
  white-space: nowrap;
  font-weight: 600;
  color: #555;
  font-size: 0.85rem;
}

/* Make the select responsive but inline */
.size-row .size-select {
  flex: 1;
  min-width: 130px;
  max-width: 200px;
  padding: 5px 8px;
  font-size: 0.85rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #fff;
}

/* ✅ Mobile optimization */
@media (max-width: 767px) {
  .size-row {
    display: flex;
    align-items: center;
    justify-content: center; /* centers horizontally */
    gap: 10px;
  }

  .size-row label {
    font-size: 0.9rem;
  }

  .size-row .size-select {
    width: auto;
    flex: 0 1 60%;
    font-size: 0.9rem;
  }
}


.menu-option {
  margin-right: 5px;
  cursor: pointer;
  accent-color: #ff7a59; /* checkbox color */
}
/* ===============================
   🧩 FIX — Checkbox Click Area (Keeps Old Look)
   =============================== */

/* Make the entire label clickable */
.menu-text label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;              /* ✅ cursor appears everywhere */
  user-select: none;
  color: #555;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 10px;
  z-index: 5;                   /* ✅ ensure it’s above image or background */
  pointer-events: all;          /* ✅ fixes blocking by overlaying elements */
}

/* Checkbox input (keep original look) */
.menu-option {
  appearance: auto;             /* ✅ keeps browser default box style */
  margin-right: 5px;
  cursor: pointer;
  accent-color: #ff7a59;        /* ✅ your original orange-red color */
  width: 16px;
  height: 16px;
  position: relative;
  z-index: 5;
}

/* Hover state (keep old hover color behavior) */
.menu-card:hover .menu-text label {
  color: white;
}



/* =========================
   🔹 RESPONSIVE DESIGN FIXES
   ========================= */

/* --- Base: ensure flexible scaling --- */
body {
  overflow-x: hidden;
}

/* --- Large Screens (Default) --- */
@media (min-width: 1200px) {
  .menu-section {
    max-width: 1400px;
    padding: 20px 40px;
  }
  .menu-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- Medium Screens / Laptops (1024px – 1199px) --- */
@media (max-width: 1199px) {
  .menu-container {
    flex-direction: row;
    gap: 15px;
  }

  .menu-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 15px;
  }

  .cart {
    max-width: 300px;
    top: 15px;
  }

  .menu-card {
    width: 270px;
    height: 160px;
  }

  .menu-card img {
    width: 150px;
    left: -35px;
  }
}

/* --- Tablets (768px – 1023px) --- */
@media (max-width: 1023px) {

  .menu-container {
    flex-direction: column;
  }

  .cart {
    position: relative;
    margin: 20px auto;
    width: 90%;
    max-width: 500px;
    top: 0;
  }

  .menu-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    justify-items: center;
  }

  .menu-card {
    width: 90%;
    height: auto;
    border-radius: 30px;
  }

  .menu-card img {
    position: relative;
    left: 0;
    width: 160px;
    margin: 0 auto;
    display: block;
  }

  .menu-text {
    margin-left: 0;
    padding: 15px;
    text-align: center;
  }

  .menu-text .add-btn {
    display: inline-block;
    padding: 10px 20px;
  }

  .menu-categories {
    position: sticky;
    top: 70px;
    justify-content: center;
  }

}

/* --- Small Tablets / Large Phones (600px – 767px) --- */
@media (max-width: 767px) {

  .menu-container {
    flex-direction: column;
    gap: 10px;
  }

  .menu-list {
    grid-template-columns: 1fr; /* Single column */
    gap: 20px;
    padding: 10px;
  }

  .menu-card {
    width: 100%;
    height: auto;
    border-radius: 20px;
  }

  .menu-card img {
    width: 130px;
    position: static;
    margin: 0 auto;
  }

  .menu-text {
    margin: 0;
    text-align: center;
  }

  .menu-categories {
    flex-wrap: wrap;
    justify-content: center;
    padding: 8px;
    top: 65px;
  }

  .cart {
    position: relative;
    width: 100%;
    margin: 20px auto 0;
    top: 0;
  }

  #buyNow {
    padding: 12px;
    font-size: 1rem;
  }
}

/* --- Small Phones (max 480px) --- */
@media (max-width: 480px) {


  .menu-list {
    grid-template-columns: 1fr;
    padding: 8px;
    gap: 15px;
  }

  .menu-card {
    width: 100%;
    border-radius: 15px;
    margin-right: 10px;
  }

  .menu-card img {
    width: 120px;
    margin-right: -20px;
  }

  .menu-text h3 {
    font-size: 1rem;
  }

  .menu-text p,
  .menu-text label,
  .menu-text .price {
    font-size: 0.9rem;
  }

  .menu-categories {
    top: 60px;
    gap: 6px;
    padding: 6px;
  }

  .menu-categories .category {
    font-size: 0.75rem;
    padding: 6px 10px;
  }

  .cart {
    width: 95%;
    margin: 20px auto;
    border-radius: 10px;
  }

  #buyNow {
    font-size: 0.9rem;
  }
}




/* ========= IMAGE SIZE STYLES (Desktop Defaults) ========= */
#one {
  width: 185px;
}

#three {
  width: 215px;
  margin-bottom: -15px;
  margin-left: -15px;
}

#tacosse {
  margin-bottom: 190px;
  width: 340px;
}

#oo {
  margin-left: 30px;
}

#pp {
  margin-left: 6px;
}

/* ========= RESPONSIVE FIXES (Mobile & Tablets) ========= */
@media (max-width: 767px) {
  /* Reset or adjust for better mobile fit */
  #one,
  #three,
  #tacosse {
    width: 120px;
  }
  /* Optional: hide desktop-only elements entirely */
  #oo,
  #pp {
   margin: auto;
  }
}
/* ================================
   🔹 Responsive Fix for Tacos Card
   ================================ */



/* ✅ Mobile Fixes */
@media (max-width: 767px) {
  #tacosse {
    width: 200px;           /* smaller image for mobile */
    margin: 0 auto;         /* center image */
    display: block;
    position: relative;     /* keeps it aligned within card */
    bottom: 0;              /* remove offset positioning */
  }

  /* Ensure the tacos card (#taccoss) adapts properly */
  #taccoss {
    width: 100%;
    margin-top: 20px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    text-align: center;
  }

  /* Keep text centered and spacing correct */
  #taccoss .menu-content {
    flex-direction: column;
    padding: 10px;
    align-items: center;
  }

  #taccoss .menu-text {
    margin-left: 0;
    text-align: center;
  }

  /* Adjust button and price for better spacing */
  #taccoss .menu-text .add-btn {
    display: inline-block;
    margin-top: 10px;
  }

  /* Optional: shrink image slightly on very small screens */
  @media (max-width: 480px) {
    #tacosse {
      width: 150px;
    }
    
.supplements-box {
  margin-top: 12px;
  border-radius: 10px;
  width: 90%;
  margin-left: 0px;
}
.supplement-list label{
  width: 80%;
  left: 10px;
}


/* ✅ FIX: Make supplements clickable inside tacos card */
#taccoss {
  position: relative;
  overflow: visible;
  z-index: 5;
}

#taccoss img {
  z-index: 1;
}

#taccoss .supplements-box {
  position: relative;
  z-index: 5;
  pointer-events: all;
}
#taccoss .menu-content {
  overflow: visible;
}

/* 🔹 Disable hover red effect on mobile */
@media (max-width: 768px) {
  .menu-card:hover {
    background: #ffffffa9 !important;
  }

  .menu-card:hover h3,
  .menu-card:hover p,
  .menu-card:hover label {
    color: #000 !important;
  }

  .menu-card:hover .price {
    display: block;
  }

  
}



/* ===============================
   🔹 MOBILE FIX — Add-to-Cart Highlight
   =============================== */

/* When card is added (JS will add .added class) */
.menu-card.added {
  background: #e63946 !important;
}

.menu-card.added h3,
.menu-card.added p,
.menu-card.added label {
  color: #fff !important;
}

.menu-card.added .price {
  display: none;
}

.menu-card.added .add-btn {
  display: inline-block;
  background: #fff;
  color: #e63946;
}
  }
}
/* ===============================
   🛒 UNIVERSAL FLOATING CART BUTTON
   =============================== */

#mobileCartBtn {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: none;
  outline: none;
  border-radius: 50%;
  background: transparent; /* ✅ No background */
  color: #e63946;          /* Red cart icon */
  font-size: 30px;
  cursor: pointer;
  z-index: 3000;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover effect */
#mobileCartBtn:hover {
  transform: scale(1.1);
  color: #b71c1c;
}

/* 🔴 Cart count badge */
.cart-count {
  position: absolute;
  top: 6px;
  right: 10px;
  background: #ffffff;
  color: #000000;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

/* Hide badge if empty */
.cart-count:empty {
  display: none;
}

/* ===============================
   📱 MOBILE (bottom-right)
   =============================== */
@media (max-width: 767px) {
  #mobileCartBtn {
    bottom: 25px; /* ✅ Bottom position */
    right: 20px;
    top: auto;
    font-size: 28px;
    width: 55px;
    height: 55px;
  }

  .cart-count {
    top: 5px;
    right: 8px;
  }
}

/* ===============================
   💻 DESKTOP (top-right)
   =============================== */
@media (min-width: 768px) {
  #mobileCartBtn {
    top: 10px;    /* ✅ Top-right corner */
    right: 25px;
    bottom: auto;
  }

  .cart-count {
    top: 3px;
    right: 10px;
  }
}
/* ===============================
   📱 MOBILE + TABLET (bottom-right)
   =============================== */
@media (max-width: 1023px) {
  #mobileCartBtn {
    bottom: 25px;  /* ✅ Bottom position */
    right: 20px;
    top: auto;
    font-size: 28px;
    width: 65px;
    height: 65px;
  }

  .cart-count {
    top: 5px;
    right: 8px;
  }
}

/* ===============================
   💻 DESKTOP (top-right)
   =============================== */
@media (min-width: 1024px) {
  #mobileCartBtn {
    top: 10px;     /* ✅ Top-right corner */
    right: 25px;
    bottom: auto;
    width: 60px;
    height: 60px;
    font-size: 30px;
  }

  .cart-count {
    top: 3px;
    right: 10px;
  }
}

/* ===============================
   ✅ FIX — Proper Right & Left Spacing for Menu Cards
   =============================== */
@media (max-width: 1023px) {
  .menu-section {
    padding: 0 20px; /* Add space on both sides */
  }

  .menu-list {
    padding: 10px 10px; /* Slight inner spacing */
    gap: 20px;
  }

  .menu-card {
    width: 100%;
    max-width: 95%;     /* Keeps it away from edges */
    margin: 0 auto;     /* Centers card horizontally */
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .menu-section {
    padding: 0 15px; /* slightly smaller for very small phones */
  }

  .menu-card {
    max-width: 100%;
    margin-left: 0px;
  }
}
/* ===============================
   📱 MOBILE: Price + Add to Cart on Same Line
   =============================== */
@media (max-width: 767px) {
  .menu-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Wrap price and button inline */
  .menu-text .price,
  .menu-text .add-btn {
    display: inline-block;
    vertical-align: middle;
  }

  /* Inline container for both */
  .menu-text .price,
  .menu-text .add-btn {
    margin: 0 5px;
  }

  /* Center align price + button */
  .menu-text .price + .add-btn {
    display: inline-block;
  }

  .menu-text {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .menu-text .price {
    font-size: 1rem;
    font-weight: 700;
    color: #e63946;
  }

  .menu-text .add-btn {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
}


/* ===============================
   💻 DESKTOP: Price below Menu line
   =============================== */
@media (min-width: 768px) {
  .menu-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  /* Move price below the checkbox line */
  .menu-text .price {
    display: block;
    margin-top: 6px; /* small space below checkbox */
    font-size: 1.1rem;
    font-weight: 700;
    color: #e63946;
  }

  /* Keep hover Add to Cart as before */
  .menu-text .add-btn {
    display: none;
  }

  .menu-card:hover .add-btn {
    display: inline-block;
  }
}
/* ===============================
   📱 MOBILE: Price + Add to Cart Same Line
   =============================== */
@media (max-width: 767px) {
  .menu-text {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  /* Group price and button on one line */
  .menu-text .price,
  .menu-text .add-btn {
    display: block;
    flex-direction: row-reverse;
    width: 100%;
    margin: 0 5px;
  }

  .menu-text .price {
    font-size: 1rem;
    font-weight: 700;
    color: #e63946;
  }

  .menu-text .add-btn {
    background: #ff7b00;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 8px;
  }

  /* Keep both centered horizontally */
  .menu-text {
    flex-direction: row;
    justify-content: center;
    gap: 8px;
  }
}
