:root {
  --primary-deep: #C2492D;
  --primary-gold: #E6B422;
  --secondary-forest: #2E5A3B;
  --warm-sand: #FDF8F0;
  --dark-charcoal: #2C2B28;
  --accent-spice: #FF8C42;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--warm-sand);
  color: var(--dark-charcoal);
}

h1, h2, h3, .logo-font {
  font-family: 'Playfair Display', serif;
}

.navbar {
  background: rgba(255, 248, 240, 0.96);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border-bottom: 2px solid var(--primary-gold);
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: -0.5px;
  color: var(--primary-deep) !important;
}

.navbar-brand span {
  color: var(--primary-gold);
}

.btn-primary-custom {
  background-color: var(--primary-deep);
  border: none;
  color: white;
  transition: all 0.2s ease;
}

.btn-primary-custom:hover {
  background-color: #a83e25;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(194,73,45,0.3);
}

.btn-outline-spice {
  border: 2px solid var(--primary-deep);
  color: var(--primary-deep);
  background: transparent;
  border-radius: 40px;
  font-weight: 600;
}

.btn-outline-spice:hover {
  background: var(--primary-deep);
  color: white;
}

.hero-section {
  background: linear-gradient(105deg, #FFF3E6 0%, #FEE3C0 100%);
  padding: 4rem 0 5rem;
  border-radius: 0 0 40px 40px;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 3.3rem;
  font-weight: 800;
  color: var(--primary-deep);
}

.search-box {
  background: white;
  border-radius: 60px;
  padding: 0.3rem 0.3rem 0.3rem 1.5rem;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.category-card {
  background: white;
  border-radius: 28px;
  transition: all 0.25s;
  border: none;
  box-shadow: 0 5px 12px rgba(0,0,0,0.05);
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 28px rgba(0,0,0,0.1);
}

.category-icon {
  font-size: 2.8rem;
  color: var(--primary-deep);
}

.restaurant-card {
  border: none;
  border-radius: 28px;
  overflow: hidden;
  transition: all 0.25s ease;
  background: white;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  height: 100%;
}

.restaurant-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px rgba(0,0,0,0.12);
}

.card-img-top {
  height: 180px;
  object-fit: cover;
}

.rating-badge {
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  border-radius: 40px;
  padding: 0.2rem 0.7rem;
  font-size: 0.8rem;
  color: white;
}

.delivery-time {
  font-size: 0.8rem;
  background: #f1ede8;
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: 30px;
}

.price-tag {
  font-weight: 700;
  color: var(--primary-deep);
}

.offcanvas-cart {
  width: 380px;
}

.cart-item-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 12px;
}

.btn-add-remove {
  background: #f0ebe5;
  border: none;
  border-radius: 30px;
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .offcanvas-cart {
    width: 100%;
  }
}

.gold-border-bottom {
  border-bottom: 3px solid var(--primary-gold);
  display: inline-block;
  padding-bottom: 6px;
}

footer {
  background: #1E2A24;
  color: #ddd;
  margin-top: 4rem;
  padding: 2.5rem 0;
}