/* ===== GLOBAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brown: #3b1f0e;
  --dark-brown: #2a1508;
  --gold: #c8860a;
  --light-gold: #f0a500;
  --orange: #e07b2a;
  --cream: #fdf3e3;
  --white: #ffffff;
  --text-dark: #2a1508;
  --text-light: #fdf3e3;
  --shadow: 0 4px 20px rgba(0,0,0,0.15);
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== NAVBAR ===== */
.navbar {
  background-color: var(--dark-brown);
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

.nav-logo img {
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
}

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

.nav-links a {
  color: var(--cream);
  font-weight: 400;
  font-size: 15px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--light-gold);
}

.btn-order {
  background-color: var(--gold);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 600 !important;
  transition: background 0.3s !important;
}

.btn-order:hover {
  background-color: var(--light-gold) !important;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--cream);
  font-size: 20px;
}

.nav-icons a {
  color: var(--cream);
  position: relative;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  font-size: 11px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  color: var(--cream);
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 1280px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--dark-brown);
    flex-direction: column;
    padding: 80px 30px 30px;
    z-index: 2000;
    box-shadow: -5px 0 20px rgba(0,0,0,0.3);
    gap: 10px;
  }

  .nav-links.open {
    display: flex !important;
  }

  .hamburger {
    display: block !important;
  }

  .navbar {
    padding: 10px 20px;
  }

  .nav-logo img {
    height: 55px;
    border-radius: 50%;
  }

  .nav-icons {
    display: flex !important;
    align-items: center;
    gap: 15px;
  }

  .btn-order {
    display: block;
    margin-top: 10px;
  }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--dark-brown) 0%, var(--brown) 50%, var(--gold) 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.15;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 64px;
  color: var(--white);
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 22px;
  color: var(--light-gold);
  margin-bottom: 35px;
  letter-spacing: 2px;
}

.btn-primary {
  background-color: var(--gold);
  color: var(--white);
  padding: 15px 40px;
  border-radius: 35px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background-color: var(--light-gold);
  transform: translateY(-2px);
}

/* ===== SPECIALS ===== */
.specials {
  padding: 80px 0;
  background-color: var(--white);
}

.specials h2 {
  text-align: center;
  font-size: 40px;
  color: var(--brown);
  margin-bottom: 50px;
}

.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.special-card {
  background: var(--cream);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.special-card:hover {
  transform: translateY(-5px);
}

.special-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.special-card-info {
  padding: 20px;
}

.special-card-info h3 {
  font-size: 22px;
  color: var(--brown);
  margin-bottom: 8px;
}

.special-card-info p {
  color: #666;
  font-size: 14px;
  margin-bottom: 12px;
}

.special-card-info .price {
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
}

/* ===== CATEGORIES ===== */
.categories {
  padding: 80px 0;
  background-color: var(--cream);
}

.categories h2 {
  text-align: center;
  font-size: 40px;
  color: var(--brown);
  margin-bottom: 50px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.category-card {
  background: var(--dark-brown);
  color: var(--cream);
  border-radius: 15px;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.category-card:hover {
  background: var(--gold);
  transform: translateY(-5px);
}

.category-card i {
  font-size: 40px;
  margin-bottom: 15px;
  color: var(--light-gold);
}

.category-card-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid var(--light-gold);
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-card:hover i {
  color: var(--white);
}

.category-card h3 {
  font-size: 22px;
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--dark-brown);
  color: var(--cream);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  height: 80px;
  margin-bottom: 15px;
}

.footer-col h4 {
  font-size: 18px;
  color: var(--light-gold);
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.85;
}

.footer-col p i {
  margin-right: 8px;
  color: var(--light-gold);
}

.social-links {
  display: flex;
  gap: 15px;
  font-size: 24px;
}

.social-links a {
  color: var(--cream);
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--light-gold);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 13px;
  opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1280px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero-content h1 {
    font-size: 38px;
  }

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






/* ===== AUTH UI ===== */
.btn-login {
  background-color: var(--gold);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-login:hover {
  background-color: var(--light-gold);
}

.user-menu {
  position: relative;
  cursor: pointer;
}

.user-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}

.user-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 50px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  min-width: 180px;
  padding: 10px 0;
  z-index: 999;
}

.user-menu:hover .user-dropdown {
  display: block;
}

.user-dropdown .user-name {
  padding: 10px 20px;
  font-weight: 600;
  color: var(--brown);
  border-bottom: 1px solid #eee;
  margin-bottom: 5px;
}

.user-dropdown a {
  display: block;
  padding: 8px 20px;
  color: var(--text-dark);
  font-size: 14px;
  transition: background 0.2s;
}

.user-dropdown a:hover {
  background-color: var(--cream);
  color: var(--gold);
}

/* ===== LOGIN PAGE ===== */
.login-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark-brown) 0%, var(--brown) 100%);
  padding: 40px 20px;
}

