* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fefaf5;
  color: #1e1e2a;
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navbar */
.navbar {
  background: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(2px);
  border-bottom: 1px solid #ffe3cf;
}
.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  flex-wrap: wrap;
}
.logo h2 {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #d35400, #e67e22);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
}
.logo span {
  font-size: 0.85rem;
  font-weight: 500;
  color: #e67e22;
  background: #fff0e5;
  padding: 2px 8px;
  border-radius: 30px;
  margin-left: 8px;
}
.nav-links a {
  text-decoration: none;
  margin-left: 28px;
  font-weight: 600;
  color: #4a2e1e;
  transition: 0.2s;
}
.nav-links a:hover {
  color: #e67e22;
}
.cart-icon {
  position: relative;
  cursor: pointer;
  font-size: 1.5rem;
  color: #e67e22;
}
.cart-count {
  position: absolute;
  top: -8px;
  right: -12px;
  background: #e67e22;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 30px;
}

/* Hero */
.hero {
  background: linear-gradient(110deg, #fff6ed 0%, #ffede1 100%);
  border-radius: 0 0 40px 40px;
  margin-top: 8px;
  padding: 48px 0 56px;
}
.hero-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}
.hero-text {
  flex: 1;
}
.badge-disc {
  background: #ff4d4d;
  color: white;
  display: inline-block;
  padding: 6px 18px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 20px;
  box-shadow: 0 6px 14px rgba(255,77,77,0.2);
}
.hero-text h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: #2e241f;
}
.hero-text p {
  font-size: 1.1rem;
  margin: 20px 0 24px;
  color: #5a4a3a;
  max-width: 90%;
}
.discount-code {
  background: white;
  border-radius: 60px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px 8px 24px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
  flex-wrap: wrap;
}
.discount-code span:first-child {
  font-weight: 700;
}
.code {
  font-family: monospace;
  background: #fee3c0;
  padding: 5px 12px;
  border-radius: 40px;
  font-weight: 700;
  letter-spacing: 1px;
}
.hero-img {
  flex: 1;
  text-align: center;
}
.hero-img img {
  max-width: 100%;
  width: 320px;
  border-radius: 50%;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,0.1));
  aspect-ratio: 1/1;
  object-fit: cover;
}

/* Section Title */
.section-title {
  text-align: center;
  margin: 64px 0 32px;
}
.section-title h2 {
  font-size: 2.4rem;
  font-weight: 800;
  position: relative;
  display: inline-block;
}
.section-title h2:after {
  content: '';
  display: block;
  width: 60%;
  height: 4px;
  background: #e67e22;
  margin: 8px auto 0;
  border-radius: 4px;
}
.section-title p {
  color: #a56b3a;
  margin-top: 8px;
}

/* Menu Cards */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}
.card {
  background: white;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 35px rgba(0,0,0,0.1);
}
.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-content {
  padding: 18px 18px 22px;
}
.card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.card-desc {
  color: #7f6b5c;
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.price {
  font-weight: 800;
  font-size: 1.4rem;
  color: #e67e22;
  margin: 8px 0;
}
.order-btn {
  background: #e67e22;
  border: none;
  color: white;
  padding: 10px 0;
  width: 100%;
  border-radius: 40px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
}
.order-btn:hover {
  background: #cf711f;
}

/* Contact */
.contact-section {
  background: #2e241f;
  color: #f5e6da;
  margin-top: 60px;
  padding: 48px 0 20px;
}
.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.contact-info p {
  margin: 12px 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-wa {
  background: #3b2c24;
  padding: 24px 28px;
  border-radius: 36px;
  min-width: 260px;
}
.contact-wa h4 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.wa-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: white;
  padding: 14px 28px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  margin: 16px 0 12px;
  transition: 0.2s;
}
.wa-button:hover {
  background: #20b859;
  transform: scale(1.02);
}
.wa-note {
  display: block;
  font-size: 0.75rem;
  opacity: 0.7;
}
.footer-bottom {
  text-align: center;
  padding-top: 40px;
  margin-top: 30px;
  border-top: 1px solid #5f4a3a;
  font-size: 0.8rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 200;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.65);
  align-items: center;
  justify-content: center;
}
.modal-content {
  background-color: white;
  margin: auto;
  padding: 28px;
  width: 90%;
  max-width: 500px;
  border-radius: 36px;
  position: relative;
  animation: fadein 0.2s;
}
@keyframes fadein {
  from { opacity: 0; transform: scale(0.96);}
  to { opacity: 1; transform: scale(1);}
}
.close-modal {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.cart-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding: 12px 0;
}
.cart-total {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 20px 0;
  text-align: right;
}
.cart-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.checkout-wa {
  background: #25D366;
  border: none;
  padding: 12px 18px;
  border-radius: 40px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}
.clear-cart {
  background: #e0cfc0;
  border: none;
  padding: 12px 18px;
  border-radius: 40px;
  font-weight: bold;
  cursor: pointer;
}
.discount-note {
  font-size: 0.7rem;
  margin-top: 16px;
  background: #fff2e5;
  padding: 6px;
  border-radius: 20px;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.2rem;
  }
  .nav-links a {
    margin-left: 18px;
    font-size: 0.9rem;
  }
  .section-title h2 {
    font-size: 1.8rem;
  }
  .contact-container {
    flex-direction: column;
  }
  .discount-code {
    font-size: 0.8rem;
  }
}