/* =========================
   GLOBAL RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f8f5f1;
  color: #1f1a17;
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

/* =========================
   CONTAINER
========================= */

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =========================
   TYPOGRAPHY
========================= */

h1,
h2,
h3,
.logo {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 3rem;
  line-height: 1.05;
  font-weight: 700;
}

h2 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.4rem;
}

p {
  color: #5a5048;
  font-size: 1rem;
}

a {
  text-decoration: none;
}

/* =========================
   NAVBAR
========================= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(248, 245, 241, 0.92);
  backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 1rem 0;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: #2a211c;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-links a {
  color: #3e332d;
  font-size: 0.95rem;
  transition: 0.25s ease;
}

.nav-links a:hover {
  opacity: 0.7;
}

.cart-btn {
  background: #2f241f;
  color: white !important;

  padding: 0.7rem 1rem;
  border-radius: 999px;

  font-size: 0.9rem;
}

/* =========================
   HERO
========================= */

.hero {
  position: relative;

  min-height: 92vh;

  display: flex;
  align-items: center;

  background:
    linear-gradient(
      rgba(16, 12, 10, 0.45),
      rgba(16, 12, 10, 0.45)
    ),
    url('https://images.unsplash.com/photo-1519864600265-abb23847ef2c?q=80&w=1600&auto=format&fit=crop');

  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;

  max-width: 650px;
  color: white;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;

  margin-bottom: 1rem;

  color: rgba(255,255,255,0.8);
}

.hero h1 {
  color: white;
  margin-bottom: 1.5rem;
}

.hero-text {
  color: rgba(255,255,255,0.85);

  margin-bottom: 2rem;

  max-width: 540px;
}

/* =========================
   BUTTONS
========================= */

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  padding: 0.95rem 1.4rem;
  border-radius: 999px;

  font-size: 0.95rem;
  transition: 0.25s ease;
}

.primary-btn {
  background: white;
  color: #1f1a17;
}

.primary-btn:hover {
  transform: translateY(-2px);
}

.secondary-btn {
  border: 1px solid rgba(255,255,255,0.35);
  color: white;
}

.secondary-btn:hover {
  background: rgba(255,255,255,0.08);
}

/* =========================
   FEATURE STRIP
========================= */

.feature-strip {
  padding: 4rem 0;
}

.features {
  display: grid;
  gap: 1.5rem;
}

.feature-card {
  background: white;

  padding: 2rem;

  border-radius: 24px;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.04);
}

.feature-card h3 {
  margin-bottom: 0.7rem;
}

/* =========================
   SIGNATURE SECTION
========================= */

.signature-section {
  padding: 5rem 0;
}

.signature-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.signature-image img {
  width: 100%;
  display: block;

  border-radius: 28px;

  object-fit: cover;

  box-shadow:
    0 18px 40px rgba(0,0,0,0.08);
}

.signature-content p {
  margin-bottom: 1.5rem;
}

/* =========================
   STATUS SECTION
========================= */

.status-section {
  padding-bottom: 5rem;
}

.status-box {
  background: #2f241f;
  color: white;

  padding: 2rem;

  border-radius: 28px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.status-label {
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
}

.open-status {
  color: #d7f3cf;
}

.status-box p {
  color: rgba(255,255,255,0.8);
}

/* =========================
   FOOTER
========================= */

.footer {
  background: #221b17;
  color: white;

  padding: 3rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer h3 {
  margin-bottom: 0.6rem;
}

.footer p {
  color: rgba(255,255,255,0.7);
}

.footer-links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
}

/* =========================
   RESPONSIVE
========================= */

@media (min-width: 768px) {

  h1 {
    font-size: 5rem;
  }

  .features {
    grid-template-columns: repeat(3, 1fr);
  }

  .signature-grid {
    grid-template-columns: 1.1fr 1fr;
  }

}

@media (max-width: 768px) {

  .nav-links {
    gap: 0.8rem;
  }

  .nav-links a {
    font-size: 0.85rem;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2rem;
  }

  .status-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: 85vh;
  }

}
/* =========================
   PAGE HERO
========================= */

.page-hero {
  padding: 6rem 0 3rem;
}

.dark-eyebrow {
  color: #8a7668;
}

.page-title {
  margin-bottom: 1.2rem;
}

.page-description {
  max-width: 700px;
  font-size: 1.05rem;
}

/* =========================
   CATEGORY FILTERS
========================= */

.category-section {
  padding-bottom: 2rem;
}