.login-card {
  background: var(--white);
  border-radius: 20px;
  padding: 50px 40px;
  width: 100%;
  max-width: 440px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.login-logo {
  height: 90px;
  margin-bottom: 20px;
}

.login-card h2 {
  font-size: 32px;
  color: var(--brown);
  margin-bottom: 8px;
}

.login-subtitle {
  color: #888;
  font-size: 15px;
  margin-bottom: 30px;
}

.btn-google {
  width: 100%;
  padding: 14px;
  border: 2px solid #ddd;
  border-radius: 12px;
  background: var(--white);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
  color: var(--text-dark);
}

.btn-google:hover {
  border-color: var(--gold);
  background: var(--cream);
}

.btn-google i {
  color: #ea4335;
  font-size: 18px;
}

.divider {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 25px 0;
  color: #aaa;
  font-size: 13px;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #eee;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.login-form input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #eee;
  border-radius: 12px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  transition: border 0.3s;
  outline: none;
}

.login-form input:focus {
  border-color: var(--gold);
}

.btn-primary-full {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background 0.3s;
}

.btn-primary-full:hover {
  background: var(--light-gold);
}

.login-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 14px;
  color: #888;
}

.login-links a {
  color: var(--gold);
  font-weight: 600;
}

.login-links a:hover {
  color: var(--brown);
}

.error-msg {
  background: #fff0f0;
  color: #c0392b;
  border: 1px solid #ffcccc;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 20px;
  font-size: 14px;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--dark-brown), var(--brown));
  padding: 80px 20px;
  text-align: center;
  color: var(--white);
}

.page-hero h1 {
  font-size: 52px;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 18px;
  color: var(--light-gold);
  letter-spacing: 1px;
}

/* ===== CLOSED BANNER ===== */
.closed-banner {
  background: #c0392b;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
}

.closed-banner i {
  margin-right: 8px;
}

/* ===== MENU SECTION ===== */
.menu-section {
  padding: 60px 0;
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  justify-content: center;
}

.filter-btn {
  padding: 10px 24px;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--brown);
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: var(--white);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.menu-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.menu-card:hover {
  transform: translateY(-5px);
}

.menu-card-img {
  position: relative;
}

.menu-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.out-of-stock-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #c0392b;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.menu-card-info {
  padding: 20px;
}

.menu-card-info h3 {
  font-size: 20px;
  color: var(--brown);
  margin-bottom: 8px;
}

.menu-card-info p {
  font-size: 14px;
  color: #888;
  margin-bottom: 15px;
  line-height: 1.5;
}

.menu-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-card-bottom .price {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
}

.btn-add {
  background: var(--gold);
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background 0.3s;
}

.btn-add:hover {
  background: var(--light-gold);
}

.btn-add.disabled {
  background: #ccc;
  cursor: not-allowed;
}

.loading-spinner {
  text-align: center;
  padding: 60px;
  font-size: 18px;
  color: #888;
}

