@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --primary: #d2691e;       /* Terracotta Orange */
  --primary-hover: #b05214; /* Deep Terracotta */
  --bg-main: #fcf8f2;       /* Ultra-clean warm background */
  --bg-cream: #f4ebd9;      /* Smooth cream sections */
  --bg-card: #ffffff;       /* Pure white for modern cards */
  --text-dark: #3e311a;     /* Deep traditional brown text */
  --text-muted: #7d6b54;    /* Lighter earthy brown text */
  --dark-header: #4a3b2c;   /* Dark chocolate for header/footer */
  --accent-gold: #ff9f43;   /* Highlighting gold */
  
  --radius-pill: 50px;
  --radius-lg: 16px;        /* Standard modern border radius (fillets) */
  --radius-sm: 8px;
  
  --shadow-sm: 0 4px 10px rgba(74, 59, 44, 0.05);
  --shadow-md: 0 8px 24px rgba(74, 59, 44, 0.08);
  --shadow-hover: 0 16px 36px rgba(74, 59, 44, 0.15);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base resets */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Improved Custom Scrollbar styling */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--bg-cream);
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-cream);
  border-radius: var(--radius-pill);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: var(--radius-pill);
  border: 2px solid var(--bg-cream);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-hover);
}

body {
  margin: 0;
  color: var(--text-dark);
  background: var(--bg-main);
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  font-weight: 600;
}

/* Header & Sticky Navigation — Compact */
header {
  background: var(--dark-header);
  padding: 7px 0;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 94%;
  margin: 0 auto;
  overflow: visible;
  gap: 16px;
}

header .logo-area {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

header .logo-link {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

header .logo {
  height: 36px;
  width: auto;
  transition: var(--transition);
  filter: brightness(0) invert(0.95) drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

header .logo-link:hover .logo {
  transform: scale(1.05);
}

header h1 {
  font-size: 16px;
  color: var(--bg-card);
  margin: 0;
  background: transparent;
  font-family: 'Outfit', sans-serif;
  text-align: left;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

/* Nav links styling */
header nav {
  display: flex;
  gap: 3px;
  align-items: center;
  background: transparent;
  padding: 0;
  margin-left: auto;
  flex-wrap: wrap;
}

header nav a {
  color: var(--bg-cream);
  padding: 5px 10px;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid transparent;
  white-space: nowrap;
}

header nav a i {
  margin: 0;
  font-size: 11px;
}

header nav a:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 3px 10px rgba(210, 105, 30, 0.25);
  transform: translateY(-1px);
}

header nav a.active {
  background: var(--primary-hover);
  color: #fff;
  box-shadow: 0 3px 10px rgba(176, 82, 20, 0.3);
}

/* ===== Hamburger Button ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
  flex-shrink: 0;
  margin-left: 8px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bg-cream);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Mobile Nav Overlay ===== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1050;
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.open {
  display: block;
  opacity: 1;
}

/* General layout container */
.container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), 
              url('../Assets/Images/hero-bg.png') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 20px;
  margin-bottom: 40px;
}

.hero p {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 500;
  background: transparent;
  padding: 0;
  margin-bottom: 20px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .hero p {
    font-size: 24px;
  }
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(210, 105, 30, 0.3);
  transition: var(--transition);
}

.btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(210, 105, 30, 0.4);
}

/* Landing Banner */
.banner {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
              url('../Assets/Images/hero-bg.png') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  margin-bottom: 0;
}

.banner h1 {
  background: rgba(0, 0, 0, 0.4);
  padding: 15px 30px;
  border-radius: var(--radius-lg);
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

/* Intro Section */
.intro {
  padding: 60px 20px;
  text-align: center;
  background: var(--bg-cream);
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  margin-top: 40px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
}

/* Showcase grid styles */
.product-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px 0;
  max-width: 1200px;
  margin: 0 auto 50px auto;
  width: 90%;
}

