* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body {
  background: #fff;
  color: #333;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}
/* NAVBAR */
.navbar {
  background: #fff;
  border-bottom: 1px solid #eee;
}
.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}
.logo span {
  color: #c0392b;
}
.logo small {
  font-weight: 400;
  color: #999;
}
.btn-outline {
  border: 2px solid #c0392b;
  color: #c0392b;
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary {
  background: #c0392b;
  color: #fff;
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}
.hero {
  padding: 70px 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}
.badge {
  background: #ffe5cc;
  color: #c0392b;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}
.hero h2 {
  font-size: 40px;
  margin: 15px 0;
}
.hero-img img {
  width: 100%;
  border-radius: 20px;
}
.hero-cta {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 20px;
}
.price-tag {
  font-weight: 600;
  color: #555;
}

/* TRUST */
.trust {
  background: #fff6ee;
  padding: 18px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  text-align: center;
  font-weight: 600;
}

/* MENU */
.menu {
  padding: 70px 0;
}
/* MENU SLIDER */
.menu-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 280px;
  gap: 20px;
  overflow-x: auto;
  padding: 30px 4px;
  scroll-snap-type: x mandatory;
}
.menu-slider::-webkit-scrollbar {
  height: 6px;
}
.menu-slider::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 10px;
}
.menu-slider .menu-item {
  flex-direction: column;
  text-align: center;
  scroll-snap-align: start;
}
.menu-slider .menu-item img {
  width: 100%;
  height: 180px;
  margin: 0;
}
.menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.menu-item {
  display: flex;
  gap: 16px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
}
.menu-item img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
}
.menu-item span {
  color: #c0392b;
  font-weight: 700;
}
.menu.drink {
  background: #f9f9f9;
}

/* REVIEW */
.review {
  background: #f9f9f9;
  padding: 70px 0;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.review-card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

/* MAPS */
.location iframe {
  width: 100%;
  height: 300px;
  border-radius: 16px;
  border: none;
}

/* FAQ */
.faq {
  padding: 70px 0;
  background: #fff;
}
.faq h3 {
  text-align: center;
  margin-bottom: 30px;
}
.faq-item {
  background: #fafafa;
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
}
.faq-item input {
  display: none;
}
.faq-item label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  color: #333;
}
.faq-item label::after {
  content: '+';
  font-size: 22px;
  color: #c0392b;
  transition: transform 0.3s;
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fff;
}
.faq-content p {
  padding: 0 20px 18px;
  color: #555;
  line-height: 1.6;
}
.faq-item input:checked ~ .faq-content {
  max-height: 200px;
}
.faq-item input:checked + label::after {
  content: '−';
}

/* CTA */
.cta {
  background: #c0392b;
  color: #fff;
  padding: 70px 0;
  text-align: center;
}
.btn-white {
  background: #fff;
  color: #c0392b;
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 300px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

/*FOOTER*/
.footer {
  background: #111;
  color: white;
  padding: 30px 0;
  text-align: center;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.social-icons a {
  color: white;
  margin: 0 12px;
  font-size: 22px;
  transition: 0.3s ease;
  text-decoration: none;
}
.social-icons a:hover {
  color: #ff6b6b;
  transform: translateY(-3px);
}

/* FLOATING WA */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 999;
  text-decoration: none;
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-cta {
    justify-content: center;
    flex-wrap: wrap;
  }
  .menu-item {
    flex-direction: column;
    text-align: center;
  }
  .menu-item img {
    margin: auto;
  }
  .menu-slider {
    grid-auto-columns: 320px;
  }
  h1 {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  .hero h2 {
    font-size: 1.75rem;
    line-height: 1.2;
  }
}