/* ===== ITEM MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.modal-card {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 550px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--white);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 10;
}

.modal-info {
  padding: 25px;
}

.modal-info h2 {
  font-size: 28px;
  color: var(--brown);
  margin-bottom: 8px;
}

.modal-info p {
  color: #888;
  font-size: 14px;
  margin-bottom: 10px;
}

.modal-price {
  font-size: 24px !important;
  font-weight: 700;
  color: var(--gold) !important;
  margin-bottom: 20px !important;
}

.modal-extras h4,
.modal-toppings h4 {
  font-size: 16px;
  color: var(--brown);
  margin-bottom: 12px;
  margin-top: 20px;
}

.extra-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}

.extra-option:hover {
  background: var(--cream);
}

.extra-option span {
  margin-left: auto;
  color: var(--gold);
  font-weight: 600;
}

.extra-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.special-request {
  margin-top: 20px;
}

.special-request label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 8px;
}

.special-request textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #eee;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  resize: none;
  height: 80px;
  outline: none;
  transition: border 0.3s;
}

.special-request textarea:focus {
  border-color: var(--gold);
}

.quantity-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.quantity-selector button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  font-size: 20px;
  color: var(--gold);
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s;
}

.quantity-selector button:hover {
  background: var(--gold);
  color: white;
}

.quantity-selector span {
  font-size: 22px;
  font-weight: 700;
  color: var(--brown);
  min-width: 30px;
  text-align: center;
}

/* ===== CART NOTIFICATION ===== */
.cart-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--brown);
  color: white;
  padding: 15px 25px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 3000;
  animation: slideIn 0.3s ease;
}

.cart-notification i {
  margin-right: 8px;
  color: var(--light-gold);
}

@keyframes slideIn {
  from { transform: translateX(100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ===== CART PAGE ===== */
.cart-section {
  padding: 60px 0;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.cart-card {
  display: flex;
  gap: 20px;
  background: var(--white);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.cart-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.cart-card-info {
  flex: 1;
}

.cart-card-info h3 {
  font-size: 18px;
  color: var(--brown);
  margin-bottom: 5px;
}

.cart-extras {
  font-size: 13px;
  color: #888;
  margin-bottom: 4px;
}

.cart-card-bottom {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 12px;
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px solid #eee;
  border-radius: 25px;
  padding: 4px 12px;
}

.cart-qty button {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--gold);
  font-weight: 700;
}

.cart-qty span {
  font-weight: 600;
  font-size: 16px;
}

.cart-card-bottom .price {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin-left: auto;
}

.btn-remove {
  background: none;
  border: none;
  color: #ccc;
  font-size: 16px;
  cursor: pointer;
  transition: color 0.3s;
}

.btn-remove:hover {
  color: #c0392b;
}

/* ===== CART SUMMARY ===== */
.cart-summary {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
}

.cart-summary h3 {
  font-size: 24px;
  color: var(--brown);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--cream);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 15px;
  color: #666;
}

.summary-row.total {
  font-size: 20px;
  font-weight: 700;
  color: var(--brown);
  border-top: 2px solid var(--cream);
  padding-top: 15px;
  margin-top: 10px;
}

.order-type-selector,
.payment-selector {
  margin: 20px 0;
}

.order-type-selector h4,
.payment-selector h4 {
  font-size: 15px;
  color: var(--brown);
  margin-bottom: 12px;
}

.order-type-btns {
  display: flex;
  gap: 10px;
}

.type-btn {
  flex: 1;
  padding: 10px;
  border: 2px solid #eee;
  border-radius: 10px;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s;
  color: #888;
}

.type-btn:hover,
.type-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: #fff8ee;
}

.type-btn i {
  margin-right: 5px;
}

.split-toggle {
  margin: 15px 0;
  font-size: 14px;
  color: var(--brown);
}

.split-toggle input {
  accent-color: var(--gold);
  margin-right: 8px;
}

.split-info {
  font-size: 15px;
  color: var(--brown);
  margin-bottom: 5px;
}

.split-info-small {
  font-size: 12px;
  color: #888;
}

.continue-shopping {
  display: block;
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  color: #888;
  transition: color 0.3s;
}

.continue-shopping:hover {
  color: var(--gold);
}

/* ===== EMPTY CART ===== */
.empty-cart {
  text-align: center;
  padding: 80px 20px;
}

.empty-cart i {
  font-size: 60px;
  color: #ddd;
  margin-bottom: 20px;
}

.empty-cart h3 {
  font-size: 28px;
  color: var(--brown);
  margin-bottom: 10px;
}

.empty-cart p {
  color: #888;
  margin-bottom: 25px;
}

/* ===== RESPONSIVE CART ===== */
@media (max-width: 768px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
}

/* ===== CHECKOUT PAGE ===== */
.checkout-section {
  padding: 60px 0;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.checkout-form {
  background: var(--white);
  border-radius: 15px;
  padding: 35px;
  box-shadow: var(--shadow);
}

.checkout-form h3 {
  font-size: 24px;
  color: var(--brown);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--cream);
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #eee;
  border-radius: 12px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  transition: border 0.3s;
  outline: none;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group input[readonly] {
  background: var(--cream);
  color: #888;
}

.form-group textarea {
  height: 100px;
  resize: none;
}

.address-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 12px;
  z-index: 100;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: var(--shadow);
}

.suggestion-item {
  padding: 12px 18px;
  font-size: 13px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  transition: background 0.2s;
}

.suggestion-item:hover {
  background: var(--cream);
  color: var(--brown);
}

.map-container {
  margin-top: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.map-confirm {
  font-size: 13px;
  color: #27ae60;
  margin-top: 8px;
  font-weight: 600;
}

.map-confirm i {
  margin-right: 5px;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.summary-divider {
  border-top: 1px solid #eee;
  margin: 15px 0;
}

.payment-badge {
  background: var(--cream);
  border: 2px solid var(--gold);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--brown);
  margin: 15px 0;
}

.payment-badge i {
  margin-right: 8px;
  color: var(--gold);
}

.split-info-box {
  background: #fff8ee;
  border: 2px solid var(--light-gold);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  font-size: 14px;
  color: var(--brown);
  margin: 15px 0;
}

.split-info-box i {
  margin-right: 8px;
  color: var(--gold);
}

/* ===== RESPONSIVE CHECKOUT ===== */
@media (max-width: 768px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }
}

/* ===== ORDER CONFIRMATION ===== */
.confirmation-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark-brown), var(--brown));
  padding: 40px 20px;
}

