 :root{
  --red:#c62828;
  --dark:#0f0f0f;
  --bg:#151515;
  --text:#f5f5f5;
  --muted:#9e9e9e;
}

/* HEADER */
.header{
  position:sticky;
  top:0;
  z-index:1000;
  background:var(--dark);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 22px;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  color:var(--text);
}

.logo-icon svg{
  width:26px;
  height:26px;
  fill:var(--red);
}

.logo-text span{
  color:var(--red);
}

.nav a{
  margin:0 14px;
  color:var(--muted);
  text-decoration:none;
  position:relative;
}

.nav a.active,
.nav a:hover{
  color:var(--text);
}

.cart-btn{
  position:relative;
}

.cart-btn svg{
  width:24px;
  fill:var(--text);
}

.cart-count{
  position:absolute;
  top:-6px;
  right:-8px;
  background:var(--red);
  color:#fff;
  font-size:11px;
  padding:2px 6px;
  border-radius:20px;
}

/* MOBILE NAV */
.mobile-nav{
  display:none;
}

@media(max-width:900px){
  .nav,.desktop-cart{display:none;}

  .mobile-nav{
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    background:var(--dark);
    display:flex;
    justify-content:space-around;
    padding:10px 0;
    z-index:999;
  }

  .mobile-nav a{
    color:var(--muted);
    text-decoration:none;
    text-align:center;
    font-size:11px;
    position:relative;
  }

  .mobile-nav a svg{
    width:22px;
    fill:currentColor;
  }

  .mobile-nav a.active{
    color:var(--red);
  }

  .mobile-nav .cart-count{
    position:absolute;
    top:-4px;
    right:8px;
  }
}
/* BUTTONS */
.btn{
  display:inline-block;
  padding:12px 22px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
}
.btn.primary{
  background:var(--red);
  color:#fff;
}
.btn.ghost{
  border:1px solid var(--red);
  color:var(--red);
}

