body{
  margin:0;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  background:#fffaf8;
  color:#2b2b2b;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}

/* HEADER */
header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(10px);
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 28px;
  box-shadow:0 4px 18px rgba(0,0,0,0.04);
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#111;
  font-weight:700;
  font-size:1.3rem;
}
.brand img{
  height:44px;
  width:44px;
  border-radius:999px;
  object-fit:cover;
}
nav a{
  margin-left:18px;
  text-decoration:none;
  color:#222;
  font-weight:500;
  font-size:0.95rem;
}
nav a:hover{
  opacity:0.8;
}
/* Promo strip shown on homepage to link to courier page */
.promo-strip{
  background: linear-gradient(90deg, #fff0f2 0%, #fff6f7 100%);
  border-bottom: 1px solid rgba(0,0,0,0.03);
  padding: 10px 0;
}
.promo-inner{
  max-width:1150px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:0 16px;
}
.promo-text{ color:#d1443f; font-weight:600; font-size:0.98rem; }
.promo-actions .btn{ margin-left:8px; padding:8px 12px; border-radius:8px; font-size:0.95rem; }
@media (max-width:720px){
  .promo-inner{ flex-direction:column; align-items:flex-start; gap:10px; }
  .promo-actions .btn{ margin-left:0; }
}

/* HERO */
.hero{
  padding:60px 28px 40px;
  display:flex;
  flex-wrap:wrap;
  gap:40px;
  justify-content:center;
  align-items:center;
}
.hero-text{
  max-width:480px;
}
.hero-text h1{
  font-size:2.3rem;
  margin:0 0 10px;
}
.hero-text p{
  margin:0 0 16px;
  color:#555;
}
.hero-media img{
  width:360px;
  max-width:100%;
  border-radius:18px;
  box-shadow:0 12px 30px rgba(0,0,0,0.16);
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

/* BUTTONS */
.btn{
  display:inline-block;
  padding:10px 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:600;
  font-size:0.95rem;
}
.btn-primary{
  background:#e05572;
  color:#fff;
}
.btn-outline{
  border:2px solid #e05572;
  color:#e05572;
  background:transparent;
}

/* SECTIONS */
.section{
  padding:40px 28px;
  max-width:1150px;
  margin:0 auto;
}
.section h2{
  text-align:center;
  font-size:2rem;
  margin:0 0 12px;
}
.section-intro{
  text-align:center;
  max-width:720px;
  margin:0 auto 26px;
  color:#555;
}
.section-intro.small{
  font-size:0.85rem;
  color:#777;
}

/* MENU */
.menu-category{
  margin-bottom:40px;
}
.menu-category h3{
  text-align:left;
  font-size:1.4rem;
  margin:16px 0 12px;
  font-weight:700;
}
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:18px;
}
.card{
  background:#fff;
  border-radius:14px;
  padding:14px;
  box-shadow:0 6px 20px rgba(0,0,0,0.08);
  display:flex;
  flex-direction:column;
  gap:6px;
}
.card img{
  width:100%;
  height:190px;
  object-fit:cover;
  border-radius:12px;
}
.card h4{
  margin:10px 0 4px;
  font-size:1.02rem;
}
.card p{
  margin:0;
  font-size:0.9rem;
  color:#555;
}
.meta-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:8px;
  font-size:0.9rem;
  color:#333;
}
.price{
  font-weight:700;
}
.tag{
  padding:3px 9px;
  border-radius:999px;
  font-size:0.7rem;
  text-transform:uppercase;
  letter-spacing:0.06em;
  border:1px solid rgba(0,0,0,0.14);
}
.tag.veg{
  border-color:#1b9c4b;
  color:#1b9c4b;
}
.tag.non-veg{
  border-color:#c62828;
  color:#c62828;
}

/* Card Swiggy/Zomato buttons */
.card-actions{
  margin-top:10px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.btn-link{
  padding:6px 10px;
  border-radius:999px;
  border:1px solid #e0e0e0;
  font-size:0.8rem;
  text-decoration:none;
  color:#444;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.btn-link.swiggy-link{
  border-color:#fc8019;
}
.btn-link.zomato-link{
  border-color:#e23744;
}

/* SEARCH + FILTERS */
.menu-controls{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin:0 0 16px;
}
#menu-search{
  flex:1 1 220px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,0.12);
  font-size:0.9rem;
  outline:none;
}
#menu-search:focus{
  border-color:#e05572;
}
.filter-chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.chip{
  border-radius:999px;
  border:1px solid rgba(0,0,0,0.15);
  background:#fff;
  padding:6px 10px;
  font-size:0.8rem;
  cursor:pointer;
}
.chip.active{
  background:#e05572;
  color:#fff;
  border-color:#e05572;
}

/* GALLERY */
.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:16px;
}
.gallery img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:12px;
  box-shadow:0 4px 16px rgba(0,0,0,0.12);
}

/* ORDER SECTION */
.order-platforms{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}
.platform-card{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,0.06);
  background:#fff;
  box-shadow:0 6px 16px rgba(0,0,0,0.06);
  text-decoration:none;
  color:#333;
  font-weight:600;
  font-size:0.95rem;
}
.platform-logo{
  width:26px;
  height:26px;
  border-radius:999px;
}
.platform-swiggy{
  background:#fc8019;
}
.platform-zomato{
  background:#e23744;
}