.confirmation-card {
  background: var(--white);
  border-radius: 20px;
  padding: 50px 40px;
  width: 100%;
  max-width: 580px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.confirmation-icon {
  font-size: 70px;
  color: #27ae60;
  margin-bottom: 20px;
}

.confirmation-card h1 {
  font-size: 36px;
  color: var(--brown);
  margin-bottom: 10px;
}

.confirmation-subtitle {
  color: #888;
  font-size: 16px;
  margin-bottom: 30px;
}

.order-number-box {
  background: var(--cream);
  border: 2px dashed var(--gold);
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 30px;
}

.order-number-box p {
  font-size: 13px;
  color: #888;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.order-number-box h2 {
  font-size: 32px;
  color: var(--brown);
  letter-spacing: 3px;
}

.confirmation-details {
  text-align: left;
  margin-bottom: 25px;
}

.confirmation-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  color: #666;
}

.confirmation-row span:first-child {
  font-weight: 600;
  color: var(--brown);
}

.confirmation-row span:first-child i {
  margin-right: 8px;
  color: var(--gold);
}

.confirmation-row.total-row {
  font-size: 18px;
  font-weight: 700;
  color: var(--brown);
}

.maps-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
}

.maps-link:hover {
  color: var(--brown);
}

.order-items-list {
  margin-top: 20px;
}

.order-items-list h4 {
  font-size: 16px;
  color: var(--brown);
  margin-bottom: 12px;
}

.confirmation-item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #666;
  padding: 8px 0;
  border-bottom: 1px solid #f5f5f5;
}

.confirmation-email-note {
  font-size: 13px;
  color: #888;
  margin-bottom: 25px;
}

