*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --red: #E8272A;
  --dark: #1a1a1a;
  --gold: #F5A623;
  --light: #FFF8F0;
  --gray: #f4f4f4;
}
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: var(--dark); background: #fff; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; width: 100%; z-index: 999;
  background: rgba(26,26,26,0.95); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 5%;
}
.logo { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.5rem; color: #fff; }
.logo span { color: var(--red); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: #ccc; text-decoration: none; font-size: .9rem; transition: color .2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--red); color: #fff; border: none; padding: 10px 22px;
  border-radius: 25px; font-weight: 700; cursor: pointer; font-size: .9rem;
  transition: background .2s;
}
.nav-cta:hover { background: #c0201f; }

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('https://images.unsplash.com/photo-1561651823-34feb02250e4?w=1600&q=80') center/cover no-repeat;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 100px 20px 60px;
}
.hero-content { max-width: 750px; }
.hero-badge {
  display: inline-block; background: var(--gold); color: var(--dark);
  font-weight: 700; font-size: .85rem; padding: 6px 18px; border-radius: 20px;
  margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px;
}
.hero-content h1 {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.8rem); color: #fff; line-height: 1.15;
  margin-bottom: 18px;
}
.hero-content h1 span { color: var(--gold); }
.hero-content p { color: #ddd; font-size: 1.1rem; margin-bottom: 36px; line-height: 1.7; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--red); color: #fff; padding: 16px 36px;
  border-radius: 30px; font-weight: 700; font-size: 1rem; border: none;
  cursor: pointer; transition: transform .2s, background .2s; text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: #c0201f; transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: #fff; padding: 16px 36px;
  border-radius: 30px; font-weight: 700; font-size: 1rem;
  border: 2px solid #fff; cursor: pointer; transition: all .2s; text-decoration: none;
  display: inline-block;
}
.btn-outline:hover { background: #fff; color: var(--dark); }
.hero-stats { display: flex; gap: 40px; justify-content: center; margin-top: 50px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 2rem; color: var(--gold); }
.stat-label { color: #bbb; font-size: .85rem; margin-top: 4px; }

/* ===== SECTIONS COMMON ===== */
section { padding: 80px 5%; }
.section-title {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.6rem); text-align: center; margin-bottom: 12px;
}
.section-sub { text-align: center; color: #777; font-size: 1rem; margin-bottom: 50px; }
.accent { color: var(--red); }

/* ===== PROMO ===== */
#promo { background: var(--dark); }
#promo .section-title { color: #fff; }
#promo .section-sub { color: #aaa; }
.promo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.promo-card {
  border-radius: 16px; overflow: hidden; position: relative;
  min-height: 240px; display: flex; align-items: flex-end;
  background-size: cover; background-position: center; transition: transform .3s;
}
.promo-card:hover { transform: scale(1.02); }
.promo-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 60%);
}
.promo-info { position: relative; padding: 20px; }
.promo-tag {
  background: var(--red); color: #fff; font-size: .75rem; font-weight: 700;
  padding: 4px 12px; border-radius: 12px; display: inline-block; margin-bottom: 8px;
}
.promo-info h3 { color: #fff; font-family: 'Montserrat', sans-serif; font-size: 1.1rem; font-weight: 700; }
.promo-info p { color: #ccc; font-size: .85rem; margin-top: 4px; }

/* ===== MENU ===== */
#menu { background: var(--light); }
.menu-tabs { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.tab-btn {
  padding: 10px 24px; border-radius: 25px; border: 2px solid #ddd;
  background: #fff; font-weight: 600; cursor: pointer; transition: all .2s; font-size: .9rem;
}
.tab-btn.active, .tab-btn:hover { background: var(--red); color: #fff; border-color: var(--red); }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }
.menu-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08); transition: transform .3s, box-shadow .3s;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,.15); }
.menu-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.menu-body { padding: 18px; }
.menu-body h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 6px; }
.menu-body p { color: #777; font-size: .85rem; line-height: 1.5; margin-bottom: 14px; }
.menu-footer { display: flex; align-items: center; justify-content: space-between; }
.price { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.3rem; color: var(--red); }
.weight { font-size: .8rem; color: #aaa; }
.add-btn {
  background: var(--red); color: #fff; border: none; width: 38px; height: 38px;
  border-radius: 50%; font-size: 1.4rem; cursor: pointer; transition: background .2s;
  display: flex; align-items: center; justify-content: center;
}
.add-btn:hover { background: #c0201f; }

/* ===== WHY US ===== */
#why { background: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.why-card { text-align: center; padding: 32px 20px; border-radius: 20px; background: var(--light); transition: transform .3s; }
.why-card:hover { transform: translateY(-4px); }
.why-icon { font-size: 2.8rem; margin-bottom: 16px; }
.why-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 10px; }
.why-card p { color: #777; font-size: .88rem; line-height: 1.6; }

/* ===== DELIVERY ===== */
#delivery { background: var(--dark); }
#delivery .section-title { color: #fff; }
#delivery .section-sub { color: #aaa; }
.delivery-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.delivery-map {
  border-radius: 20px; overflow: hidden; height: 380px;
  background: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?w=800&q=80') center/cover;
  position: relative;
}
.map-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.3);
  display: flex; align-items: center; justify-content: center;
}
.map-pin { font-size: 3rem; }
.delivery-info h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.4rem; color: #fff; margin-bottom: 24px; }
.zone-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.zone-item { display: flex; align-items: center; gap: 14px; }
.zone-dot { width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; }
.zone-dot.green { background: #4CAF50; }
.zone-dot.yellow { background: var(--gold); }
.zone-dot.red { background: var(--red); }
.zone-text { color: #ccc; font-size: .95rem; }
.zone-text strong { color: #fff; }
.delivery-conditions { margin-top: 28px; padding: 20px; background: rgba(255,255,255,.07); border-radius: 14px; }
.delivery-conditions p { color: #bbb; font-size: .9rem; line-height: 1.8; }
.delivery-conditions strong { color: var(--gold); }

/* ===== PROCESS ===== */
#process { background: var(--light); }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.process-step { text-align: center; position: relative; }
.step-img { width: 100%; height: 180px; object-fit: cover; border-radius: 16px; margin-bottom: 16px; display: block; }
.step-num {
  position: absolute; top: 12px; left: 12px;
  background: var(--red); color: #fff; width: 36px; height: 36px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1rem;
}
.process-step h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.process-step p { color: #777; font-size: .85rem; line-height: 1.5; }

/* ===== REVIEWS ===== */
#reviews { background: #fff; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.review-card {
  background: var(--light); border-radius: 20px; padding: 28px;
  border-left: 4px solid var(--red); transition: transform .3s;
}
.review-card:hover { transform: translateY(-4px); }
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 12px; }
.review-text { color: #555; font-size: .92rem; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--red); }
.reviewer-name { font-weight: 700; font-size: .9rem; }
.reviewer-source { font-size: .78rem; color: #aaa; }

/* ===== FAQ ===== */
#faq { background: var(--light); }
.faq-list { max-width: 750px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,.06); }
.faq-q {
  padding: 20px 24px; font-weight: 700; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .95rem; transition: color .2s; user-select: none;
}
.faq-q:hover { color: var(--red); }
.faq-icon { font-size: 1.2rem; transition: transform .3s; color: var(--red); }
.faq-a {
  padding: 0 24px; max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s; color: #666; font-size: .9rem; line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ===== CTA BANNER ===== */
#cta-banner {
  background: linear-gradient(135deg, var(--red) 0%, #8B0000 100%);
  text-align: center; padding: 80px 5%;
}
#cta-banner h2 {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: #fff; margin-bottom: 16px;
}
#cta-banner p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: #fff; color: var(--red); padding: 16px 36px;
  border-radius: 30px; font-weight: 700; font-size: 1rem; border: none;
  cursor: pointer; transition: transform .2s; text-decoration: none; display: inline-block;
}
.btn-white:hover { transform: translateY(-2px); }
.btn-outline-white {
  background: transparent; color: #fff; padding: 16px 36px;
  border-radius: 30px; font-weight: 700; font-size: 1rem;
  border: 2px solid rgba(255,255,255,.6); cursor: pointer; transition: all .2s;
  text-decoration: none; display: inline-block;
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); }

/* ===== FOOTER ===== */
footer { background: #111; color: #aaa; padding: 50px 5% 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { font-size: 1.8rem; display: block; margin-bottom: 14px; }
.footer-brand p { font-size: .88rem; line-height: 1.7; color: #777; }
.footer-col h4 { color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 700; margin-bottom: 16px; font-size: .95rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: #777; text-decoration: none; font-size: .88rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-btn {
  width: 40px; height: 40px; border-radius: 50%; background: #222;
  display: flex; align-items: center; justify-content: center;
  color: #aaa; text-decoration: none; font-size: 1rem; transition: all .2s;
}
.social-btn:hover { background: var(--red); color: #fff; }
.footer-bottom {
  border-top: 1px solid #222; padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: .82rem; color: #555;
}

/* ===== CART FLOAT ===== */
.cart-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 998;
  background: var(--red); color: #fff; border: none; border-radius: 50px;
  padding: 14px 24px; font-weight: 700; font-size: .95rem; cursor: pointer;
  box-shadow: 0 6px 24px rgba(232,39,42,.5); display: flex; align-items: center; gap: 10px;
  transition: transform .2s;
}
.cart-float:hover { transform: scale(1.05); }
.cart-count {
  background: #fff; color: var(--red); width: 24px; height: 24px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 900;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .delivery-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .cta-btns { flex-direction: column; align-items: center; }
}