* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff8ef;
  color: #241400;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 243, 0.96);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 26px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.08);
}

.logo {
  font-weight: 900;
  color: #7a2e00;
  font-size: 20px;
}

.top-btn,
.main-btn {
  background: #16a34a;
  color: white;
  text-decoration: none;
  padding: 12px 19px;
  border-radius: 999px;
  font-weight: bold;
  display: inline-block;
}

.hero {
  min-height: 560px;
  background:
    linear-gradient(rgba(55, 20, 0, 0.7), rgba(55, 20, 0, 0.7)),
    url("https://images.unsplash.com/photo-1604329760661-e71dc83f8f26?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
}

.hero-content {
  max-width: 830px;
}

.badge {
  display: inline-block;
  background: white;
  color: #7a2e00;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: bold;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 56px;
  margin: 10px 0;
  line-height: 1.05;
}

.hero p {
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.trust-row {
  max-width: 1120px;
  margin: -35px auto 30px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}

.trust-row div {
  background: white;
  padding: 18px;
  border-radius: 18px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 10px 26px rgba(0,0,0,0.1);
}

.normal-row {
  margin: 20px 0 0;
  padding: 0;
}

.section,
.receipt,
.business-box {
  max-width: 1120px;
  margin: 26px auto;
  background: white;
  padding: 30px;
  border-radius: 26px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.section h2,
.business-box h2 {
  color: #7a2e00;
  font-size: 32px;
  margin: 0 0 8px;
}

.section-text {
  color: #6b5b4a;
  margin-top: 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(238px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.food-card {
  border: 1px solid #f0d5b5;
  border-radius: 24px;
  padding: 18px;
  background: linear-gradient(180deg, #fffaf3, #fff1dc);
  box-shadow: 0 10px 25px rgba(122, 46, 0, 0.08);
  transition: 0.25s ease;
}

.food-card:hover {
  transform: translateY(-4px);
}

.food-photo {
  width: 100%;
  height: 165px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 14px;
  background: #f3e0c6;
}

.food-card h3 {
  margin: 8px 0;
  color: #7a2e00;
}

.food-card p {
  color: #6b5b4a;
  min-height: 42px;
}

.food-card strong {
  display: block;
  font-size: 22px;
  margin-bottom: 12px;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px;
  border-radius: 15px;
  border: 1px solid #d6b48f;
  font-size: 16px;
  background: white;
}

textarea {
  min-height: 95px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: bold;
  margin-bottom: 18px;
}

.wizard-section {
  border: 2px solid #f4d2a5;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 24px 0;
}

.step {
  background: #fff3df;
  color: #7a2e00;
  padding: 13px;
  border-radius: 999px;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
}

.step.active {
  background: #16a34a;
  color: white;
}

.wizard-page {
  display: none;
}

.wizard-page.active {
  display: block;
}

.total-strip {
  position: sticky;
  bottom: 0;
  background: #fff3df;
  border: 2px solid #d97706;
  border-radius: 18px;
  padding: 18px 22px;
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.total-strip span {
  font-weight: bold;
  color: #7a2e00;
}

.total-strip strong {
  font-size: 32px;
  color: #7a2e00;
}

.info-box {
  background: #ecfdf5;
  color: #166534;
  padding: 15px;
  border-radius: 15px;
  font-weight: bold;
  margin-bottom: 18px;
}

.review-box {
  background: #fff8ef;
  border: 1px solid #f0d5b5;
  padding: 22px;
  border-radius: 20px;
}

.review-box ul {
  padding-left: 22px;
}

.wizard-buttons {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
}

button {
  padding: 16px 22px;
  border: none;
  background: #16a34a;
  color: white;
  font-size: 17px;
  font-weight: bold;
  border-radius: 16px;
  cursor: pointer;
  flex: 1;
}

button:hover {
  background: #15803d;
}

.secondary-btn {
  background: #7a2e00;
}

.secondary-btn:hover {
  background: #5e2300;
}

.receipt {
  border-left: 8px solid #16a34a;
}

.receipt h2 {
  color: #166534;
}

.business-box {
  text-align: center;
  background: linear-gradient(135deg, #7a2e00, #d97706);
  color: white;
}

.business-box h2 {
  color: white;
}

.secondary-box {
  background: linear-gradient(135deg, #241400, #7a2e00);
}

.powered {
  font-weight: bold;
  margin-top: 18px;
}

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 15px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  z-index: 999;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

.hidden {
  display: none !important;
}

footer {
  text-align: center;
  padding: 26px;
  color: #6b5b4a;
}

@media (max-width: 700px) {
  .hero {
    min-height: 460px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .topbar {
    padding: 14px;
  }

  .logo {
    font-size: 16px;
  }

  .section,
  .receipt,
  .business-box {
    margin: 18px 12px;
    padding: 20px;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .wizard-buttons {
    flex-direction: column;
  }

  .food-photo {
    height: 190px;
  }
}