/* Menu Section */

.menu-section {
  text-align: center;
  padding: 90px 20px 20px;
  background: linear-gradient(180deg, #f94848 0%, #ffa3a3 100%);
}
.menu-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
}



/* ===== Mobile Horizontal Category Slider ===== */

.filter-slider{
    width:100%;
    overflow-x:auto;
    overflow-y:hidden;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    touch-action:pan-x;
    margin-top:10px;
    padding-bottom:5px;
}

.filter-slider::-webkit-scrollbar{
    display:none;
}

.filter-btns{
    display:flex;
    flex-wrap:nowrap;
    gap:10px;
    width:max-content;
    padding:10px;
}

.filter-btns button{
    flex:0 0 auto;
    white-space:nowrap;
    border:none;
    background:#fff;
    color:#333;
    padding:10px 18px;
    border-radius:25px;
    font-size:14px;
    box-shadow:0 2px 8px rgba(0,0,0,.15);
    cursor:pointer;
    transition:.3s;
}

.filter-btns button.active{
    background:#ff0000;
    color:#000;
    font-weight:bold;
}



.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: #ff0000;
  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: #fd3535;
}
@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 #ff0707;
  border-radius: 8px;
  margin: 0 6px;
  color: #000;
  background-color: #f8f7f5ff;
  outline: none;
}
.quantity-wrapper.Quantity:focus {
  border-color: #ff0000;
}

/* --- 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: #000000;
}

.section-content-para {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgb(0, 1, 5);
  max-width: 850px;
  margin: 0 auto 15px;
}

.section-content-para .highlight {
  color: #ff0000;
  font-weight: 600;
}

.about-btn {
  display: inline-block;
  background: #ff0000;
  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:  #ff0707;
  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: #ff0000;
}

.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(255, 255, 255);
}

/* Responsive */
@media (max-width: 600px) {
  .footer-container {
    text-align: center;
  }
}
/* PRELOADER */
#preloader{
    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: opacity .6s ease, visibility .6s ease;
}

/* Hide animation */
#preloader.hide{
    opacity:0;
    visibility:hidden;
}

/* Logo */
.loader-logo{
    width:120px;
    animation:
        rotateLogo 3s linear infinite,
        floatLogo 2s ease-in-out infinite;
}

/* Rotation */
@keyframes rotateLogo{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

/* Floating */
@keyframes floatLogo{
    0%,100%{
        translate:0 0;
    }
    50%{
        translate:0 -12px;
    }
}
/* ===========================
   Floating Admin Button
=========================== */

.admin-fab{

    position:fixed;

    right:25px;

    bottom:120px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:linear-gradient(135deg,#ff512f,#dd2476);

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    color:white;

    font-size:28px;

    box-shadow:0 10px 25px rgba(0,0,0,.35);

    z-index:9999;

    transition:.35s;

    animation:adminFloat 3s ease-in-out infinite;
}

.admin-fab:hover{

    transform:scale(1.15) rotate(10deg);

    color:white;

    box-shadow:0 15px 35px rgba(255,82,82,.6);

}

@keyframes adminFloat{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0);

}

}

/* Glow Ring */

.admin-fab::after{

content:"";

position:absolute;

width:100%;

height:100%;

border-radius:50%;

border:2px solid rgba(255,255,255,.5);

animation:ring 2s infinite;

}

@keyframes ring{

0%{

transform:scale(1);

opacity:1;

}

100%{

transform:scale(1.7);

opacity:0;

}

}
/* ===========================
   HAPPY HOUR BANNER
=========================== */

.happy-hour-banner{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#d60000;
    color:#fff;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:12px 20px;

    z-index:99999;

    font-size:18px;

    box-shadow:0 4px 15px rgba(0,0,0,.2);

}

.deal-left{

    display:flex;
    align-items:center;
    gap:10px;

}

.deal-right{

    font-weight:bold;
}

#dealCountdown{

    margin-left:10px;
    background:#fff;
    color:#d60000;
    padding:6px 12px;
    border-radius:6px;

}

body{

    padding-top:70px;

}

@media(max-width:768px){

.happy-hour-banner{

    flex-direction:column;
    gap:8px;
    text-align:center;

}

body{

    padding-top:100px;

}

}
.price-box{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.old-price{
    color:#888;
    text-decoration:line-through;
    display:none;
}

.discount-badge{
    background:#e60000;
    color:#fff;
    padding:4px 8px;
    border-radius:20px;
    font-size:12px;
    font-weight:bold;
    display:none;
}