.confirmation-email-note i {
  margin-right: 6px;
  color: var(--gold);
}

.confirmation-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--white);
}

/* ===== ABOUT PAGE ===== */
.about-section {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-image {
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
}

.about-content h2 {
  font-size: 38px;
  color: var(--brown);
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 30px;
  margin-top: 35px;
}

.stat {
  text-align: center;
  background: var(--cream);
  border-radius: 15px;
  padding: 20px 25px;
  flex: 1;
}

.stat h3 {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 5px;
}

.stat p {
  font-size: 13px;
  color: #888;
  margin: 0;
}

/* ===== VALUES SECTION ===== */
.values-section {
  text-align: center;
}

.values-section h2 {
  font-size: 40px;
  color: var(--brown);
  margin-bottom: 50px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.value-card {
  background: var(--white);
  border-radius: 15px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card i {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 15px;
}

.value-card h3 {
  font-size: 20px;
  color: var(--brown);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}

/* ===== RESPONSIVE ABOUT ===== */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-stats {
    flex-direction: column;
    gap: 15px;
  }
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2,
.contact-form-card h2 {
  font-size: 36px;
  color: var(--brown);
  margin-bottom: 15px;
}

.contact-info > p {
  color: #888;
  font-size: 15px;
  margin-bottom: 35px;
  line-height: 1.7;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 15px;
  color: var(--brown);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 14px;
  color: #888;
}

.opening-hours {
  background: var(--cream);
  border-radius: 15px;
  padding: 25px;
  margin-top: 30px;
}

.opening-hours h3 {
  font-size: 20px;
  color: var(--brown);
  margin-bottom: 20px;
}

.opening-hours h3 i {
  margin-right: 10px;
  color: var(--gold);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e8ddd0;
  font-size: 14px;
  color: #666;
}

.hours-row span:first-child {
  font-weight: 600;
  color: var(--brown);
}

.contact-form-card {
  background: var(--white);
  border-radius: 15px;
  padding: 35px;
  box-shadow: var(--shadow);
}

.form-success {
  background: #f0fff4;
  border: 2px solid #27ae60;
  border-radius: 10px;
  padding: 15px;
  color: #27ae60;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 20px;
}

.form-success i {
  margin-right: 8px;
}

/* ===== RESPONSIVE CONTACT ===== */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .btn-primary {
    padding: 12px 28px;
    font-size: 15px;
  }

  .specials h2,
  .categories h2,
  .values-section h2 {
    font-size: 28px;
  }

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

  .cart-card {
    flex-direction: column;
  }

  .cart-card img {
    width: 100%;
    height: 150px;
  }

  .checkout-layout,
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .confirmation-card {
    padding: 30px 20px;
  }

  .confirmation-actions {
    flex-direction: column;
  }

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

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

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

  .navbar {
    padding: 12px 20px;
  }

  .nav-logo img {
    height: 45px;
  }

  .modal-card {
    margin: 10px;
  }

  .login-card {
    padding: 30px 20px;
  }

  .order-type-btns {
    flex-direction: column;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

/* ===== PROFILE PAGE ===== */
.profile-section {
  padding: 60px 0;
}

.profile-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: start;
}

.profile-card {
  background: var(--white);
  border-radius: 15px;
  padding: 35px;
  box-shadow: var(--shadow);
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 2px solid var(--cream);
}

.profile-avatar {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  flex-shrink: 0;
}

.profile-header h2 {
  font-size: 22px;
  color: var(--brown);
  margin-bottom: 4px;
}

.profile-header p {
  font-size: 14px;
  color: #888;
}

.profile-card h3 {
  font-size: 18px;
  color: var(--brown);
  margin-bottom: 20px;
}

.orders-card {
  background: var(--white);
  border-radius: 15px;
  padding: 35px;
  box-shadow: var(--shadow);
}

.orders-card h3 {
  font-size: 22px;
  color: var(--brown);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--cream);
}

.my-order-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 15px;
  border-left: 4px solid var(--gold);
}

.my-order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px;
}