.product {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 24px;
  transition: var(--transition);
  border: 1px solid rgba(125, 107, 84, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0;
  max-width: none;
}

.product img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 15px;
  transition: var(--transition);
}

.product h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--primary-hover);
}

.product p {
  font-size: 14px;
  color: var(--text-muted);
  flex-grow: 1;
}

.product:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.product:hover img {
  transform: scale(1.02);
}

/* Filter Sections */
.filter-container, .filter-section {
  background-color: var(--bg-cream);
  padding: 20px;
  border-radius: var(--radius-lg);
  margin: 30px auto;
  display: flex;
  justify-content: center;
  gap: 15px;
  max-width: 800px;
  width: 90%;
  box-shadow: var(--shadow-sm);
  align-items: center;
  flex-wrap: wrap;
}

.filter-container h3 {
  margin: 0;
  font-size: 16px;
  color: var(--text-dark);
}

.filter-container select, .filter-section select, .filter-section input {
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(125, 107, 84, 0.25);
  background-color: var(--bg-card);
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.filter-container select:focus, .filter-section select:focus, .filter-section input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(210, 105, 30, 0.15);
}

/* Dynamic Cards Grid (Menu Page & Spices Page) */
.menu-container, .spice-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px 0;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto 60px auto;
}

.recipe-card, .spice-card {
  background-color: var(--bg-card);
  border: 1px solid rgba(125, 107, 84, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: var(--transition);
  margin: 0;
  width: auto;
  height: auto;
}

.recipe-card:hover, .spice-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.recipe-card img, .spice-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

.recipe-card h3, .spice-card h3 {
  font-size: 18px;
  margin: 15px 15px 8px 15px;
  color: var(--text-dark);
}

.recipe-card p, .spice-card p {
  font-size: 13px;
  padding: 0 15px;
  color: var(--text-muted);
  flex-grow: 1;
  line-height: 1.5;
}

.recipe-card .price, .spice-card .price {
  font-weight: 600;
  margin: 12px 0;
  font-size: 16px;
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
}

.recipe-card button, .spice-card button {
  padding: 10px 20px;
  margin: 0 15px 20px 15px;
  border: none;
  border-radius: var(--radius-pill);
  background-color: var(--primary);
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.recipe-card button:hover, .spice-card button:hover {
  background-color: var(--primary-hover);
  transform: scale(1.02);
}

/* Featured Recipes Flip-Cards */
.featured-recipes {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto 60px auto;
}

.featured-recipes .card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.card {
  height: 330px;
  perspective: 1000px;
  margin-top: 0;
}

.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(125, 107, 84, 0.08);
}

.card-front {
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.card-front img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.card-front h3 {
  margin: 15px 0;
  font-size: 18px;
  color: var(--text-dark);
}

.card-back {
  background: var(--bg-cream);
  transform: rotateY(180deg);
  padding: 24px;
  overflow-y: auto;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
}

.card-back h3 {
  font-size: 16px;
  color: var(--primary-hover);
  margin-bottom: 10px;
  border-bottom: 2px solid rgba(210, 105, 30, 0.15);
  padding-bottom: 4px;
}

.card-back ul {
  list-style-type: none;
  margin-bottom: 15px;
}

.card-back li {
  margin-bottom: 4px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-back li:before {
  content: "•";
  color: var(--primary);
  font-weight: bold;
}

.card-back p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Recipes.html Overlay Grid Card Styles */
.recipe-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 20px 0;
  max-width: 1200px;
  width: 90%;
  margin: 20px auto 40px auto;
}

/* Redefined overlay card */
.recipe-container .recipe-card {
  position: relative;
  height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: var(--transition);
}

.recipe-container .recipe-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recipe-container .recipe-card .info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(62, 49, 26, 0.95) 40%);
  color: #fff;
  padding: 30px 20px 20px 20px;
  font-size: 13px;
  text-align: left;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.recipe-container .recipe-card:hover .info {
  opacity: 1;
  transform: translateY(0);
}

.recipe-container .recipe-card .info strong {
  font-size: 15px;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 6px;
}

/* Descriptions & text layout */
.description {
  max-width: 800px;
  margin: 30px auto;
  padding: 0 20px;
  text-align: center;
  line-height: 1.8;
  font-size: 15px;
  color: var(--text-muted);
}

/* Checkout and Legal forms */
.form-container, .checkout-container, .contact-section {
  max-width: 800px;
  margin: 30px auto 60px auto;
  background-color: var(--bg-card);
  padding: 35px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(125, 107, 84, 0.08);
}

.checkout-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.order-summary, .checkout-form {
  width: 100%;
}

.order-summary h2, .checkout-form h2, .form-container h2 {
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(125, 107, 84, 0.1);
  padding-bottom: 8px;
}

.order-summary ul {
  list-style-type: none;
  padding: 0;
}

.order-summary li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  border-bottom: 1px dashed rgba(125, 107, 84, 0.2);
  padding-bottom: 8px;
  font-size: 14px;
}

