body {
    background-color: #f2f2f2;
    font-family: Arial, sans-serif;
}

/* NAVBAR */
.navbar {
    background: #222;
    padding: 12px 20px;
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    color: #fff;
    font-weight: bold;
    font-size: 18px;
}

.nav-links a {
    color: #fff;
    margin-left: 15px;
    text-decoration: none;
}

.nav-links a:hover {
    text-decoration: underline;
}

.badge {
    background: red;
    color: white;
    padding: 2px 6px;
    border-radius: 50%;
    font-size: 12px;
    margin-left: 4px;
}

/* PAGE */
.container {
    padding: 20px;
}

/* FOOTER */
.footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 10px;
    margin-top: 40px;
}
/* NAV LINK ACTIVE & HOVER */
.nav-links a {
    padding: 6px 10px;
    border-radius: 4px;
}

.nav-links a:hover {
    background: #444;
}

/* CART BADGE FIX */
.badge {
    position: relative;
    top: -6px;
    right: -4px;
}
/* PAGE TITLE */
.page-title {
    text-align: center;
    margin-bottom: 30px;
}

/* BUTTON */
.btn {
    background: #111;
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 5px;
    cursor: pointer;
}

.btn:hover {
    background: #333;
}
/* CART BOX */
.cart-box {
    max-width: 600px;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* CART ITEM */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

/* TOTAL */
.cart-total {
    margin-top: 20px;
    font-size: 18px;
    text-align: right;
}

/* EMPTY CART */
.empty {
    text-align: center;
    font-size: 18px;
    color: #777;
}

/* BUTTON VARIANTS */
.btn.danger {
    background: #c0392b;
}

.btn.danger:hover {
    background: #e74c3c;
}

.btn.checkout {
    width: 100%;
    margin-top: 20px;
    background: #27ae60;
}

.btn.checkout:hover {
    background: #2ecc71;
}
.page-title{
  font-size: 34px;
  margin-bottom: 18px;
}

.card{
  max-width: 760px;
  margin: 40px auto;
  background: #fff;
  border-radius: 12px;
  padding: 26px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.section-title{
  margin-top: 16px;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 18px;
}

.order-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.order-row{
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 10px;
  background: #f5f7fb;
  margin-bottom: 10px;
}

.total-row{
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 8px;
  margin-bottom: 18px;
  font-size: 18px;
}

.form{
  margin-top: 10px;
}

.form-group{
  margin-bottom: 14px;
}

.input{
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d0d6e0;
  border-radius: 10px;
  outline: none;
}

.input:focus{
  border-color: #4e8cff;
}

.btn{
  border: none;
  padding: 12px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
}

.btn-primary{
  background: #2f8f5b;
  color: white;
  width: 100%;
}

.error-text{
  color: #b00020;
  font-weight: 600;
  margin: 10px 0;
}
.success-card{
  text-align: center;
}

.success-icon{
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  background: #2f8f5b;
  color: white;
  font-size: 38px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-text{
  font-size: 17px;
  margin-bottom: 10px;
}
/* MENU GRID */
.menu-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* MENU CARD */
.menu-card{
  text-align: center;
}

.menu-card h3{
  margin-bottom: 8px;
  font-size: 20px;
}

.menu-card .price{
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 14px;
}
.menu-card{
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.btn-primary{
  background: #2f7d32;
  padding: 10px 18px;
  font-weight: 600;
}
.menu-image{
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

.menu-card{
  width: 280px;
  background: #fff;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
}
.menu-grid{
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.description{
  font-size: 14px;
  color: #555;
  margin: 8px 0 12px;
  line-height: 1.4;
}
.menu-image{
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-card:hover .menu-image{
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}
.qty-box{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.qty-box input{
  width: 50px;
  text-align: center;
  padding: 6px;
  font-size: 14px;
}

.qty-box button{
  padding: 6px 10px;
  font-size: 16px;
  border: none;
  background: #ddd;
  cursor: pointer;
  border-radius: 4px;
}

.qty-box button:hover{
  background: #ccc;
}
.admin-form {
  max-width: 400px;
  margin: 40px auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}

.admin-form label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

.admin-form input {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
}

.admin-form button {
  margin-top: 15px;
  width: 100%;
  background: #2f855a;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 6px;
}
/* ===== ADMIN ORDERS ===== */
.admin-container {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
}

.admin-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 26px;
}

.order-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.order-header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.order-header p {
    margin: 5px 0;
}

.order-total {
    color: #0a7cff;
    font-size: 18px;
}

.order-items {
    list-style: none;
    padding: 0;
    border-top: 1px solid #ddd;
    margin-top: 15px;
}

.order-items li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #ccc;
}

.order-items li span {
    font-weight: bold;
}

.no-orders {
    text-align: center;
    color: #777;
    font-size: 18px;
}
/* STATUS */
.status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-block;
    margin-top: 8px;
}

.status.pending {
    background: #fff3cd;
    color: #856404;
}

.status.delivered {
    background: #d4edda;
    color: #155724;
}

/* BUTTONS */
.order-actions {
    text-align: right;
}

.btn {
    display: inline-block;
    padding: 8px 12px;
    margin-top: 8px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
}

.status-btn {
    background: #0a7cff;
    color: #fff;
}

.delete-btn {
    background: #dc3545;
    color: #fff;
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .order-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .order-actions {
        text-align: left;
        margin-top: 10px;
    }

    .order-items li {
        flex-direction: column;
        gap: 4px;
    }
}
.hero {
    height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,0.6);
    height: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.btn-primary {
    background: #000;
    color: #fff;
    padding: 12px 25px;
    margin: 10px;
    text-decoration: none;
    border-radius: 6px;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 12px 25px;
    margin: 10px;
    text-decoration: none;
    border-radius: 6px;
}

.popular, .reviews, .delivery {
    padding: 50px 20px;
    text-align: center;
}

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

.meal-card img {
    width: 100%;
    border-radius: 8px;
}

.meal-card {
    background: #f1f1f1;
    padding: 15px;
    border-radius: 8px;
}

.review {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.delivery ul {
    list-style: none;
    padding: 0;
}

.delivery li {
    padding: 8px;
    font-size: 18px;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 170px;
    text-align: center;
}

/* View Menu Button */
.btn-menu {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-menu:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

/* WhatsApp Button */
.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: 2px solid #25D366;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}
@media (max-width: 600px) {
    .btn {
        width: 100%;
    }
}
.features {
    padding: 60px 20px;
    text-align: center;
    background: #f9f9f9;
}

.features h2 {
    margin-bottom: 30px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}

.feature-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.steps {
    padding: 60px 20px;
    text-align: center;
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: auto;
}
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #111;
    color: #fff;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 18px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-link {
    color: #bbb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    border-bottom: 2px solid #25D366;
}
.promo {
    padding: 60px 20px;
    text-align: center;
    background: #f7f7f7;
}

.promo h2 {
    margin-bottom: 30px;
    font-size: 28px;
}

.promo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: auto;
}

.promo-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.promo-card:hover {
    transform: translateY(-6px);
}

.promo-card h3 {
    margin-bottom: 10px;
}
.location {
    padding: 60px 20px;
    text-align: center;
}

.map-container {
    margin-top: 25px;
    border-radius: 15px;
    overflow: hidden;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
}
.momo-info {
    background: #f1fdf5;
    border: 1px solid #25D366;
    padding: 15px;
    border-radius: 10px;
    margin: 15px 0;
    font-size: 15px;
}