.my-order-number {
  font-weight: 700;
  font-size: 16px;
  color: var(--brown);
}

.my-order-date {
  font-size: 13px;
  color: #888;
}

.my-order-status {
  font-size: 12px;
  font-weight: 700;
}

.my-order-items {
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
  line-height: 1.6;
}

.my-order-total {
  font-size: 15px;
  color: var(--brown);
}

.my-order-total strong {
  color: var(--gold);
}

.empty-orders {
  text-align: center;
  padding: 40px;
  color: #888;
}

.empty-orders i {
  font-size: 40px;
  margin-bottom: 15px;
  color: #ddd;
  display: block;
}

.empty-orders a {
  color: var(--gold);
  font-weight: 600;
}

@media (max-width: 768px) {
  .profile-layout {
    grid-template-columns: 1fr;
  }
}

/* ===== PAYMENT PAGE ===== */
.card-element {
  border: 2px solid #eee;
  border-radius: 12px;
  padding: 15px 18px;
  background: var(--white);
  transition: border 0.3s;
  margin-top: 20px;
}

.card-element:focus-within {
  border-color: var(--gold);
}

.payment-summary {
  margin-bottom: 10px;
}

.split-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.split-tab {
  flex: 1;
  padding: 10px;
  border: 2px solid #eee;
  border-radius: 10px;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s;
}

.split-tab.active {
  border-color: var(--gold);
  color: var(--gold);
  background: #fff8ee;
}

.split-status {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.user-name-btn {
    background: var(--gold);
      color: white;
        padding: 8px 18px;
          border-radius: 25px;
            font-size: 14px;
              font-weight: 600;
                cursor: pointer;
                }
     
                
                /* ===== CATEGORY IMAGE BOXES ===== */
                .category-card-img-box {
                  text-decoration: none;
                    border-radius: 15px;
                      overflow: hidden;
                        box-shadow: var(--shadow);
                          transition: transform 0.3s;
                            display: block;
                            }

                            .category-card-img-box:hover {
                              transform: translateY(-5px);
                              }

                              .category-card-inner {
                                width: 100%;
                                  height: 200px;
                                    background-size: cover;
                                      background-position: center;
                                        position: relative;
                                        }

                                        .category-card-overlay {
                                          position: absolute;
                                            bottom: 0;
                                              left: 0;
                                                right: 0;
                                                  background: linear-gradient(transparent, rgba(42,21,8,0.85));
                                                    padding: 20px;
                                                      text-align: center;
                                                      }

                                                      .category-card-overlay h3 {
                                                        color: white;
                                                          font-size: 22px;
                                                            text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
                                                            }

                                                            /* ===== MOBILE HAMBURGER MENU ===== */
                                                            .hamburger {
                                                              display: none;
                                                                color: var(--cream);
                                                                  font-size: 24px;
                                                                    cursor: pointer;
                                                                    }

                                                                    @media (max-width: 768px) {
                                                                      .nav-links {
                                                                          display: none;
                                                                              position: fixed;
                                                                                  top: 0;
                                                                                      right: 0;
                                                                                          width: 280px;
                                                                                              height: 100vh;
                                                                                                  background: var(--dark-brown);
                                                                                                      flex-direction: column;
                                                                                                          padding: 80px 30px 30px;
                                                                                                              z-index: 2000;
                                                                                                                  box-shadow: -5px 0 20px rgba(0,0,0,0.3);
                                                                                                                      gap: 10px;
                                                                                                                        }

                                                                                                                          .nav-links.open {
                                                                                                                              display: flex;
                                                                                                                                }

                                                                                                                                  .nav-links a {
                                                                                                                                      font-size: 18px;
                                                                                                                                          padding: 12px 0;
                                                                                                                                              border-bottom: 1px solid rgba(255,255,255,0.1);
                                                                                                                                                }

                                                                                                                                                  .hamburger {
                                                                                                                                                      display: block;
                                                                                                                                                        }

                                                                                                                                                          .nav-icons {
                                                                                                                                                              display: flex;
                                                                                                                                                                  align-items: center;
                                                                                                                                                                      gap: 15px;
                                                                                                                                                                        }
                                                                                                                                                                        }

                                                                                                                                                                        @media (max-width: 480px) {
  .hamburger {
    display: none !important;
  }
}

@media (min-width: 481px) {
  .hamburger {
    display: none !important;
  }
}

/* ===== NEW MENU PAGE STYLE ===== */
body.menu-page {
  background: #f8f8f8;
}

.menu-navbar {
  background: white !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important;
  padding: 12px 20px !important;
}

.menu-title-nav {
  flex: 1;
  text-align: center;
}

.menu-title-nav h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-brown);
  line-height: 1.2;
  letter-spacing: 1px;
}