.order-summary .total {
  font-weight: 600;
  font-size: 16px;
  color: var(--primary-hover);
  border-bottom: 2px solid var(--primary);
  padding-top: 8px;
  margin-top: 15px;
}

form {
  display: flex;
  flex-direction: column;
}

form label {
  margin-bottom: 6px;
  font-weight: 500;
  color: var(--text-dark);
  font-size: 13px;
}

form input[type="text"], 
form input[type="email"], 
form input[type="tel"], 
form input[type="password"], 
form input[type="number"], 
form select, 
form textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 18px;
  border: 1px solid rgba(125, 107, 84, 0.25);
  border-radius: var(--radius-sm);
  background-color: var(--bg-main);
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

form input:focus, form select:focus, form textarea:focus {
  border-color: var(--primary);
  background-color: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(210, 105, 30, 0.15);
}

/* Custom File Upload Styling for Recipes */
form input[type="file"] {
  display: block;
  width: 100%;
  padding: 12px;
  background-color: var(--bg-main);
  border: 1px dashed rgba(125, 107, 84, 0.4);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
  margin-bottom: 18px;
}

form input[type="file"]::file-selector-button {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  cursor: pointer;
  margin-right: 12px;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(210, 105, 30, 0.15);
}

form input[type="file"]::file-selector-button:hover {
  background: var(--primary-hover);
}

form input[type="file"]:hover {
  border-color: var(--primary);
  background-color: rgba(210, 105, 30, 0.02);
}

form button, form input[type="submit"] {
  padding: 12px;
  background-color: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(210, 105, 30, 0.2);
}

form button:hover, form input[type="submit"]:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(210, 105, 30, 0.3);
}

/* Local Chefs Grid */
.chef-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px 0;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto 60px auto;
}

.chef-card {
  background-color: var(--bg-card);
  border: 1px solid rgba(125, 107, 84, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.chef-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.chef-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition);
}

.chef-card .info {
  padding: 20px;
  text-align: center;
}

.chef-card h3 {
  margin-bottom: 6px;
  font-size: 18px;
  color: var(--text-dark);
}

.chef-card p {
  margin-bottom: 4px;
  font-size: 13px;
  color: var(--text-muted);
}

.chef-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(62, 49, 26, 0.9);
  color: #fff;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}

.chef-card:hover .overlay {
  opacity: 1;
}

.chef-card .overlay h3 {
  margin-bottom: 8px;
  color: var(--accent-gold);
}

.chef-card .overlay p {
  color: var(--bg-cream);
  font-size: 13px;
  line-height: 1.5;
}

/* Legal & Terms Content Layout */
.legal-container {
  padding: 40px 20px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(125, 107, 84, 0.08);
}

.legal-content h1 {
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 10px;
  border-bottom: 2px solid rgba(125, 107, 84, 0.1);
  padding-bottom: 12px;
}

.legal-content .last-updated {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 30px;
  font-style: italic;
}