/* ABOUT PAGE */
.about-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
  margin-top:10px;
}
.about-card{
  background:#fff;
  border-radius:16px;
  padding:16px;
  box-shadow:0 6px 20px rgba(0,0,0,0.06);
}
.about-card h3{
  margin-top:0;
}

/* CONTACT PAGE */
.contact-layout{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(0,1.2fr);
  gap:24px;
}
.contact-details{
  background:#fff;
  border-radius:16px;
  padding:16px;
  box-shadow:0 6px 20px rgba(0,0,0,0.06);
}
.contact-form-card{
  background:#fff;
  border-radius:16px;
  padding:16px;
  box-shadow:0 6px 20px rgba(0,0,0,0.06);
}
.contact-form-card form{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.contact-form-card input,
.contact-form-card textarea{
  width:100%;
  margin-top:4px;
  padding:8px 10px;
  border-radius:8px;
  border:1px solid rgba(0,0,0,0.16);
  font-size:0.9rem;
  font-family:inherit;
}
.contact-form-card input:focus,
.contact-form-card textarea:focus{
  border-color:#e05572;
  outline:none;
}

/* CONTACT LINKS */
.contact-section a{
  color:#e05572;
  text-decoration:none;
}
.contact-section a:hover{
  text-decoration:underline;
}

/* FLOATING BUTTONS */
.order-fab{
  position:fixed;
  right:18px;
  bottom:18px;
  background:#e05572;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-size:0.8rem;
  padding:10px 12px;
  border-radius:999px;
  box-shadow:0 10px 26px rgba(0,0,0,0.25);
  text-align:center;
  line-height:1.2;
  z-index:80;
}
.whatsapp-fab{
  position:fixed;
  left:18px;
  bottom:18px;
  background:#25d366;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-size:0.8rem;
  padding:10px 14px;
  border-radius:999px;
  box-shadow:0 10px 26px rgba(0,0,0,0.25);
  z-index:81;
}

/* ===== FOOTER ===== */

.site-footer{
  background:#ffe5db;
  margin-top:40px;
  color:#c62828;
  font-size:0.9rem;
}

/* Newsletter strip */
.footer-newsletter{
  border-bottom:1px solid rgba(0,0,0,0.05);
  padding:26px 20px 18px;
}
.footer-newsletter-inner{
  max-width:1150px;
  margin:0 auto;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.footer-newsletter-text h2{
  text-transform:uppercase;
  letter-spacing:0.08em;
  font-size:1.1rem;
  margin:0 0 6px;
}
.footer-newsletter-text p{
  margin:0;
  color:#d1443f;
}
.footer-newsletter-form{
  display:flex;
  flex-wrap:nowrap;
  gap:8px;
  max-width:420px;
  width:100%;
}
.footer-newsletter-form input{
  flex:1;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid #f29a8b;
  outline:none;
  font-size:0.9rem;
}
.footer-newsletter-form input:focus{
  border-color:#e05572;
}
.footer-newsletter-form button{
  border-radius:999px;
  border:none;
  padding:10px 18px;
  font-weight:600;
  font-size:0.9rem;
  background:#e05572;
  color:#fff;
  cursor:pointer;
}

/* Main footer columns */
.footer-main{
  max-width:1150px;
  margin:0 auto;
  padding:26px 20px 10px;
  display:flex;
  flex-wrap:wrap;
  gap:26px;
  justify-content:space-between;
}
.footer-brand-block{
  max-width:260px;
}
.footer-logo-wrap{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:8px;
}
.footer-logo-wrap img{
  width:42px;
  height:42px;
  border-radius:999px;
}
.footer-brand-name{
  font-size:1.4rem;
  font-weight:700;
}
.footer-tagline{
  margin:0 0 12px;
  color:#d1443f;
}
.footer-social{
  display:flex;
  gap:10px;
}
.footer-social a{
  width:30px;
  height:30px;
  border-radius:999px;
  border:1px solid #f29a8b;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:0.8rem;
  text-decoration:none;
  color:#c62828;
}

/* Link columns */
.footer-links{
  display:flex;
  flex:1 1 0;
  justify-content:flex-end;
  gap:28px;
  flex-wrap:wrap;
}
.footer-column h3{
  text-transform:uppercase;
  font-size:0.85rem;
  letter-spacing:0.12em;
  margin:0 0 6px;
}
.footer-column a{
  display:block;
  margin:3px 0;
  text-decoration:none;
  color:#c62828;
  font-size:0.88rem;
}
.footer-column a:hover{
  text-decoration:underline;
}

.footer-bottom{
  border-top:1px solid rgba(0,0,0,0.04);
  padding:10px 16px 18px;
  text-align:center;
  color:#d1443f;
  font-size:0.8rem;
}

/* Responsive footer */
@media (max-width:720px){
  .footer-newsletter-inner{
    align-items:flex-start;
  }
  .footer-newsletter-form{
    flex-direction:column;
  }
  .footer-main{
    flex-direction:column;
  }
  .footer-links{
    justify-content:flex-start;
  }
}