.category-wrapper {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.category-wrapper::-webkit-scrollbar {
  display: none;
}

.category-btn {
  border: none;
  background: white;

  padding: 0.8rem 1.2rem;

  border-radius: 999px;

  cursor: pointer;

  white-space: nowrap;

  transition: 0.25s ease;

  box-shadow:
    0 5px 15px rgba(0,0,0,0.04);
}

.category-btn:hover {
  transform: translateY(-2px);
}

.category-btn.active {
  background: #2f241f;
  color: white;
}

/* =========================
   MENU SECTION
========================= */

.menu-section {
  padding-bottom: 5rem;
}

.menu-grid {
  display: grid;
  gap: 2rem;
}

.menu-card {
  background: white;

  border-radius: 28px;

  overflow: hidden;

  box-shadow:
    0 12px 30px rgba(0,0,0,0.05);

  transition: 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-4px);
}

.menu-image {
  height: 260px;
  overflow: hidden;
}

.menu-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}

.menu-content {
  padding: 1.5rem;
}

.menu-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;

  margin-bottom: 1rem;
}

.price {
  font-weight: 600;
  color: #2f241f;
}

.menu-description {
  margin-bottom: 1.4rem;
}

.menu-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.availability {
  font-size: 0.9rem;
  font-weight: 500;
}

.in-stock {
  color: #2f7a3f;
}

.low-stock {
  color: #bb7b11;
}

.add-cart-btn {
  border: none;

  background: #2f241f;
  color: white;

  padding: 0.8rem 1rem;

  border-radius: 999px;

  cursor: pointer;

  transition: 0.25s ease;
}

.add-cart-btn:hover {
  opacity: 0.92;
}

/* =========================
   RESPONSIVE MENU
========================= */

@media (min-width: 768px) {

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (min-width: 1100px) {

  .menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}
/* =========================
   ABOUT PAGE
========================= */

.about-section {
  padding: 2rem 0 5rem;
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about-image img,
.process-image img {
  width: 100%;
  display: block;

  border-radius: 28px;

  object-fit: cover;

  box-shadow:
    0 18px 40px rgba(0,0,0,0.08);
}

.about-content p,
.process-content p {
  margin-bottom: 1.5rem;
}

/* =========================
   VALUES SECTION
========================= */

.values-section {
  padding-bottom: 5rem;
}

.values-header {
  margin-bottom: 2.5rem;
}

.values-grid {
  display: grid;
  gap: 1.5rem;
}

.value-card {
  background: white;

  padding: 2rem;

  border-radius: 24px;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.04);
}

.value-card h3 {
  margin-bottom: 0.8rem;
}

/* =========================
   PROCESS SECTION
========================= */

.process-section {
  padding-bottom: 5rem;
}

.process-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

/* =========================
   RESPONSIVE ABOUT
========================= */

@media (min-width: 900px) {

  .about-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-grid {
    grid-template-areas:
      "content image";
  }

}
/* =========================
   CONTACT PAGE
========================= */

.contact-section {
  padding-bottom: 5rem;
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-info {
  display: grid;
  gap: 1.5rem;
}

.contact-card {
  background: white;

  padding: 2rem;

  border-radius: 24px;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.04);
}

.contact-card h3 {
  margin-bottom: 1rem;
}

.contact-card p {
  margin-bottom: 0.7rem;
}

/* =========================
   CONTACT FORM
========================= */

.contact-form-wrapper {
  background: white;

  padding: 2rem;

  border-radius: 28px;

  box-shadow:
    0 12px 30px rgba(0,0,0,0.05);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.6rem;

  font-size: 0.95rem;
  font-weight: 500;

  color: #2f241f;
}

.form-group input,
.form-group textarea {
  border: 1px solid #e8dfd8;

  background: #fcfaf8;

  padding: 1rem;

  border-radius: 18px;

  font-size: 1rem;

  font-family: inherit;

  transition: 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;

  border-color: #2f241f;
}

textarea {
  resize: vertical;
}

.submit-btn {
  border: none;

  background: #2f241f;
  color: white;

  padding: 1rem 1.4rem;

  border-radius: 999px;

  cursor: pointer;

  font-size: 1rem;

  transition: 0.25s ease;
}

.submit-btn:hover {
  opacity: 0.92;
}

/* =========================
   MAP SECTION
========================= */

.map-section {
  padding-bottom: 5rem;
}

.map-placeholder {
  background:
    linear-gradient(
      rgba(47, 36, 31, 0.88),
      rgba(47, 36, 31, 0.88)
    ),
    url('https://images.unsplash.com/photo-1524661135-423995f22d0b?q=80&w=1600&auto=format&fit=crop');

  background-size: cover;
  background-position: center;

  padding: 5rem 2rem;

  border-radius: 32px;

  text-align: center;

  color: white;
}

.map-placeholder h3 {
  margin-bottom: 1rem;
}

.map-placeholder p {
  color: rgba(255,255,255,0.8);
}

/* =========================
   RESPONSIVE CONTACT
========================= */

@media (min-width: 900px) {

  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

}
/* =========================
   CART PAGE
========================= */

.cart-section {
  padding-bottom: 5rem;
}

.cart-grid {
  display: grid;
  gap: 2rem;
}

/* =========================
   CART ITEMS
========================= */

.cart-items-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cart-item {
  background: white;

  border-radius: 28px;

  padding: 1.2rem;

  display: flex;
  gap: 1.2rem;

  box-shadow:
    0 12px 30px rgba(0,0,0,0.05);
}

.cart-item-image {
  width: 120px;
  min-width: 120px;
  height: 120px;

  overflow: hidden;

  border-radius: 22px;
}

.cart-item-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}