/* HERO */
.hero{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  align-items:center;
  gap:40px;
  padding:80px 22px;
  background:linear-gradient(120deg,var(--bg),#1b1b1b);
}
.hero h1{
  font-size:48px;
}
.hero h1 span{
  color:var(--red);
}
.hero p{
  color:var(--muted);
  margin:16px 0 26px;
}
.hero-img img{
  width:100%;
  max-width:420px;
}

/* SECTIONS */
.section{
  padding:70px 22px;
}
.section-title{
  text-align:center;
  font-size:32px;
  margin-bottom:40px;
}

/* CARDS */
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.card{
  background:#1c1c1c;
  border-radius:16px;
  padding:16px;
  transition:.3s;
}
.card:hover{
  transform:translateY(-6px);
}
.card img{
  width:100%;
  border-radius:12px;
}
.card h3{
  margin:14px 0 6px;
}
.card p{
  color:var(--muted);
  font-size:14px;
}
.card-foot{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:14px;
}
.card button{
  background:var(--red);
  border:none;
  color:#fff;
  padding:6px 14px;
  border-radius:20px;
  cursor:pointer;
}

/* OFFER */
.offer{
  background:var(--red);
  padding:60px 22px;
  text-align:center;
}
.offer p{
  margin:12px 0 22px;
}

/* TESTIMONIALS */
.testimonials{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.review{
  background:#1c1c1c;
  padding:22px;
  border-radius:16px;
}
.review span{
  display:block;
  margin-top:12px;
  color:var(--muted);
}

/* RESPONSIVE */
@media(max-width:900px){
  .hero{
    grid-template-columns:1fr;
    text-align:center;
  }
  .cards{
    grid-template-columns:1fr;
  }
  .testimonials{
    grid-template-columns:1fr;
  }
}
/* MENU HERO */
.menu-hero{
  padding:70px 22px 30px;
  text-align:center;
  background:linear-gradient(120deg,#151515,#1d1d1d);
}
.menu-hero h1{
  font-size:40px;
}
.menu-hero p{
  color:var(--muted);
  margin-top:8px;
}

/* FILTER */
.menu-filter{
  display:flex;
  justify-content:center;
  gap:12px;
  padding:20px;
  flex-wrap:wrap;
}
.menu-filter button{
  background:#1c1c1c;
  color:var(--muted);
  border:1px solid #2a2a2a;
  padding:8px 18px;
  border-radius:20px;
  cursor:pointer;
}
.menu-filter button.active,
.menu-filter button:hover{
  background:var(--red);
  color:#fff;
}

/* MENU GRID */
.menu-grid{
  padding:40px 22px 90px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.menu-card{
  background:#1c1c1c;
  border-radius:16px;
  padding:16px;
  transition:.3s;
}
.menu-card:hover{
  transform:translateY(-6px);
}
.menu-card img{
  width:100%;
  border-radius:12px;
}
.menu-card h3{
  margin:14px 0 6px;
}
.menu-card p{
  font-size:14px;
  color:var(--muted);
}
.menu-foot{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:14px;
}
.menu-foot button{
  background:var(--red);
  border:none;
  color:#fff;
  padding:6px 14px;
  border-radius:20px;
  cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:900px){
  .menu-grid{
    grid-template-columns:1fr;
  }
}
/* CART PAGE */
.cart-page{
  padding:80px 22px 120px;
  max-width:900px;
  margin:auto;
}
.cart-page h1{
  text-align:center;
  margin-bottom:30px;
}
/* ===== CART EMPTY TEXT COLOR FIX ===== */

.cart-page h1{
  color:#111 !important;
}

.cart-page p,
.cart-page .empty-cart,
#cart-container p{
  color:#111 !important;
}

.cart-item{
  display:grid;
  grid-template-columns:1fr auto auto auto;
  gap:14px;
  align-items:center;
  background:#1c1c1c;
  padding:16px;
  border-radius:14px;
  margin-bottom:14px;
}

.cart-item span{
  color:var(--muted);
}

.qty-control{
  display:flex;
  gap:8px;
  align-items:center;
}
.qty-control button{
  width:28px;
  height:28px;
  border-radius:50%;
  border:none;
  background:var(--red);
  color:#fff;
  cursor:pointer;
}

.remove-btn{
  background:none;
  border:none;
  color:#ff5252;
  cursor:pointer;
}

.cart-summary{
  display:flex;
  justify-content:space-between;
  margin:20px 0;
  font-size:18px;
}

.checkout-btn{
  width:100%;
  text-align:center;
}
/* CHECKOUT */
.checkout-page{
  max-width:600px;
  margin:auto;
  padding:80px 22px 120px;
}
.checkout-page h1{
  text-align:center;
}
.checkout-page .sub{
  text-align:center;
  color:var(--muted);
  margin-bottom:30px;
}

.checkout-form{
  background:#1c1c1c;
  padding:24px;
  border-radius:18px;
}

.checkout-form input{
  width:100%;
  padding:12px 14px;
  margin-bottom:14px;
  border-radius:10px;
  border:1px solid #2a2a2a;
  background:#151515;
  color:#fff;
}

.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.payment{
  display:flex;
  gap:20px;
  margin:10px 0 20px;
  color:var(--muted);
}

.submit-btn{
  width:100%;
  position:relative;
  overflow:hidden;
}

/* LOADER */
.loader{
  width:18px;
  height:18px;
  border:2px solid rgba(255,255,255,.4);
  border-top:2px solid #fff;
  border-radius:50%;
  animation:spin 1s linear infinite;
  display:none;
  position:absolute;
  right:18px;
  top:50%;
  transform:translateY(-50%);
}

.submit-btn.loading .loader{
  display:block;
}
.submit-btn.loading .btn-text{
  opacity:.6;
}

@keyframes spin{
  to{transform:rotate(360deg) translateY(-50%);}
}

/* POPUP */
.popup{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.7);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:2000;
}
.popup-box{
  background:#1c1c1c;
  padding:30px;
  border-radius:18px;
  text-align:center;
  max-width:320px;
}

@media(max-width:600px){
  .grid-2{
    grid-template-columns:1fr;
  }
}
/* CONTACT */
.contact-page{
  padding:80px 22px 120px;
}
.contact-page h1{
  text-align:center;
}
.contact-page .sub{
  text-align:center;
  color:var(--muted);
  margin-bottom:40px;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  max-width:1000px;
  margin:auto;
}

.contact-info{
  background:#1c1c1c;
  padding:24px;
  border-radius:18px;
}

.info-item{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:16px;
}
.info-item svg{
  width:22px;
  fill:var(--red);
}

.hours{
  margin-top:20px;
  color:var(--muted);
}

.map iframe{
  width:100%;
  height:100%;
  min-height:280px;
  border:0;
  border-radius:18px;
}

/* FOOTER */
.footer{
  background:#f6f8fb;
  color:Black;
  padding:40px 20px;
  text-align:center;
  font-size:14px;
  border-top:1px solid #e5e9f0;
}

.footer strong{
  display:block;
  margin-bottom:6px;
}

@media(max-width:900px){
  .contact-grid{
    grid-template-columns:1fr;
  }
  .footer{
    padding-bottom:90px; /* space for mobile nav */
  }
}
/* ===============================
   TEXT VISIBILITY FORCE FIX
   (NO LAYOUT / NO STRUCTURE CHANGE)
================================ */

/* GLOBAL TEXT */
body,
p,
span,
li,
label{
  color: var(--text);
}

/* MUTED TEXT */
.muted,
.sub,
.hero p,
.section p,
.card p,
.menu-card p,
.review span,
.cart-item span,
.checkout-page .sub,
.contact-page .sub,
.hours{
  color: var(--muted);
}

/* HEADINGS */
h1,h2,h3,h4,h5,h6,
.section-title,
.hero h1,
.menu-hero h1{
  color: var(--text);
}

/* LINKS */
a{
  color: var(--text);
}
.nav a{
  color: var(--muted);
}
.nav a.active,
.nav a:hover{
  color: var(--text);
}

/* RED BACKGROUND SECTIONS */
.offer,
.offer *{
  color:#fff !important;
}

/* BUTTON TEXT */
button,
.btn,
.btn *{
  color:#fff;
}

/* INPUT TEXT */
input,
textarea,
select{
  color:#fff;
}

/* POPUP */
.popup-box,
.popup-box *{
  color: var(--text);
}

/* FOOTER TEXT */
.footer,
.footer *{
  color:black;
}
.footer strong{
  color:#fff;
}
/* ===============================
   FOOTER TEXT FORCE FIX
================================ */

.footer{
  background:#fff !important;
}

.footer,
.footer p,
.footer span,
.footer li,
.footer a,
.footer small{
  color:black !important;
}

.footer h1,
.footer h2,
.footer h3,
.footer h4{
  color:#111 !important;
}

.footer a:hover{
  color:var(--primary) !important;
}
/* ===============================
   CART PAGE TEXT FORCE FIX
================================ */

.cart,
.cart-page,
.cart-container{
  color: var(--text);
}

.cart h1,
.cart h2,
.cart h3,
.cart h4{
  color: var(--text);
}

.cart p,
.cart span,
.cart small,
.cart label{
  color: var(--muted);
}

/* Cart items */
.cart-item,
.cart-item *{
  color: var(--text);
}

/* Price highlight */
.cart-price,
.total-price{
  color: var(--primary);
  font-weight:600;
}

/* Quantity buttons */
.cart button{
  color:Black;
}
/* ===============================
   CHECKOUT SAFE TEXT
================================ */

.checkout,
.checkout *{
  color: var(--text);
}

.checkout small,
.checkout .muted{
  color: var(--muted);
}
/* ===============================
   CART TOTAL VISIBILITY FIX
================================ */

.cart-summary,
.cart-summary *{
  color:#111 !important;
}

/* Total label */
.cart-summary span:first-child,
.cart-summary .label,
.cart-summary .title{
  color:#111 !important;
  font-weight:600;
}

/* Total price */
.cart-summary span:last-child,
.cart-summary .price,
.cart-summary .total-price{
  color:var(--red) !important;
  font-weight:700;
}
.mobile-nav .cart-count{
  background:var(--red) !important;
  color:#fff !important;
  font-weight:600;
}
/* ===============================
   MOBILE NAV VISIBILITY FIX
================================ */

@media(max-width:900px){

  .mobile-nav{
    background:#0f0f0f !important;
    border-top:1px solid #222;
  }

  .mobile-nav a{
    color:#bdbdbd !important; /* visible gray */
    font-weight:500;
  }

  .mobile-nav a svg{
    fill:currentColor !important;
  }

  /* ACTIVE STATE */
  .mobile-nav a.active{
    color:var(--red) !important;
  }

  .mobile-nav a.active svg{
    fill:var(--red) !important;
  }

  /* LABEL TEXT */
  .mobile-nav a span{
    display:block;
    margin-top:4px;
    font-size:11px;
  }
}
/* FORCE MOBILE NAV FIXED */
.mobile-nav{
  position:fixed !important;
  bottom:0;
  left:0;
  right:0;
  width:100%;
  z-index:9999;

  background:var(--dark);
  padding-bottom:env(safe-area-inset-bottom);
}
/* ==========================
   CART PAGE FORCE FIX
========================== */

.cart-page,
.cart-container,
.cart-wrapper{
  width:100% !important;
  max-width:100% !important;
  overflow-x:hidden !important;
  margin:0 auto !important;
  padding-left:16px;
  padding-right:16px;
}
body.cart{
  overflow-x:hidden !important;
  width:100% !important;
  max-width:100% !important;
}
/* ===================================================
   FULL MOBILE + CART FORCED CSS
   WORKS ON ALL PAGES / ALL MOBILES
   NO LEFT-RIGHT SCROLL
   NO ZOOM / NO OUTSIDE SCROLL
   =================================================== */

*,
*::before,
*::after{
  box-sizing:border-box !important;
}

html, body{
  margin:0 !important;
  padding:0 !important;
  width:100% !important;
  max-width:100% !important;
  overflow-x:hidden !important;
  font-family:inherit;
}

/* -------- GLOBAL CONTAINERS -------- */
section, div, main, header, footer{
  max-width:100% !important;
  overflow-x:hidden !important;
}

/* -------- CART PAGE -------- */
.cart-page{
  width:100% !important;
  max-width:100% !important;
  min-height:100vh;
  padding:16px !important;
  margin:0 auto !important;
  display:flex;
  flex-direction:column;
  gap:16px;
  overflow-x:hidden !important;
}

/* -------- CART ITEMS -------- */
#cart-container{
  width:100% !important;
  max-width:100% !important;
  display:flex;
  flex-direction:column;
  gap:12px;
  overflow:hidden !important;
}

.cart-item{
  width:100% !important;
  max-width:100% !important;
  padding:12px;
  border-radius:12px;
  overflow:hidden !important;
  display:flex;
  flex-direction:column;
}

/* -------- TOTAL BAR -------- */
.cart-summary{
  width:100% !important;
  max-width:100% !important;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 0 !important;
}

/* -------- CHECKOUT BUTTON -------- */
.checkout-btn{
  width:100% !important;
  max-width:100% !important;
  padding:14px !important;
  text-align:center;
  border-radius:14px;
  white-space:nowrap;
}

/* -------- NAV & FOOTER SAFETY -------- */
#nav-placeholder,
#footer-placeholder,
nav,
footer{
  width:100% !important;
  max-width:100% !important;
  overflow-x:hidden !important;
}

/* -------- MOBILE FORCE -------- */
@media(max-width:768px){
  body{
    overflow-x:hidden !important;
  }

  img{
    max-width:100% !important;
    height:auto !important;
  }
}
/* ===== FORCE TEXT VISIBILITY (ONLY THIS) ===== */

/* Contact page headings & text */
.contact-page h1,
.contact-page h2,
.contact-page p,
.contact-page span {
  color: #111111 !important;
  background: transparent !important;
}

/* Any highlighted / selected looking text */
::selection {
  background: #c62828;
  color: #ffffff;
}
/* ===== CONTACT INFO TEXT VISIBILITY FIX (ONLY THIS) ===== */

.contact-info,
.contact-info p,
.contact-info span,
.contact-info strong,
.contact-info a,
.contact-info h3 {
  color:White !important;
}

/* Icons ke sath text */
.contact-info .info-item span,
.contact-info .info-item p {
  color: White !important;
}

/* Opening hours */
.contact-info .hours,
.contact-info .hours p {
  color: white !important;
}
/* =====================================
   DESKTOP ONLY HEADER FORCE FIX
   (MOBILE COMPLETELY UNTOUCHED)
   ===================================== */

@media (min-width: 901px){

  /* Header container */
  .header{
    width:100%;
    max-width:100%;
    overflow:hidden;          /* right side overflow stop */
    box-sizing:border-box;
    display:flex;
    align-items:center;
    justify-content:space-between;
  }

  /* Logo fix (menu ke neeche girna band) */
  .logo{
    display:flex;
    align-items:center;
    gap:8px;
    white-space:nowrap;
    flex-shrink:0;
  }

  /* Navigation fix */
  .nav{
    display:flex;
    align-items:center;
    gap:20px;
    flex-wrap:nowrap;
  }

  .nav a{
    white-space:nowrap;
  }

  /* Right side cart / icons */
  .desktop-cart,
  .cart-btn{
    flex-shrink:0;
  }

  /* Kill any 100vw overflow bug */
  .header,
  .header *{
    max-width:100%;
    box-sizing:border-box;
  }

}
/* =====================================
   FINAL TEXT VISIBILITY FIX (HOME + FOOTER)
   NO LAYOUT CHANGE – COLOR ONLY
   ===================================== */

/* HOME SECTION TITLES */
.section-title,
.section-title *,
h2.section-title{
  color:#111 !important;   /* solid black */
}

/* Testimonials title */
.testimonials-title,
.testimonials-title *,
.what-customers-say{
  color:#111 !important;
}

/* Cards / reviews text safety */
.review,
.review h3,
.review p{
  color:#222 !important;
}

/* FOOTER BRAND TEXT */
.footer strong,
.footer .brand,
.footer .logo-text,
.footer h3{
  color:#c62828 !important;  /* brand red */
}

/* Footer normal text */
.footer p,
.footer span,
.footer small{
  color:#333 !important;
}
/* ===============================
   TESTIMONIALS VISIBILITY FIX
   =============================== */

.testimonials,
.testimonials *{
  color:#f5f5f5 !important;   /* white text on dark bg */
}

.review p{
  color:#e0e0e0 !important;
}

.review span{
  color:#bdbdbd !important;
}
/* ===============================
   ORDER SUCCESS POPUP ICON
   =============================== */

.success-icon{
  width:64px;
  height:64px;
  border-radius:50%;
  background:#2ecc71;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  font-weight:700;
  margin:0 auto 14px;
}
/* ===============================
   CHECKOUT HEADING VISIBILITY FIX
   (ONLY THESE TWO LINES)
================================ */

.checkout-page h1{
  color:#111 !important;   /* black */
}

.checkout-page .sub{
  color:#c62828 !important; /* red */
}

