/* Menu Section */

.menu-section {
  text-align: center;
  padding: 90px 20px 20px;
  background: linear-gradient(180deg, #f9d648 0%, #fff3a3 100%);
}
.menu-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
}

.filter-btns {
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.filter-btns button {
  background: #ffca00;
  color: #000;
  border: none;
  border-radius: 6px;
  padding: 6px 10px;
  font-weight: 400;
  cursor: pointer;
  transition: 0.3s;
}
.filter-btns button:hover,
.filter-btns button.active {
  background: #e7b600;
  transform: translateY(-2px);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 👈 4 products per row */
  gap: 25px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
}
.menu-card {
  background: #ff9800;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s, opacity 0.3s;
  position: relative;
  opacity: 1;
  transform: scale(1);
}

.menu-card.hide {
  opacity: 0;
  transform: scale(0.9);
  display: none !important; /* 👈 removes it completely from layout */
}

.menu-grid.showing .menu-card {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.menu-card:hover {
  transform: translateY(-5px);
}
.menu-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.menu-card .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e60000;
  color: #fff;
  padding: 5px 8px;
  font-size: 12px;
  border-radius: 4px;
}
.menu-info {
  padding: 15px;
  color: #000;
  text-align: center;
}
.menu-info h3 {
  margin: 10px 0;
  font-size: 1.1rem;
}
.price-old {
  text-decoration: line-through;
  color: #241916ff;
}
.price-new {
  font-weight: 700;
  color: #fff;
}

.menu-info .add-cart {
  background: #fff;
  border: none;
  padding: 7px 12px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.menu-info .add-cart:hover {
  background: #fdd835;
}
@media (max-width: 768px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .menu-card img { height: 150px; }
}
@media (max-width: 480px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .menu-card img { height: 130px; }
  .menu-info { padding: 10px; }
}


/* loader + discount badge - inlined for instant paint */
#loader-wrapper{position:fixed;inset:0;background:#fff;display:flex;align-items:center;justify-content:center;z-index:9999;transition:opacity .45s,visibility .45s}
#loader-wrapper img{width:100px;height:100px;animation:spin 1.5s linear infinite}
@keyframes spin{from{transform:rotate(0)}to{transform:rotate(360deg)}}
body.loaded #loader-wrapper{opacity:0;visibility:hidden}
body{transition:opacity .35s}
body:not(.loaded){overflow:hidden}
.discount-badge{position:absolute;top:8px;left:8px;background:linear-gradient(135deg,#ff0000,#cc0000);color:#fff;font-weight:700;font-size:14px;padding:4px 10px;border-radius:4px;box-shadow:0 3px 6px rgba(0,0,0,.25);z-index:5}


/* --- Modern Quantity Buttons --- */
.quantity-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 30px;
  overflow: hidden;
  padding: 2px 6px; /* reduced height */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 45px; /* fixed height for consistent alignment */
}
.quantity-wrapper:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.quantity-btn {
  width: 30px;
  height: 30px;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  transition: all 0.2s ease-in-out;
}

.quantity-btn.minus {
  background: linear-gradient(145deg, #d90429, #b00020);
}
.quantity-btn.plus {
  background: linear-gradient(145deg, #00c851, #00994c);
}

.quantity-btn:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.quantity-wrapper.Quantity {
  width: 70px;
  height: 34px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid #ffc107;
  border-radius: 8px;
  margin: 0 6px;
  color: #000;
  background-color: #f8f7f5ff;
  outline: none;
}
.quantity-wrapper.Quantity:focus {
  border-color: #ffb300;
}

/* --- Responsive tweaks --- */
@media (max-width: 576px) {
  .quantity-btn {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }
  .quantity-wrapper.Quantity {
    width: 50px;
    font-size: 12px;
  }
}

/* --- Cart Icon  */
 .cart-icon {
  position: fixed;
  top: 10%;
  right: 10px;
  width: 45px;
  height: 45px;
  z-index: 1000;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cart-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.cart-icon:hover {
  transform: scale(1.05);
}



/* Subtle animation for new items */
@keyframes pop {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
  .cart-icon {
    top: 10%;
    right: 8px;
    width: 40px;
    height: 40px;
  }
 
}


/* ===== About Section Styling ===== */
.about-section {
  position: relative;
  background: url('images/newwork/1.jpg') center/cover no-repeat;
  color: #fff;
  padding:3px;
  text-align: center;
  overflow: hidden;
 
}

.about-overlay {
  background: rgba(255, 255, 255, 1);
  padding: 20px;
  border-radius: 16px;
  max-width: 100%;
  margin: auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  color: #ffcc00;
}

.section-content-para {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #050000ff;
  max-width: 850px;
  margin: 0 auto 15px;
}

.section-content-para .highlight {
  color: #ffcc00;
  font-weight: 600;
}

.about-btn {
  display: inline-block;
  background: #ffcc00;
  color: #000;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .about-content h2 {
    font-size: 2rem;
  }
  .section-content-para {
    font-size: 1rem;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 10px 10px !important;
  }
  .about-overlay {
    padding: 12px;
  }
  .about-content h2 {
    font-size: 1.6rem;
  }
  .section-content-para {
    font-size: 0.95rem;
  }
  .about-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}


  /* ===== Footer Styling ===== */
.site-footer {
  background:  #ffc107;
  color: #1d0404ff;
  padding: 40px 20px 10px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.footer-logo img {
  width: 130px;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 6px 0;
}

.footer-links a {
  color: #000000f5;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ff6600;
}

.footer-contact p {
  margin: 6px 0;
}

.footer-social .social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.footer-social img {
  width: 24px;
  height: 24px;
 
}

.footer-social img:hover {
  transform: scale(1.1);
  filter: brightness(0) invert(0.5) sepia(1) hue-rotate(10deg) saturate(5);
}

.footer-bottom {
  text-align: center;
  padding: 15px 10px 0;
  border-top: 1px solid #333;
  margin-top: 20px;
  font-size: 14px;
}

.footer-bottom strong {
  color: rgb(240, 5, 5);
}

/* Responsive */
@media (max-width: 600px) {
  .footer-container {
    text-align: center;
  }
}