.legal-content h2 {
  font-size: 18px;
  color: var(--primary-hover);
  margin-top: 25px;
  margin-bottom: 10px;
}

.legal-content p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.legal-content a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.legal-content a:hover {
  text-decoration: underline;
}

/* About.html Custom Layout */
.About {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.section {
  margin-bottom: 50px;
  background: var(--bg-card);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(125, 107, 84, 0.05);
}

.section h1 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--primary-hover);
  border-bottom: 2px solid rgba(125, 107, 84, 0.1);
  padding-bottom: 6px;
  text-align: left;
}

.section p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.section ul {
  padding-left: 20px;
}

.section li {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.6;
}

/* About Us Section main header */
.about-us {
  padding: 50px 20px;
  text-align: center;
}

.about-us h1 {
  font-size: 28px;
  margin-bottom: 20px;
}

.about-us p {
  max-width: 800px;
  margin: 0 auto 15px auto;
  font-size: 15px;
  color: var(--text-muted);
}

/* Team Section in About Us */
.team-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.team-card {
  background-color: var(--bg-card);
  border: 1px solid rgba(125, 107, 84, 0.08);
  border-radius: var(--radius-lg);
  width: auto;
  margin: 0;
  text-align: center;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.team-card .icon {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 12px;
}

.team-card h3 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.team-card .role {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.team-card .info {
  display: block; /* Consistent display instead of show-on-hover layout shifts */
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  border-top: 1px solid rgba(125, 107, 84, 0.1);
  padding-top: 10px;
}

/* Contact Details Page Flex Grid */
.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 45px;
}

.contact-form, .contact-info {
  background-color: var(--bg-card);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(125, 107, 84, 0.05);
}

/* Contact Info list styles */
.contact-info p {
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info p i {
  color: var(--primary);
  font-size: 16px;
}

/* Google Map styling */
.map-container {
  margin-bottom: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
}

/* Order Tracking Status timeline */
.tracking-status {
  background: var(--bg-card);
  padding: 35px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(125, 107, 84, 0.08);
  margin: 30px auto;
  max-width: 800px;
}

.tracking-status h2 {
  font-size: 20px;
  margin-bottom: 25px;
  color: var(--text-dark);
  text-align: center;
}

.tracking-status .status-step {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 15px;
}

.tracking-status .status-step i {
  font-size: 20px;
  color: var(--text-muted);
}

.tracking-status .status-step.completed i {
  color: var(--primary);
}

.tracking-status .status-step.completed span {
  font-weight: 500;
  color: var(--text-dark);
}

/* Login/Registration wrap styling */
.login-wrap {
  width: 100%;
  margin: 40px auto 60px auto;
  max-width: 480px;
  min-height: 600px;
  position: relative;
  background: url('https://images.unsplash.com/photo-1567188040759-fb8a883dc6d6?auto=format&fit=crop&q=80&w=1000') no-repeat;
  background-size: cover;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.login-html {
  width: 100%;
  height: 100%;
  position: absolute;
  padding: 50px 40px;
  background: rgba(24cf, 244, 230, 0.92);
  background: linear-gradient(rgba(74, 59, 44, 0.85), rgba(74, 59, 44, 0.95));
  color: #fff;
}

.login-html .tab {
  color: var(--bg-cream);
  font-size: 18px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 25px;
  border-bottom: 2px solid transparent;
  padding-bottom: 6px;
  transition: var(--transition);
}

.login-html .sign-in:checked + .tab,
.login-html .sign-up:checked + .tab {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

.login-html .sign-in,
.login-html .sign-up {
  display: none;
}

.login-html .tab {
  cursor: pointer;
}

.login-form .sign-in-htm,
.login-form .sign-up-htm {
  display: none;
}

.login-html .sign-in:checked ~ .login-form .sign-in-htm {
  display: block;
}

.login-html .sign-up:checked ~ .login-form .sign-up-htm {
  display: block;
}

.login-form .group {
  margin-bottom: 18px;
  width: 100%;
}

.login-form .group .label {
  color: var(--bg-cream);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: block;
}

.login-form .group .input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  width: 100%;
  display: block;
  box-sizing: border-box;
}

.login-form .group .input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(255, 159, 67, 0.2);
}

.login-form .group .button {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 12px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(210, 105, 30, 0.3);
}

.login-form .group .button:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

/* Footer Section styling — Compact */
footer {
  width: 100%;
  background: var(--dark-header);
  color: var(--bg-cream);
  padding: 14px 0;
  text-align: center;
  box-shadow: 0 -3px 14px rgba(0, 0, 0, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer .container nav {
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 8px;
}

footer nav .footer-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}

footer nav .footer-links a {
  color: var(--bg-cream);
  text-decoration: none;
  font-size: 12px;
  transition: var(--transition);
  opacity: 0.8;
}

footer nav .footer-links a:hover {
  color: var(--accent-gold);
  opacity: 1;
}

footer .social-media {
  display: flex;
  gap: 10px;
  justify-content: center;
}

footer .social-media a {
  color: var(--bg-cream);
  font-size: 14px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  text-decoration: none;
}

footer .social-media a:hover {
  color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

footer p {
  font-size: 11px;
  color: rgba(244, 235, 217, 0.45);
  margin-top: 8px;
}

/* 404 Custom Error layout */
#error-message {
  text-align: center;
  padding: 60px 20px;
  max-width: 600px;
  margin: 40px auto;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(125, 107, 84, 0.08);
}

#error-message h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--primary-hover);
}

#error-message p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 25px;
}

#error-message a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
}