.menu-navbar .nav-logo img {
  height: 45px;
  border-radius: 50%;
}

.cart-icon-menu {
  position: relative;
  color: var(--dark-brown) !important;
  font-size: 22px;
}

.cart-icon-menu .cart-count {
  background: var(--gold);
}

.menu-header {
  padding: 20px 20px 5px;
  background: white;
}

.menu-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--dark-brown);
}

/* ===== CATEGORY SCROLL ===== */
.category-scroll-container {
  background: white;
  padding: 10px 0 15px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.category-scroll-container::-webkit-scrollbar {
  display: none;
}

.category-scroll {
  display: flex;
  gap: 10px;
  padding: 0 20px;
  width: max-content;
}

.category-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #f5f5f5;
  border: 2px solid transparent;
  border-radius: 16px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #666;
  transition: all 0.3s;
  min-width: 80px;
  white-space: nowrap;
}

.category-pill.active {
  background: var(--cream);
  border-color: var(--gold);
  color: var(--brown);
}

.category-pill img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 12px;
}

/* ===== NEW MENU GRID ===== */
.menu-section-new {
  padding: 20px;
}

.menu-grid-new {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.menu-card-new {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 0.2s;
  position: relative;
}

.menu-card-new:hover {
  transform: translateY(-3px);
}

.menu-card-new.out-of-stock-card {
  opacity: 0.6;
}

.menu-card-new-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.menu-card-new-info {
  padding: 18px 20px 20px;
}

.menu-card-new-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--dark-brown);
  margin-bottom: 8px;
}

.menu-card-new-info p {
  font-size: 14px;
  color: #888;
  line-height: 1.5;
  margin-bottom: 15px;
}

.menu-card-new-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-card-new-bottom .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
}

.btn-add-new-style {
  background: var(--gold);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background 0.3s;
}

.btn-add-new-style:hover {
  background: var(--light-gold);
}

.btn-add-new-style.disabled {
  background: #ccc;
  cursor: not-allowed;
}

.out-of-stock-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #e74c3c;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .menu-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1200px) {
  .menu-grid-new {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== NOTIFICATIONS ===== */
.notif-container {
  position: relative;
}

.notif-bell {
  position: relative;
  cursor: pointer;
  color: var(--cream);
  font-size: 20px;
  padding: 5px;
}

.menu-navbar .notif-bell {
  color: var(--dark-brown);
}

.notif-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #e74c3c;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notif-panel {
  position: absolute;
  top: 45px;
  right: 0;
  width: 320px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  z-index: 3000;
  overflow: hidden;
}

.notif-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: var(--dark-brown);
  color: white;
}

.notif-header h4 {
  font-size: 16px;
  color: white;
}

.notif-header button {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 12px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}

.notif-item {
  padding: 12px 20px;
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.2s;
}

.notif-item.unread {
  background: #fff8ee;
  border-left: 3px solid var(--gold);
}

.notif-message {
  font-size: 14px;
  color: var(--dark-brown);
  margin-bottom: 4px;
  font-weight: 600;
}

.notif-time {
  font-size: 12px;
  color: #aaa;
}

#notif-list {
  max-height: 300px;
  overflow-y: auto;
}