.cart-item-content {
  flex: 1;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.cart-item-price {
  margin-top: 0.5rem;

  font-weight: 600;
  color: #2f241f;
}

.remove-btn {
  border: none;
  background: transparent;

  color: #b44f4f;

  cursor: pointer;

  font-size: 0.95rem;
}

/* =========================
   QUANTITY
========================= */

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 1rem;

  margin-top: 1rem;
}

.qty-btn {
  width: 36px;
  height: 36px;

  border-radius: 50%;
  border: none;

  background: #f1ebe6;

  cursor: pointer;

  font-size: 1rem;
}

.qty-value {
  font-weight: 600;
}

/* =========================
   CHECKOUT CARD
========================= */

.checkout-card {
  background: white;

  padding: 2rem;

  border-radius: 28px;

  height: fit-content;

  box-shadow:
    0 12px 30px rgba(0,0,0,0.05);
}

.checkout-card h2 {
  margin-bottom: 2rem;
}

/* =========================
   PINCODE
========================= */

.checkout-block {
  margin-bottom: 2rem;
}

.checkout-block label {
  display: block;

  margin-bottom: 0.8rem;

  font-weight: 500;
}

.pincode-row {
  display: flex;
  gap: 1rem;
}

.pincode-row input {
  flex: 1;
}

.pincode-row input,
.pincode-row button {
  padding: 1rem;

  border-radius: 16px;

  border: 1px solid #e8dfd8;
}

.pincode-row button {
  background: #2f241f;
  color: white;

  border: none;

  cursor: pointer;
}

.delivery-success {
  margin-top: 1rem;

  color: #2f7a3f;

  font-size: 0.95rem;
}

/* =========================
   ORDER SUMMARY
========================= */

.order-summary {
  margin: 2rem 0;

  padding-top: 1.5rem;

  border-top: 1px solid #eee;
}

.summary-row {
  display: flex;
  justify-content: space-between;

  margin-bottom: 1rem;
}

.total-row {
  font-size: 1.1rem;
  font-weight: 700;

  color: #2f241f;
}

/* =========================
   PLACE ORDER
========================= */

.place-order-btn {
  width: 100%;

  border: none;

  background: #2f241f;
  color: white;

  padding: 1rem;

  border-radius: 999px;

  cursor: pointer;

  font-size: 1rem;

  transition: 0.25s ease;
}

.place-order-btn:hover {
  opacity: 0.92;
}

/* =========================
   EMPTY CART
========================= */

.empty-cart {
  padding-bottom: 5rem;
}

.empty-cart-box {
  background: white;

  padding: 4rem 2rem;

  text-align: center;

  border-radius: 32px;

  box-shadow:
    0 12px 30px rgba(0,0,0,0.05);
}

.empty-cart-box h2 {
  margin-bottom: 1rem;
}

.empty-cart-box p {
  margin-bottom: 2rem;
}

.hidden {
  display: none;
}

/* =========================
   RESPONSIVE CART
========================= */

@media (min-width: 1000px) {

  .cart-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }

}

@media (max-width: 768px) {

  .cart-item {
    flex-direction: column;
  }

  .cart-item-image {
    width: 100%;
    height: 240px;
  }

  .pincode-row {
    flex-direction: column;
  }

}
/* =========================
   TOAST
========================= */

.toast {
  position: fixed;

  bottom: 24px;
  left: 50%;

  transform:
    translateX(-50%)
    translateY(20px);

  background: #2f241f;
  color: white;

  padding: 1rem 1.4rem;

  border-radius: 999px;

  opacity: 0;
  pointer-events: none;

  transition: 0.3s ease;

  z-index: 9999;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.18);
}

.toast.show {
  opacity: 1;

  transform:
    translateX(-50%)
    translateY(0);
}

.add-cart-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}