#error-message a:hover {
  text-decoration: underline;
}

/* ===== Responsive Hamburger — Mobile Nav Drawer ===== */
@media (max-width: 900px) {
  /* Show hamburger button */
  .hamburger {
    display: flex;
  }

  /* Convert nav into a slide-in drawer */
  header nav {
    position: fixed;
    top: 0;
    right: -290px;
    width: 260px;
    height: 100vh;
    background: var(--dark-header);
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 70px 16px 30px;
    gap: 4px;
    z-index: 1060;
    transition: right 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -6px 0 30px rgba(0, 0, 0, 0.35);
    border-left: 1px solid rgba(255,255,255,0.06);
    margin-left: 0;
  }

  header nav.open {
    right: 0;
  }

  header nav a {
    font-size: 14px;
    padding: 10px 14px;
    border-radius: 10px;
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
    border: 1px solid transparent;
  }

  header nav a i {
    font-size: 14px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
  }

  header nav a:hover {
    background: rgba(210, 105, 30, 0.15);
    color: var(--accent-gold);
    transform: none;
    box-shadow: none;
  }

  header nav a.active {
    background: var(--primary);
    color: #fff;
  }

  /* Compact footer on mobile */
  footer .container nav {
    flex-direction: column;
    gap: 8px;
  }

  footer .container nav .footer-links,
  footer .container nav .social-media {
    justify-content: center;
  }
}

/* General responsive adjustments */
@media (max-width: 768px) {
  .form-container, .checkout-container, .contact-section, .legal-content, .tracking-status {
    padding: 20px;
    margin: 20px auto 40px auto;
    width: 94%;
  }
  .menu-container, .spice-container, .chef-container {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    width: 94%;
  }
  .product-showcase {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    width: 94%;
  }
  .featured-recipes .card-container {
    grid-template-columns: 1fr;
  }
  .hero {
    height: 50vh;
    background-attachment: scroll;
  }
  .hero p {
    font-size: 20px;
  }
  .banner {
    height: 35vh;
    background-attachment: scroll;
  }
  .banner h1 {
    font-size: 20px;
    padding: 10px 18px;
  }
}

@media (max-width: 480px) {
  header .logo {
    height: 30px;
  }
  header h1 {
    font-size: 14px;
  }
  .hero p {
    font-size: 17px;
  }
  footer .container nav {
    gap: 6px;
  }
}