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

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}


button,
input,
textarea,
select {
  font-family: inherit;
}

/* ============================================
   COLOR PALETTE
   ============================================ */

/* Main Color Variables */
:root {
  /* Primary Colors */
  --coffee-bean: #220901;
  --dark-garnet: #621708;
  --oxblood: #941b0c;
  --rusty-spice: #bc3908;
  --orange: #f6aa1c;

  /* Legacy variable names */
  --carmine: var(--dark-garnet);
  --olive-wood: var(--rusty-spice);
  --honey-bronze: var(--orange);
  --porcelain: #fcfaf7;
  --deep-crimson: var(--dark-garnet);
  --auburn: var(--dark-garnet);
  --bordeaux: var(--coffee-bean);
  --vanilla: #fcfaf7;
  --hunyadi-yellow: var(--orange);
  --ceramic-yellow: var(--orange);
  --dark-slate-gray: var(--dark-garnet);

  /* Typography System - LOCKED */
  --font-heading: "Playfair Display", serif;
  --font-ui: "Lato", sans-serif;
  --font-body: "Georgia", serif;
  --line-height-base: 1.6;
  --line-height-heading: 1.2;

  /* Font Awesome */
  --fa-style-family-classic: "Font Awesome 6 Free";
  --fa-font-solid: normal 900 1em / 1 "Font Awesome 6 Free";
}

/* ============================================
   HTML & BODY SETTINGS
   ============================================ */

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--vanilla);
  color: var(--bordeaux);
  font-family: var(--font-body);
  margin: 0;
  line-height: var(--line-height-base);
  overflow-x: hidden;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: var(--line-height-heading);
  font-weight: 700;
  color: var(--coffee-bean);
}

/* ============================================
   NAVIGATION BAR
   ============================================ */

/* Main navbar container - fixed at top */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 4%;
  background-color: var(--auburn);
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1500;
}

.nav-toggle {
  display: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
  /* Prevent logo from being compressed */
}

.logo img {
  height: 50px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  flex-shrink: 0;
  /* Maintain logo size */
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ceramic-yellow);
  letter-spacing: 2px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  margin-left: auto;
  margin-right: 40px;
}

.mobile-close {
  display: none;
}

.nav-links a {
  font-family: var(--font-ui);
  text-decoration: none;
  color: var(--vanilla);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--ceramic-yellow);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--ceramic-yellow);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--ceramic-yellow);
}

/* --- PREMIUM NAVBAR ALIGNMENT & ICONS --- */
/* Fix vertical alignment */
.nav-links {
  align-items: center;
  /* Ensures text and icons align vertically */
}

/* --- HEADER ACTIONS --- */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-link,
.account-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--vanilla);
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
  padding: 0 !important;
}

.nav-toggle-label {
  display: none;
  /* Hidden on desktop */
}

.account-btn {
  /* Button reset */
  appearance: none;
  -webkit-appearance: none;
}

.cart-link:hover,
.account-btn:hover {
  background: var(--vanilla);
  color: var(--auburn);
  border-color: var(--vanilla);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cart-link::after {
  content: none !important;
  /* Remove underline effect from generic link style */
}

/* Cart Badge */
.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: var(--ceramic-yellow);
  color: var(--coffee-bean);
  font-size: 0.65rem;
  font-weight: 800;
  height: 18px;
  width: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--auburn);
  /* Contrast border */
}

/* User Dropdown Premium Style */
.user-dropdown {
  position: absolute;
  top: 80px;
  right: 20px;
  background: var(--vanilla);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  padding: 10px 0;
  display: none;
  flex-direction: column;
  min-width: 210px;
  z-index: 1550;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-top: none;
  overflow: hidden;
}

.user-dropdown.show {
  display: flex !important;
  animation: dropdownSlide 0.3s ease;
}

.user-dropdown button {
  background: transparent;
  border: none;
  padding: 14px 25px;
  text-align: left;
  width: 100%;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: var(--coffee-bean);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.user-dropdown button:hover {
  background: rgba(246, 170, 28, 0.1);
  color: var(--dark-garnet);
  padding-left: 30px;
  /* Slight slide effect */
}

@keyframes dropdownSlide {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo:hover {
  cursor: pointer;
}

.logo:hover img {
  transform: scale(1.1) rotate(5deg);
}

.hero {
  display: flex;
  min-height: 100vh;
  width: 100%;
  padding-top: 0;
  overflow: hidden;
}

.hero-left {
  flex: 1;
  background-color: var(--vanilla);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-right {
  flex: 1;
  background-image: url("../bgimg.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.floating-image img {
  width: 100%;
  max-width: clamp(200px, 35vw, 400px);
  height: auto;
  aspect-ratio: 1/1;
  margin-top: 0.5rem;
  object-fit: cover;
}

.text-card {
  background-color: var(--vanilla);
  padding: clamp(30px, 5vw, 40px) clamp(20px, 4vw, 40px);
  /* Responsive padding: vertical then horizontal */
  width: 85%;
  max-width: 400px;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.text-card h1 {
  font-size: clamp(1.8rem, 8vw, 3rem);
  line-height: 1.2;
  /* Improved line spacing for readability */
  margin-bottom: 30px;
  color: var(--bordeaux);
  word-wrap: break-word;
  /* Ensure natural wrapping */
  max-width: 100%;
  /* Prevent overflow */
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid var(--auburn);
  text-decoration: none;
  color: var(--auburn);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2px;
  transition: 0.3s;
  border-radius: 30px;
}

.btn:hover {
  background: var(--auburn);
  color: var(--vanilla);
}

/* about page */

.about-hero {
  padding: 5% 30px;
  text-align: center;
  background-color: var(--auburn);
  scroll-margin-top: 0;
  /* */
}

.about-hero h1 {
  font-size: 4rem;
  color: var(--vanilla);
  margin-bottom: 10px;
}

/* --- Story Section --- */
.story-section {
  display: flex;
  padding: 50px 10%;
  gap: 50px;
  align-items: center;
}

.story-content a {
  text-decoration: none;
  color: inherit;
}

h2.section-title {
  text-decoration: none;
}

.story-content {
  flex: 1;
  margin-top: -80px;
}

.section-title {
  color: var(--auburn);
  /* */
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.decorative-line {
  width: 200px;
  height: 3px;
  background-color: var(--ceramic-yellow);
  /* */
  margin-bottom: 30px;
}

.story-image {
  flex: 1;
  height: 450px;
  position: relative;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.1);
}

/* Premium Framed Effect */
.image-frame {
  position: absolute;
  top: 10px;
  left: 10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid var(--bordeaux);
  background-color: var(--dark-slate-gray);
  z-index: -1;
}

/* --- Mission Statement (Dark Contrast) --- */
.mission-statement {
  background-color: var(--bordeaux);
  color: var(--ceramic-yellow);
  padding: 50px 15%;
  text-align: center;
  font-style: italic;
  font-size: 1.8rem;
}

/* Base Styles */

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

/* Navbar active state */
.nav-links a.active {
  color: var(--ceramic-yellow);
}

.nav-links a.active::after {
  width: 100%;
}

/* Hero Section */
.about-hero {
  background-color: var(--dark-garnet);
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.about-hero h1 {
  font-size: 3rem;
}

/* Our Story Detailed */
.our-story-detailed {
  padding: 80px 0;
  display: flex;
  align-items: center;
}

.our-story-detailed .container {
  display: flex;
  gap: 50px;
  align-items: center;
}

.story-content {
  flex: 1;
}

.story-content h2 {
  font-size: 2.5rem;
  color: #5a1a0c;
}

.underline {
  width: 60px;
  height: 3px;
  background-color: #c5a059;
  /* Gold accent */
  margin: 15px 0 25px 0;
}

.story-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.story-image {
  flex: 1;
}

.story-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 15px 15px 0px #5a1a0c;
  /* Styled offset shadow */
}

/* Chef Crew Section */
.chef-crew {
  background-color: #f4f1ea;
  padding: 80px 0;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #5a1a0c;
}

.section-subtitle {
  font-style: italic;
  margin-bottom: 50px;
  color: #777;
}

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

.chef-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.chef-card:hover {
  transform: translateY(-10px);
}

.chef-img-wrapper {
  width: 100%;
  height: 300px;
  background-color: #ddd;
  /* Placeholder color */
  margin-bottom: 20px;
  border-radius: 4px;
  overflow: hidden;
}

.chef-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chef-card h3 {
  margin-bottom: 5px;
  color: #5a1a0c;
}

.chef-card span {
  display: block;
  font-weight: bold;
  color: #c5a059;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

/* --- Standard Page Banner --- */
.page-banner {
  position: relative;
  padding: 100px 20px;
  background-color: var(--coffee-bean);
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  /* Stacks text vertically */
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* --- Footer Redesign --- */
/* Original footer styles removed to consolidate at the bottom */

/* --- Standard Page Banner (Top Banner) --- */
.page-banner {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../bgimg.jpg");
  background-size: cover;
  background-position: center;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  /* Offset for fixed navbar handled by padding in modern banner definition */
}

.page-banner h1,
.hero-title {
  font-size: clamp(2.2rem, 8vw, 4.5rem);
  letter-spacing: normal;
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.hero-text-container {
  max-width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Legacy support for existing .about-hero if needed, or alias it */
.about-hero {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../bgimg.jpg");
  background-size: cover;
  background-position: center;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0;
  /* Override generic padding */
}

/* Cleaned up redundant media queries */

/* --- Menu Split Section --- */
.menu-split-hero {
  display: flex;
  min-height: 90vh;
}

.image-side {
  flex: 1;
  position: relative;
  overflow: hidden;
  background-color: var(--bordeaux);
}

.image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.content-side {
  flex: 1;
  background-color: var(--auburn);
  color: var(--vanilla);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5%;
}

.content-wrapper {
  max-width: 500px;
  text-align: center;
}

/* --- Menu Title --- */

.menu-title {
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.menu-description {
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.9;
}

.btn-primary {
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid var(--ceramic-yellow);
  color: var(--ceramic-yellow);
  text-decoration: none;
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--ceramic-yellow);
  color: var(--auburn);
}

.dine-hero {
  padding: 30px 20px 20px;
  text-align: center;
  background-color: var(--pastel-beige);
  scroll-margin-top: 80px;
  /* Soft menu-like background */
}

.dine-hero h1 {
  font-size: 3.5rem;
  color: var(--auburn);
}

/* --- THE FIX: Cuisine Grid --- */
.cuisine-section {
  padding: 80px 10%;
  background-color: var(--vanilla);
}

.cuisine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.cuisine-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.cuisine-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card-img-wrapper {
  height: 260px;
  overflow: hidden;
  position: relative;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cuisine-card:hover .card-img-wrapper img {
  transform: scale(1.1);
}

.card-info {
  padding: 35px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
}

.card-info i.card-icon {
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 20px;
}

.card-info h3 {
  color: var(--auburn);
  font-size: 1.6rem;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.card-info p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
}

.card-tag {
  display: inline-block;
  text-decoration: none;
  border-radius: 30px;
  padding: 12px 30px;
  background-color: transparent;
  color: var(--auburn);
  font-weight: bold;
  border: 2px solid var(--auburn);
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.card-tag:hover {
  background-color: var(--auburn);
  color: var(--vanilla);
  transform: scale(1.05);
}

/* --- Checkout Button --- */
.checkout-btn {
  width: 100%;
  margin-top: 1.5rem;
  background: linear-gradient(to right, #f97316, #b91c1c);
  /* orange-500 to red-700 */
  color: white;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: scale(1);
  font-size: 1rem;
}

.checkout-btn:hover {
  transform: scale(1.05);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  background: linear-gradient(to right, #ea580c, #991b1b);
  /* orange-600 to red-800 */
}

.checkout-btn:focus {
  outline: none;
  /* ring-offset-2 ring-red-500 */
  border: 1px solid var(--auburn);
  background-color: var(--vanila);
  color: var(--auburn);
  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 2px;
  cursor: pointer;
  font-family: inherit;
  /* Ensure button inherits font */
}

.card-tag:hover {
  background-color: var(--auburn);
  color: var(--vanilla);
}

.contact-wrapper {
  background-color: var(--auburn);
  /* Dark background like image_92c112.jpg */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 5%;
  scroll-margin-top: 80px;
}

.contact-main-container {
  display: flex;
  gap: 80px;
  max-width: 1200px;
  width: 100%;
}

/* --- LEFT SIDE: FORM --- */
.contact-form-side {
  flex: 1;
  background: var(--vanilla);
  /* Dark card feel */
  padding: 50px;
  border-radius: 25px;
}

/* --- RIGHT SIDE: INFO --- */
.contact-info-side {
  flex: 1.2;
  color: var(--vanilla);
  margin-top: 30px;
}

.form-header {
  color: var(--auburn);
  font-size: 2rem;
  margin-bottom: 40px;
}

.dual-row {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.input-block {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.input-block input {
  background: var(--vanilla);
  border: none;
  border-bottom: 2px solid var(--auburn);
  padding: 10px;
  color: var(--auburn);
  outline: none;
}

.input-block textarea {
  background: var(--vanilla);
  border: none;
  border-bottom: 2px solid var(--auburn);
  padding: 10px;
  color: var(--auburn);
  resize: none;
  outline: none;
}

.btn-send-inquiry {
  margin-top: 30px;
  width: 100%;
  background-color: var(--vanilla);
  /* Branding color */
  border: 2px solid var(--auburn);
  color: var(--auburn);
  padding: 18px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.btn-send-inquiry:hover {
  background-color: var(--auburn);
  color: var(--vanilla);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.info-card {
  display: flex;
  gap: 15px;
}

.info-card .icon {
  color: var(--ceramic-yellow);
  font-size: 1.2rem;
}

.info-card h3 {
  font-size: 0.9rem;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.info-card p {
  color: var(--vanilla);
  opacity: 0.8;
  font-size: 0.85rem;
  line-height: 1.5;
}

.map-container {
  background: var(--vanilla);
  height: 250px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
  border: 1px solid var(--vanilla);
  position: relative;
}

.map-placeholder {
  width: 100%;
  height: 100%;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.view-map {
  color: var(--ceramic-yellow);
  font-size: 3rem;
  display: block;
  margin-top: 5px;
}

.follow-us h3 {
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.socials {
  font-size: 1.5rem;
  color: var(--ceramic-yellow);
  margin-right: 15px;
  transition: all 0.3s ease;
}

.socials:hover {
  color: var(--vanilla);
  transform: scale(1.1);
  cursor: pointer;
}

/* --- Main Layout Container --- */
.split-menu-container {
  display: flex;
  height: 100vh;
  overflow: hidden;
  padding-top: 80px;
}

/* --- Left Side: Fixed Image --- */
.menu-image-side {
  flex: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* --- Right Side: Scrollable Menu List --- */
.menu-list-side {
  flex: 1;
  background-color: var(--dark-slate-gray);
  padding: 60px;
  overflow-y: auto;
}

/* --- Menu Content Styling --- */
.menu-header {
  margin-bottom: 50px;
  text-align: center;
  color: var(--vanilla);
}

.menu-header h1 {
  font-size: 3.5rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.menu-header p {
  font-style: italic;
  color: var(--vanilla);
  opacity: 0.8;
}

.menu-item {
  margin-bottom: 40px;
  color: var(--vanilla);
  border-bottom: 1px solid var(--bordeaux);
  padding-bottom: 20px;
  opacity: 0.8;
}

.menu-item:last-child {
  border-bottom: none;
}

.item-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.item-name {
  font-size: 1.3rem;
  font-weight: lighter;
  margin: 0;
}

.item-price {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--ceramic-yellow);
}

.item-description {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 80%;
}

.cart-container {
  display: flex;
  min-height: 100vh;
  padding-top: 80px;
}

.cart-items {
  flex: 1.5;
  padding: 60px 80px;
  background-color: var(--vanilla);
}

.cart-items h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 25px 0;
  border-bottom: 1px solid var(--hunyadi-yellow);
}

.cart-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 4px;
}

.item-details {
  flex-grow: 1;
}

.item-details h3 {
  margin-bottom: 5px;
}

.item-details p {
  font-size: 0.85rem;
  color: var(--bordeaux);
  margin-bottom: 15px;
}

.quantity-controls button {
  background: none;
  border: 1px solid var(--hunyadi-yellow);
  color: var(--bordeaux);
  padding: 5px 10px;
  cursor: pointer;
  transition: 0.3s;
}

.quantity-controls button:hover {
  background-color: var(--hunyadi-yellow);
  color: var(--vanilla);
}

.price {
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--auburn);
}

.cart-summary {
  flex: 1;
  background-color: var(--auburn);
  color: var(--vanilla);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.summary-card {
  width: 80%;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  font-size: 1rem;
}

.total {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 30px;
  border-top: 1px solid var(--vanilla);
  padding-top: 20px;
}

/* Second footer block removed to consolidate at bottom */

/* --- Menu Item Actions --- */
.menu-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.item-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-selector label {
  color: var(--vanilla);
  font-size: 0.9rem;
  opacity: 0.8;
}

.quantity-input {
  width: 60px;
  padding: 5px 10px;
  border: 1px solid var(--ceramic-yellow);
  background-color: var(--dark-slate-gray);
  color: var(--vanilla);
  border-radius: 5px;
  text-align: center;
  font-size: 1rem;
  outline: none;
}

.quantity-input:focus {
  border-color: var(--hunyadi-yellow);
}

.add-to-cart-btn {
  background-color: var(--hunyadi-yellow);
  color: var(--bordeaux);
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.add-to-cart-btn:hover {
  background-color: var(--ceramic-yellow);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(224, 159, 62, 0.3);
}

/* --- Cart Notification --- */
.cart-notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background-color: var(--hunyadi-yellow);
  color: var(--bordeaux);
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  opacity: 0;
  transform: translateX(400px);
  transition: all 0.3s ease;
}

.cart-notification.show {
  opacity: 1;
  transform: translateX(0);
}

/* --- Empty Cart Message --- */
.empty-cart-message {
  text-align: center;
  padding: 80px 20px;
  color: var(--bordeaux);
}

.empty-cart-message i {
  font-size: 5rem;
  color: var(--auburn);
  margin-bottom: 20px;
  opacity: 0.5;
}

.empty-cart-message h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--auburn);
}

.empty-cart-message p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.7;
}

/* --- Cart Item Actions --- */
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.remove-btn {
  background: none;
  border: none;
  color: var(--auburn);
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  padding: 5px;
}

.remove-btn:hover {
  color: var(--bordeaux);
  transform: scale(1.2);
}

.clear-cart-btn {
  margin-top: 30px;
  padding: 12px 30px;
  background-color: transparent;
  border: 2px solid var(--auburn);
  color: var(--auburn);
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.clear-cart-btn:hover {
  background-color: var(--auburn);
  color: var(--vanilla);
}

/* --- Authentication Styles --- */

/* Account Button */
.account-btn {
  background: none;
  border: none;
  color: var(--vanilla);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 5px;
  border-radius: 50%;
  font-family: var(--font-body);
  min-width: 42px;
  min-height: 42px;
}

.account-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--hunyadi-yellow);
}

.account-btn i {
  font-size: 1.1rem;
}

/* User Avatar Letter */
.user-avatar-letter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--auburn), var(--dark-garnet));
  color: white;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.account-btn:hover .user-avatar-letter {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* User Avatar Image */
.user-avatar-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--vanilla);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.account-btn:hover .user-avatar-img {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border-color: var(--hunyadi-yellow);
}

/* User Dropdown */
.user-dropdown {
  position: absolute;
  top: 70px;
  right: 50px;
  background-color: var(--vanilla);
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  padding: 10px;
  display: none;
  z-index: 1000;
  min-width: 210px;
}

.user-dropdown.show {
  display: block;
}

.user-dropdown button {
  background: none;
  border: none;
  color: var(--auburn);
  padding: 10px 20px;
  cursor: pointer;
  font-size: 1rem;
  width: 100%;
  text-align: left;
  border-radius: 5px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.user-dropdown button:hover {
  background-color: var(--auburn);
  color: var(--vanilla);
}

/* Auth Modal */
.auth-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.auth-modal-content {
  background-color: var(--vanilla);
  padding: 25px 30px;
  border-radius: 12px;
  max-width: 420px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Custom Scrollbar for Modal */
.auth-modal-content::-webkit-scrollbar {
  width: 6px;
}

.auth-modal-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.auth-modal-content::-webkit-scrollbar-thumb {
  background: var(--auburn);
  border-radius: 10px;
}

.auth-modal-content::-webkit-scrollbar-thumb:hover {
  background: var(--bordeaux);
}

.auth-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  color: var(--auburn);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.auth-close:hover {
  color: var(--bordeaux);
  transform: rotate(90deg);
}

/* Auth Forms */
.auth-form h2 {
  color: var(--auburn);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 18px;
  text-align: center;
}

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

.form-group label {
  display: block;
  color: var(--bordeaux);
  font-weight: bold;
  margin-bottom: 6px;
  font-size: 0.85rem;
}

.form-group input {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid var(--dark-slate-gray);
  border-radius: 6px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background-color: #fff;
  color: var(--bordeaux);
}

.form-group input:focus {
  outline: none;
  border-color: var(--hunyadi-yellow);
  box-shadow: 0 0 0 3px rgba(224, 159, 62, 0.1);
}

/* Password Field Wrapper */
.password-input-wrapper {
  position: relative;
  width: 100%;
}

.password-input-wrapper input {
  width: 100%;
  padding-right: 45px;
}

.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--dark-slate-gray);
  font-size: 1rem;
  transition: color 0.3s ease;
  user-select: none;
}

.toggle-password:hover {
  color: var(--auburn);
}

.error-message {
  color: var(--auburn);
  font-size: 0.85rem;
  margin-bottom: 10px;
  text-align: center;
  min-height: 18px;
}

.auth-btn {
  width: 100%;
  padding: 11px;
  background-color: var(--auburn);
  color: var(--vanilla);
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.auth-btn:hover {
  background-color: var(--bordeaux);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Auth Divider */
.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 15px 0;
  color: #999;
  font-size: 0.75rem;
  font-weight: 600;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #ddd;
}

.auth-divider span {
  padding: 0 12px;
  color: #666;
  font-family: var(--font-ui);
  letter-spacing: 1px;
}

/* Social Auth Buttons */
.social-auth-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 9px 16px;
  border: 2px solid #ddd;
  border-radius: 6px;
  background: white;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333;
}

.social-btn i {
  font-size: 1.1rem;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.google-btn {
  border-color: #db4437;
  color: #db4437;
}

.google-btn:hover {
  background: #db4437;
  color: white;
  border-color: #db4437;
}

.apple-btn {
  border-color: #000;
  color: #000;
}

.apple-btn:hover {
  background: #000;
  color: white;
  border-color: #000;
}

.auth-switch,
.switch-form {
  text-align: center;
  margin-top: 12px;
  color: var(--bordeaux);
  font-size: 0.88rem;
}

.auth-switch a,
.switch-form a {
  color: var(--auburn);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.auth-switch a:hover {
  color: var(--hunyadi-yellow);
}

/* Auth Notification */
.auth-notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background-color: var(--hunyadi-yellow);
  color: var(--bordeaux);
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  z-index: 3000;
  opacity: 0;
  transform: translateX(400px);
  transition: all 0.3s ease;
}

.auth-notification.show {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   BOOKING PAGE STYLES
   ============================================ */

.booking-hero {
  padding: 100px 5% 50px;
  text-align: center;
  background-image: url(./assets/table-reservation.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  scroll-margin-top: 80px;
}

.booking-hero h1 {
  font-size: 4rem;
  color: var(--vanilla);
  margin-bottom: 10px;
}

.booking-section {
  padding: 40px 10%;
  background-color: var(--vanilla);
}

.booking-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--vanilla);
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-container h2 {
  color: var(--auburn);
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.form-group label {
  color: var(--bordeaux);
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 2px solid var(--dark-slate-gray);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #fff;
  color: var(--bordeaux);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--hunyadi-yellow);
  box-shadow: 0 0 0 3px rgba(224, 159, 62, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.booking-btn {
  width: 100%;
  padding: 15px;
  background-color: var(--vanilla);
  border: 1px solid var(--auburn);
  text-decoration: none;
  color: var(--auburn);
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.booking-btn:hover {
  background-color: var(--dark-garnet);
  color: var(--vanilla);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large screens (1200px and below) */
@media (max-width: 1200px) {
  .navbar {
    padding: 20px 30px;
  }

  .hero {
    height: 100vh;
    padding-top: 0;
  }

  .hero-left,
  .hero-right {
    flex: 1;
  }

  .floating-image img,
  .text-card {
    width: clamp(200px, 30vw, 350px);
    height: clamp(200px, 30vw, 350px);
  }

  .text-card {
    padding: 50px 40px;
  }

  .text-card h1 {
    font-size: 2.5rem;
  }

  .story-section {
    padding: 60px 8%;
    gap: 40px;
  }

  .menu-split-hero {
    padding: 20px 15px 15px;
  }

  .cuisine-section {
    padding: 60px 5%;
  }

  .cuisine-grid {
    gap: 30px;
  }

  .contact-wrapper {
    padding: 80px 3%;
  }

  .contact-main-container {
    gap: 60px;
  }

  .cart-items {
    padding: 50px 60px;
  }

  .site-footer {
    padding: 60px 8%;
  }

  .page-banner h1,
  .about-hero h1,
  .booking-hero h1 {
    font-size: 3rem;
  }

  .booking-section {
    padding: 40px 5%;
  }
}

/* Medium screens (992px and below) */
@media (max-width: 992px) {
  .navbar {
    padding: 15px 20px;
    height: 70px;
  }

  .brand-name,
  .nav-links a {
    font-size: 1.2rem;
  }

  .hero {
    flex-direction: column;
    height: 100vh;
    padding-top: 70px;
  }

  .hero-left {
    display: none;
  }

  .hero-right {
    width: 100%;
    height: calc(100vh - 70px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    flex: none;
  }

  .text-card {
    width: 90%;
    max-width: 400px;
    padding: 40px 20px;
    /* Proper horizontal padding to prevent overflow */
    background-color: var(--porcelain);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    /* Ensure centering */
  }

  .text-card h1 {
    font-size: clamp(1.9rem, 6vw, 2.5rem);
    /* Responsive scaling for tablets */
    line-height: 1.2;
    margin-bottom: 25px;
    word-wrap: break-word;
    /* Ensure text wraps naturally */
    hyphens: auto;
  }

  .story-section {
    flex-direction: column;
    padding: 50px 5%;
    gap: 30px;
  }

  .story-content {
    margin-top: 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .story-image {
    height: 400px;
  }

  .menu-split-hero h1 {
    font-size: 3rem;
  }

  .menu-split-hero {
    min-height: 80vh;
  }

  .content-side {
    padding: 3%;
  }

  .menu-title {
    font-size: 3.5rem;
  }

  .cuisine-grid {
    gap: 25px;
  }

  .contact-main-container {
    gap: 50px;
  }

  .contact-form-side {
    padding: 40px;
  }

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

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

  .cart-items {
    flex: none;
    padding: 40px 30px;
  }

  .cart-summary {
    flex: none;
    padding: 30px;
  }

  .site-footer {
    padding: 50px 5%;
  }

  .page-banner h1 {
    font-size: 2.5rem;
  }
}

/* Consolidated Mobile Navbar & Sidebar (1024px and below) */
@media (max-width: 1024px) {
  .navbar {
    padding: 12px 16px;
    /* Balanced padding for mobile */
    height: 70px;
    display: flex;
    justify-content: space-between;
    /* Ensures logo left, actions right */
    align-items: center;
    gap: 12px;
    /* Spacing between logo and actions */
  }

  .nav-toggle {
    display: none;
  }

  .logo {
    flex-shrink: 0;
    /* Prevent logo from shrinking */
  }

  .logo img {
    height: 38px;
    /* Slightly larger for better visibility */
  }

  .brand-name {
    font-size: 1.15rem;
    /* Slightly larger */
    letter-spacing: 1.5px;
  }

  /* Hamburger Icon Styling - Touch Friendly */
  .nav-toggle-label {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2001;
    width: 44px;
    height: 44px;
    background: transparent;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
  }

  .nav-toggle-label span,
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    display: block;
    background: var(--vanilla);
    height: 2px;
    width: 24px;
    position: relative;
    transition: all 0.3s ease;
  }

  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .nav-toggle-label span::before {
    top: -8px;
  }

  .nav-toggle-label span::after {
    bottom: 8px;
  }

  /* Hide hamburger when menu is open */
  #nav-toggle:checked~.nav-actions .nav-toggle-label {
    opacity: 0;
    pointer-events: none;
  }

  /* SIDEBAR PANEL */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 85%;
    height: 100vh;
    background: var(--coffee-bean);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 80px 20px 40px;
    gap: 15px;
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 3000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    overflow-x: hidden;
  }

  #nav-toggle:checked~.nav-links {
    right: 0;
  }

  /* Internal Close Button */
  .mobile-close {
    display: block !important;
    position: absolute;
    top: 15px;
    right: 15px;
    width: auto !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--vanilla);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s ease;
  }

  .close-btn:hover {
    transform: rotate(90deg);
    color: var(--ceramic-yellow);
  }

  /* Staggered entrance animation for links */
  .nav-links li {
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }

  #nav-toggle:checked~.nav-links li {
    opacity: 1;
    transform: translateY(0);
  }

  #nav-toggle:checked~.nav-links li:nth-child(1) {
    transition-delay: 0.1s;
  }

  #nav-toggle:checked~.nav-links li:nth-child(2) {
    transition-delay: 0.15s;
  }

  #nav-toggle:checked~.nav-links li:nth-child(3) {
    transition-delay: 0.2s;
  }

  #nav-toggle:checked~.nav-links li:nth-child(4) {
    transition-delay: 0.25s;
  }

  #nav-toggle:checked~.nav-links li:nth-child(5) {
    transition-delay: 0.3s;
  }

  #nav-toggle:checked~.nav-links li:nth-child(6) {
    transition-delay: 0.35s;
  }

  #nav-toggle:checked~.nav-links li:nth-child(7) {
    transition-delay: 0.4s;
  }

  #nav-toggle:checked~.nav-links li:nth-child(8) {
    transition-delay: 0.45s;
  }

  .nav-links a {
    font-size: 1.1rem;
    display: block;
    padding: 12px 0;
    border: none !important;
  }

  .nav-links a::after {
    display: none !important;
  }

  /* Actions alignment on mobile header */
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    /* Increased gap for better spacing */
    z-index: 2002;
    margin-left: auto;
    /* Push to right with visual separation */
    flex-shrink: 0;
    /* Prevent shrinking */
  }

  .cart-link,
  .account-btn {
    width: 44px;
    height: 44px;
    margin: 0;
  }

  /* Overlay Background */
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    z-index: 2999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  #nav-toggle:checked~.nav-overlay {
    opacity: 1;
    visibility: visible;
  }

  /* Dropdown adjustment for mobile */
  .user-dropdown {
    top: 75px !important;
    right: 15px !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    width: 220px;
    z-index: 3100;
  }
}


/* Specific component fixes for smaller screens */
@media (max-width: 768px) {

  .about-hero h1,
  .booking-hero h1 {
    font-size: 2.8rem;
  }

  .booking-container {
    padding: 30px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .story-premium {
    grid-template-columns: 1fr;
  }

  .story-premium-image {
    min-height: 300px;
    order: -1;
    /* Image on top */
  }

  .story-premium-content {
    padding: 40px 20px;
  }

  .section-header-center h2 {
    font-size: 2.22rem;
  }

  .features-grid {
    gap: 20px;
  }

  .features-section {
    padding: 50px 20px;
  }

  .signature-dishes-section {
    padding: 60px 20px;
  }

  .destinations-section,
  .testimonials-section {
    padding: 60px 20px;
  }

  .testi-card.wide {
    padding: 25px;
  }

  .story-section {
    padding: 40px 3%;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .page-banner h1,
  .about-hero h1 {
    font-size: 2.2rem;
  }

  .decorative-line {
    width: 150px;
  }

  .story-image {
    height: 350px;
  }

  .mission-statement {
    padding: 40px 10%;
    font-size: 1.5rem;
  }

  .menu-split-hero h1 {
    font-size: 2.5rem;
  }

  .menu-split-hero {
    min-height: 70vh;
  }

  .menu-title {
    font-size: 3rem;
  }

  .menu-description {
    margin-bottom: 30px;
  }

  .btn-primary {
    padding: 12px 30px;
  }

  .dine-hero h1 {
    font-size: 3rem;
  }

  .cuisine-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .cuisine-card {
    border-radius: 15px;
  }

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

  .card-info h3 {
    font-size: 1.4rem;
  }

  .contact-wrapper {
    padding: 60px 2%;
  }

  .contact-main-container {
    flex-direction: column;
    gap: 40px;
  }

  .contact-form-side {
    padding: 30px;
  }

  .form-header {
    font-size: 1.8rem;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .split-menu-container {
    flex-direction: column;
    height: auto;
    margin-top: 60px;
  }

  .menu-image-side {
    height: 250px;
    flex: none;
  }

  .menu-list-side {
    flex: none;
    padding: 30px 15px;
  }

  .menu-header h1 {
    font-size: 2.5rem;
  }

  .cart-items {
    padding: 30px 20px;
  }

  .cart-items h1 {
    font-size: 2rem;
  }

  .cart-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .item-details {
    width: 100%;
  }

  .price {
    align-self: flex-end;
  }

  .summary-card {
    width: 90%;
  }

  .cart-container {
    margin-top: 60px;
  }

  .site-footer {
    padding: 40px 3%;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
}

/* Extra small screens (576px and below) */
@media (max-width: 576px) {
  .navbar {
    padding: 10px 12px;
    /* Optimized for very small screens */
    height: 65px;
  }

  .logo img {
    height: 35px;
    /* Slightly smaller on tiny screens */
  }

  .brand-name {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }

  .nav-actions {
    gap: 12px;
    /* Slightly reduced gap for 320px screens */
  }

  .nav-links a {
    font-size: 1.15rem;
  }

  .hero {
    flex-direction: column;
    height: auto;
    min-height: auto;
    padding-top: 60px;
  }

  .hero-left,
  .hero-right {
    height: 35vh;
  }

  .hero-left {
    display: none;
  }

  .hero-right {
    width: 100%;
    height: auto;
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    flex: none;
    background-attachment: scroll;
  }

  .floating-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 1/1;
    margin-bottom: 30px;
  }

  .text-card {
    width: 90%;
    max-width: 320px;
    padding: 35px 20px;
    /* Adequate padding for small screens */
    background-color: var(--porcelain);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    /* Stronger shadow for depth */
  }

  .text-card h1 {
    font-size: clamp(1.75rem, 7vw, 2.2rem);
    /* Responsive scaling for 320px-480px */
    line-height: 1.2;
    /* Optimal line spacing */
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    /* Prevent text overflow */
    hyphens: auto;
    max-width: 100%;
    /* Ensure text stays within container */
  }

  .btn {
    padding: 8px 20px;
    font-size: 0.6rem;
  }

  .about-hero h1 {
    font-size: 2.5rem;
  }

  .story-section {
    padding: 30px 2%;
    gap: 20px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .page-banner h1,
  .about-hero h1,
  .booking-hero h1 {
    font-size: 1.8rem;
  }

  .section-title,
  .booking-container h2,
  .section-header-center h2 {
    font-size: 1.5rem;
  }

  .booking-container {
    padding: 20px;
  }

  .features-grid {
    gap: 15px;
  }

  .feature-item {
    padding: 20px;
  }

  .feature-icon-wrapper {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .dish-card-premium {
    min-width: 100%;
  }

  .location-card-premium {
    height: 300px;
  }

  .location-overlay h3 {
    font-size: 1.5rem;
  }

  .site-footer {
    padding: 30px 2%;
  }

  .footer-brand p {
    font-size: 0.9rem;
  }

  .footer-section-title {
    font-size: 1rem;
  }

  .footer-socials {
    gap: 15px;
  }
}

/* --- DASHBOARD LAYOUT & SIDEBARS --- */
.dashboard-wrapper {
  display: flex;
  padding-top: 80px;
  /* Space for fixed navbar */
  background-color: var(--vanilla);
  /* Light vanilla background */
  min-height: 100vh;
}

.admin-sidebar,
.user-sidebar {
  width: 260px;
  background-color: var(--dark-garnet);
  color: white;
  padding: 20px 0;
  flex-shrink: 0;
}

.sidebar-header,
.sidebar-profile {
  text-align: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.profile-pic i {
  font-size: 3rem;
  color: var(--ceramic-yellow);
  /* Ceramic Yellow accent */
  margin-bottom: 10px;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
}

.sidebar-menu li a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 30px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: 0.3s;
  font-size: 0.95rem;
}

.sidebar-menu li.active a,
.sidebar-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--ceramic-yellow);
  border-left: 5px solid var(--ceramic-yellow);
}

.admin-main,
.user-main {
  flex-grow: 1;
  padding: 40px;
}

/* Stats Styling */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.stat-box {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.stat-label {
  display: block;
  color: #888;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.stat-value {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--dark-garnet);
  margin-top: 5px;
}

/* --- RESPONSIVE QUERIES --- */

@media (max-width: 992px) {

  .admin-sidebar,
  .user-sidebar {
    width: 80px;
    /* Collapse sidebar on tablets */
  }

  .sidebar-menu li a span,
  .sidebar-profile h3,
  .sidebar-profile span {
    display: none;
  }

  .sidebar-menu li a {
    justify-content: center;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .dashboard-wrapper {
    flex-direction: column;
  }

  .user-sidebar {
    width: 100%;
    height: auto;
    padding: 10px 0;
  }

  .sidebar-profile {
    display: none;
  }

  /* Hide profile header on mobile to save space */
  .sidebar-menu {
    display: flex;
    overflow-x: auto;
  }

  .sidebar-menu li a {
    white-space: nowrap;
    border-left: none;
    border-bottom: 3px solid transparent;
  }

  .sidebar-menu li.active a {
    border-bottom: 3px solid #f8d794;
  }
}

/* ============================================
   HOME PAGE REDESIGN - NEW PREMIUM STYLES
   ============================================ */

/* --- 2. The Experience (Features) --- */
.features-section {
  padding: 80px 20px;
  background-color: var(--vanilla);
  text-align: center;
}

.features-grid {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.feature-item {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  background-color: var(--vanilla);
  border: 2px solid var(--ceramic-yellow);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  color: var(--auburn);
  font-size: 2rem;
}

.feature-item h3 {
  margin-bottom: 10px;
  color: var(--coffee-bean);
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.feature-item p {
  color: #666;
  font-size: 0.95rem;
}

/* --- 3. Refined Story (Broken Grid) --- */
/* Overrides existing .story-section for premium look */
.story-premium {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  background-color: #f9f9f9;
  /* Subtle diff from vanilla */
  overflow: hidden;
}

.story-premium-content {
  padding: 10% 15%;
  position: relative;
  z-index: 2;
}

.story-premium-content::before {
  content: '"';
  position: absolute;
  top: 5%;
  left: 10%;
  font-size: 10rem;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
}

.story-premium-image {
  height: 100%;
  min-height: 500px;
  position: relative;
}

.story-premium-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-accent-box {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background-color: var(--ceramic-yellow);
  color: var(--coffee-bean);
  padding: 20px 40px;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
}

/* --- 4. Signature Dishes (Scroll/Grid) --- */
.signature-dishes-section {
  padding: 100px 20px;
  background-color: var(--coffee-bean);
  color: var(--vanilla);
  text-align: center;
}

.section-header-center {
  margin-bottom: 60px;
}

.section-header-center h2 {
  font-size: 3rem;
  color: var(--ceramic-yellow);
  margin-bottom: 10px;
}

.section-header-center p {
  color: #aaa;
  max-width: 600px;
  margin: 0 auto;
}

.dishes-slider {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  padding-bottom: 40px;
  justify-content: center;
  /* Fallback for few items */
  flex-wrap: wrap;
  /* Fallback to grid on larger screens */
}

/* Hide scrollbar */
.dishes-slider::-webkit-scrollbar {
  display: none;
}

.dish-card-premium {
  min-width: 280px;
  width: 300px;
  background-color: #2a0e05;
  /* Slightly lighter than bg */
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s;
  text-align: left;
}

.dish-card-premium:hover {
  transform: translateY(-10px);
}

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

.dish-info {
  padding: 20px;
}

.dish-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.dish-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--vanilla);
}

.dish-price {
  color: var(--ceramic-yellow);
  font-weight: bold;
  font-size: 1.1rem;
}

.dish-desc {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 20px;
  height: 40px;
  /* Fixed height for alignment */
  overflow: hidden;
}

.btn-order-sm {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px;
  border: 1px solid var(--ceramic-yellow);
  color: var(--ceramic-yellow);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: 0.3s;
  border-radius: 5px;
}

.btn-order-sm:hover {
  background-color: var(--ceramic-yellow);
  color: var(--coffee-bean);
}

/* --- 5. Locations (Destinations) Refinement --- */
.destinations-section {
  padding: 100px 20px;
  background-color: var(--vanilla);
  text-align: center;
}

.location-card-premium {
  position: relative;
  height: 400px;
  /* Taller */
  border-radius: 20px;
  overflow: hidden;
  color: white;
}

.location-card-premium img {
  transition: transform 0.6s ease;
}

.location-card-premium:hover img {
  transform: scale(1.1);
}

.location-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  padding: 30px;
  text-align: left;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.location-card-premium:hover .location-overlay {
  transform: translateY(0);
}

.location-overlay h3 {
  font-size: 2rem;
  margin-bottom: 5px;
  color: var(--ceramic-yellow);
}

.location-overlay p {
  margin-bottom: 15px;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* --- 6. Testimonials Showcase (Bento Grid) --- */
.testimonials-section {
  padding: 100px 20px;
  background-color: #f4f1ea;
  background-image:
    radial-gradient(#e0e0e0 1px, transparent 1px),
    /* Decorative blobs */
    radial-gradient(circle at 10% 20%,
      rgba(246, 170, 28, 0.05) 0%,
      transparent 20%),
    radial-gradient(circle at 90% 80%,
      rgba(98, 23, 8, 0.03) 0%,
      transparent 20%);
  background-size:
    20px 20px,
    100% 100%,
    100% 100%;
}

.testimonial-grid-wrapper {
  max-width: 100%;
  padding: 0 15px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: 25px;
  overflow: hidden;
}

.testi-card {
  background: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

/* Card Variations for Bento Layout */

/* Tall Card (Center Image style) */
.testi-card.tall {
  grid-row: span 2;
  padding: 0;
}

.testi-image-full {
  width: 100%;
  height: 60%;
  object-fit: cover;
}

.testi-tall-content {
  padding: 20px;
  text-align: center;
}

/* Wide Card */
.testi-card.wide {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  padding: 40px;
}

.testi-card.wide img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

/* Quote Focused Card (Standardized White) */
.testi-card.quote-focus {
  background-color: white;
  color: inherit;
}

.testi-card.quote-focus .testi-text {
  color: #555;
  font-size: 1.1rem;
  font-style: italic;
}

.testi-card.quote-focus .testi-info h4 {
  color: var(--dark-garnet);
}

/* Standard Card enhancements */
.testi-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.testi-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.rating-stars {
  color: var(--orange);
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.testi-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.testi-info h4 {
  font-size: 0.95rem;
  font-weight: bold;
  color: var(--dark-garnet);
  margin: 0;
}

.testi-info span {
  font-size: 0.75rem;
  color: #999;
}

.quote-mark-bg {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 4rem;
  color: rgba(0, 0, 0, 0.03);
}

@media (max-width: 900px) {
  .testimonial-grid-wrapper {
    grid-template-columns: 1fr;
    /* Stack on mobile */
  }

  .testi-card.wide {
    grid-column: span 1;
    flex-direction: column;
    text-align: center;
  }

  .testi-card.tall {
    grid-row: span 1;
  }
}

.customer-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.customer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #ccc;
  overflow: hidden;
}

.customer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.customer-name h4 {
  margin: 0;
  color: var(--dark-garnet);
}

.customer-name span {
  font-size: 0.8rem;
  color: #888;
}

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

  .story-premium-image {
    order: -1;
    /* Image first on mobile */
    min-height: 300px;
  }

  .story-accent-box {
    left: 20px;
    bottom: -20px;
  }

  .features-grid {
    flex-direction: column;
    align-items: center;
  }

  .cuisine-grid {
    grid-template-columns: 1fr;
    /* Stack locations */
  }
}

/* --- Menu Header Design --- */
.menu-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding: 0 20px;
}

.menu-header .section-title {
  font-size: 3.5rem;
  color: var(--coffee-bean);
  margin-bottom: 15px;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.menu-header p {
  font-style: italic;
  color: var(--dark-garnet);
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto;
}

.menu-header .decorative-line {
  width: 100px;
  height: 3px;
  background: linear-gradient(to right,
      transparent,
      var(--ceramic-yellow),
      transparent);
  margin: 25px auto 0;
}

/* --- 6. Premium Menu Grid (Main Courses) --- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.menu-card-premium {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.menu-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.menu-img-wrapper {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.menu-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card-premium:hover .menu-img-wrapper img {
  transform: scale(1.08);
}

.menu-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.menu-card-header h3 {
  font-size: 1.3rem;
  color: var(--coffee-bean);
  margin: 0;
  max-width: 70%;
}

.menu-price {
  font-size: 1.4rem;
  color: var(--dark-garnet);
  font-weight: bold;
}

.menu-desc {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.menu-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Adjust quantity input for card */
.menu-card-premium .quantity-selector input {
  width: 50px;
  background: #f4f1ea;
  border: none;
  color: var(--coffee-bean);
}

.menu-card-premium .add-to-cart-btn {
  padding: 8px 20px;
  font-size: 0.85rem;
}

/* --- 7. Zig-Zag Menu Layout (Alternative Premium Design) --- */
.menu-layout-zigzag {
  max-width: 1000px;
  margin: 60px auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.menu-row {
  display: flex;
  align-items: center;
  gap: 60px;
  background: transparent;
  /* Clean look, no card bg */
}

/* Alternate direction for even rows */
.menu-row:nth-child(even) {
  flex-direction: row-reverse;
}

.menu-row-img {
  flex: 1;
  height: 350px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  background-color: #f4f1ec;
  /* Loading placeholder color */
}

.menu-row-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-row:hover .menu-row-img img {
  transform: scale(1.05);
}

.menu-row-content {
  flex: 1;
  padding: 20px;
  text-align: left;
  /* Default left align */
}

/* Align text opposite to image */
.menu-row:nth-child(even) .menu-row-content {
  text-align: right;
  align-items: flex-end;
}

.menu-row-header {
  display: flex;
  flex-direction: column;
  /* Stack title and price */
  gap: 10px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--ceramic-yellow);
  padding-bottom: 15px;
  display: inline-block;
  /* Wrap to content width */
}

.menu-row:nth-child(even) .menu-row-header {
  align-items: flex-end;
  /* Align lines to right */
}

.menu-row-header h3 {
  font-size: 2rem;
  color: var(--coffee-bean);
  margin: 0;
  line-height: 1.2;
}

.menu-row-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--dark-garnet);
}

.menu-row-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

.menu-row-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Align actions */
.menu-row:nth-child(even) .menu-row-actions {
  justify-content: flex-end;
}

.menu-row .add-to-cart-btn {
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 5px;
  /* sharper buttons */
  background-color: var(--coffee-bean);
  color: var(--ceramic-yellow);
}

.menu-row .add-to-cart-btn:hover {
  background-color: var(--ceramic-yellow);
  color: var(--coffee-bean);
}

/* Mobile Responsive */
@media (max-width: 768px) {

  .menu-row,
  .menu-row:nth-child(even) {
    flex-direction: column;
    gap: 30px;
    text-align: center;
    background: white;
    padding-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  }

  .menu-row-img {
    width: 100%;
    height: 250px;
    border-radius: 15px 15px 0 0;
  }

  .menu-row-content,
  .menu-row:nth-child(even) .menu-row-content {
    text-align: center;
    align-items: center;
    padding: 0 20px;
  }

  .menu-row:nth-child(even) .menu-row-header {
    align-items: center;
  }


  .menu-row-header {
    align-items: center;
    border-bottom: none;
    /* simpler on mobile */
  }

  .menu-row:nth-child(even) .menu-row-actions,
  .menu-row-actions {
    justify-content: center;
  }
}

/* --- Action Pill Design (Fix) --- */
.action-pill {
  display: flex;
  align-items: center;
  background: #f4f1ea;
  border-radius: 50px;
  padding: 5px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.action-pill .quantity-selector {
  display: flex;
  align-items: center;
  padding: 0 15px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0;
}

.action-pill .quantity-selector label {
  font-size: 0.8rem;
  color: #888;
  margin-right: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.action-pill .quantity-input {
  width: 30px;
  background: transparent;
  border: none;
  font-weight: bold;
  color: var(--coffee-bean);
  text-align: center;
  font-size: 1rem;
}

.action-pill .quantity-input:focus {
  outline: none;
}

.menu-row .add-to-cart-btn {
  padding: 10px 25px;
  font-size: 0.9rem;
  border-radius: 40px;
  /* Fully rounded inside pill context */
  background-color: var(--coffee-bean);
  color: var(--ceramic-yellow);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  margin-left: 5px;
}

.menu-row .add-to-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  background-color: var(--ceramic-yellow);
  color: var(--coffee-bean);
}

/* ============================================
   DASHBOARD STYLES
   ============================================ */

.dashboard-wrapper {
  display: flex;
  min-height: 100vh;
  padding-top: 80px;
  /* Account for fixed navbar */
  background-color: var(--vanilla);
}

/* --- User Sidebar (Light Theme) --- */
.user-sidebar {
  width: 280px;
  background-color: #fff;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 80px;
  bottom: 0;
  overflow-y: auto;
  transition: transform 0.3s ease;
  z-index: 90;
}

.sidebar-profile {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.profile-pic {
  font-size: 4rem;
  color: var(--auburn);
  margin-bottom: 15px;
}

.sidebar-profile h3 {
  font-size: 1.2rem;
  color: var(--coffee-bean);
}

/* --- Admin Sidebar (Dark Theme) --- */
.admin-sidebar {
  width: 280px;
  background-color: var(--coffee-bean);
  color: var(--vanilla);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 80px;
  bottom: 0;
  overflow-y: auto;
  transition: transform 0.3s ease;
  z-index: 90;
}

.admin-sidebar .sidebar-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-sidebar h3 {
  letter-spacing: 1px;
}

/* --- Sidebar Menu --- */
.sidebar-menu {
  list-style: none;
  padding: 0;
}

.sidebar-menu li {
  margin-bottom: 10px;
}

/* User Menu Links */
.user-sidebar .sidebar-menu a {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: var(--bordeaux);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s;
  font-weight: 500;
}

.user-sidebar .sidebar-menu a:hover,
.user-sidebar .sidebar-menu li.active a {
  background-color: var(--ceramic-yellow);
  color: var(--coffee-bean);
}

.user-sidebar .sidebar-menu i {
  margin-right: 12px;
  width: 20px;
  text-align: center;
}

/* Admin Menu Links */
.admin-sidebar .sidebar-menu a {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s;
  font-weight: 500;
}

.admin-sidebar .sidebar-menu a:hover,
.admin-sidebar .sidebar-menu li.active a {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--ceramic-yellow);
}

.admin-sidebar .sidebar-menu i {
  margin-right: 12px;
  width: 20px;
  text-align: center;
}

/* --- Main Content Area --- */
.user-main,
.admin-main {
  flex: 1;
  padding: 40px;
  margin-left: 280px;
  /* Offset for fixed sidebar */
  background-color: #fbf9f5;
  min-height: calc(100vh - 80px);
}

.content-header {
  margin-bottom: 40px;
}

.content-header h2 {
  font-size: 2.2rem;
  color: var(--auburn);
  margin-bottom: 10px;
}

.content-header p {
  color: #777;
}

/* --- Stats Row --- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.stat-box {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
  border-left: 4px solid var(--ceramic-yellow);
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-label {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-value {
  font-size: 2rem;
  font-weight: bold;
  color: var(--coffee-bean);
}

/* --- Dashboard Grid & Cards --- */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.dashboard-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.dashboard-section {
  padding: 20px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
}

/* --- Tables --- */
.data-table {
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
}

.data-table th,
.data-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.data-table th {
  background-color: var(--auburn);
  color: white;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.data-table tr:hover {
  background-color: #fafafa;
}

/* --- Dashboard Responsive --- */
@media (max-width: 900px) {
  .dashboard-wrapper {
    flex-direction: column;
  }

  .user-sidebar,
  .admin-sidebar {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    flex-direction: row;
    overflow-x: auto;
    padding: 15px;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .sidebar-profile,
  .sidebar-header {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    margin-right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .profile-pic {
    margin-bottom: 0;
    font-size: 2rem;
  }

  .sidebar-menu {
    display: flex;
    gap: 10px;
    margin-bottom: 0;
  }

  .sidebar-menu li {
    margin-bottom: 0;
  }

  .user-sidebar .sidebar-menu a,
  .admin-sidebar .sidebar-menu a {
    white-space: nowrap;
    font-size: 0.9rem;
    padding: 8px 15px;
  }

  .user-main,
  .admin-main {
    margin-left: 0;
    padding: 20px;
    min-height: auto;
  }

  .stats-row {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

/* Modal Enhancements */
.modal {
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2) !important;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* --- About Page Additions --- */
.philosophy-section {
  padding: 80px 20px;
  background-color: var(--vanilla);
  text-align: center;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.philosophy-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  border-bottom: 3px solid var(--auburn);
}

.philosophy-card:hover {
  transform: translateY(-10px);
}

.philosophy-card i {
  font-size: 2.5rem;
  color: var(--ceramic-yellow);
  margin-bottom: 20px;
}

.philosophy-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--coffee-bean);
}

.philosophy-card p {
  color: #666;
  line-height: 1.6;
}

/* Timeline */
.timeline-section {
  padding: 80px 20px;
  background-color: var(--coffee-bean);
  color: var(--vanilla);
  text-align: center;
}

.timeline-container {
  max-width: 800px;
  margin: 50px auto 0;
  position: relative;
  border-left: 2px solid var(--ceramic-yellow);
  padding-left: 40px;
  text-align: left;
}

.timeline-item {
  margin-bottom: 50px;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -49px;
  top: 5px;
  width: 16px;
  height: 16px;
  background: var(--ceramic-yellow);
  border-radius: 50%;
  border: 4px solid var(--coffee-bean);
}

.timeline-year {
  font-size: 2rem;
  font-weight: bold;
  color: var(--ceramic-yellow);
  font-family: var(--font-heading);
  margin-bottom: 10px;
}

.timeline-item p {
  opacity: 0.8;
  line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
  padding: 80px 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../bgimg.jpg') fixed center/cover;
  color: white;
  text-align: center;
  overflow: hidden;
  width: 100%;
}

.testimonial-card-premium {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 15px;
  max-width: 800px;
  margin: 40px auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-text {
  font-size: 1.3rem;
  font-style: italic;
  font-family: var(--font-body);
  margin-bottom: 20px;
  line-height: 1.6;
}


/* Testimonial Slider */
.testimonial-slider {
  display: grid;
  grid-template-areas: "slide";
  align-items: center;
  justify-items: center;
  margin-top: 40px;
  margin-bottom: 20px;
  /* height removed for auto sizing */
}

.testimonial-slide {
  grid-area: slide;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 1s ease;
  transform: scale(0.95);
  pointer-events: none;
  width: 100%;
}

.testimonial-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}


.testimonial-dot.active {
  background: var(--ceramic-yellow);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(246, 170, 28, 0.4);
}

/* Signature Dishes Slider */
.dishes-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 40px 20px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.dishes-slider::-webkit-scrollbar {
  display: none;
}

.dish-card-premium {
  min-width: 300px;
  width: 300px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
  scroll-snap-align: center;
}

@media (max-width: 480px) {

  /* Navbar optimizations for very small screens */
  .navbar {
    padding: 8px 10px;
    /* Minimal padding for 320px screens */
    height: 60px;
  }

  .logo {
    gap: 10px;
    /* Reduced gap */
  }

  .logo img {
    height: 32px;
    /* Smaller logo for tiny screens */
  }

  .brand-name {
    font-size: 1rem;
    letter-spacing: 0.5px;
    max-width: none;
    overflow: visible;
    text-overflow: clip;
  }

  .nav-actions {
    gap: 10px;
    /* Tighter spacing for very small screens */
  }

  .cart-link,
  .account-btn,
  .nav-toggle-label {
    width: 40px;
    height: 40px;
    /* Slightly smaller but still touch-friendly */
    font-size: 1rem;
  }

  /* Hero & Heading Fixes for Mobile */
  .page-banner {
    padding: 80px 16px !important;
    min-height: 350px !important;
    height: auto !important;
    overflow: visible !important;
  }

  .hero-title,
  .page-banner h1 {
    font-size: 2rem !important;
    letter-spacing: -0.5px !important;
    line-height: 1.3 !important;
    margin-bottom: 15px !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
  }

  .hero-subtitle,
  .page-banner p {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    padding: 0 10px !important;
    max-width: 100% !important;
  }

  .btn-hero-cta,
  .btn-hero,
  .btn {
    padding: 12px 25px !important;
    font-size: 0.8rem !important;
    width: auto !important;
    max-width: 250px !important;
    margin-top: 20px !important;
  }

  /* Featured Article Stacking */
  .featured-card {
    flex-direction: column !important;
    border-radius: 12px !important;
  }

  .featured-img {
    min-height: 250px !important;
    height: 250px !important;
  }

  .featured-content {
    padding: 30px 20px !important;
  }

  /* Newsletter & Form Stacking */
  .blog-newsletter h2 {
    font-size: 2rem !important;
  }

  .blog-newsletter-form {
    flex-direction: column !important;
    width: 100% !important;
    padding: 0 10px !important;
  }

  .blog-newsletter-form input,
  .blog-newsletter-form button {
    width: 100% !important;
    padding: 15px !important;
    font-size: 1rem !important;
  }

  /* Categories Bar */
  .categories-bar {
    margin-bottom: 30px !important;
  }

  .category-btn {
    padding: 10px 18px !important;
    font-size: 0.75rem !important;
  }

  .insta-feed {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Section Titles & Form Headers */
  .section-title {
    font-size: 1.8rem !important;
    margin-bottom: 10px !important;
  }

  .form-header {
    font-size: 1.6rem !important;
    margin-bottom: 20px !important;
  }

  .decorative-line {
    width: 120px !important;
    margin-bottom: 20px !important;
  }

  .btn-send-inquiry {
    padding: 14px !important;
    font-size: 0.9rem !important;
  }

  /* Dish cards */
  .dish-card-premium {
    min-width: 280px;
    width: 280px;
  }
}


.dish-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(148, 27, 12, 0.2);
}

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

.dish-info {
  padding: 25px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 200px);
}

.dish-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.dish-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--coffee-bean);
}

.dish-price {
  font-weight: bold;
  color: var(--ceramic-yellow);
  font-size: 1.1rem;
}

.dish-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
  flex-grow: 1;
}

.btn-order-sm {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  background: var(--auburn);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: all 0.3s;
  letter-spacing: 1px;
}



/* Blog Page Enhancements - REFINED */

/* 6. Spacing System */
:root {
  --gap-section: 96px;
  --gap-inner: 64px;
  --gap-card: 32px;
}

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

/* 1. Hero / Page Banner */
.page-banner {
  background: linear-gradient(rgba(34, 9, 1, 0.6), rgba(34, 9, 1, 0.6)), url('../bgimg.jpg');
  background-size: cover;
  background-position: center;
  padding: 140px 20px 60px;
  /* Reduced height, optimized for fixed nav */
  text-align: center;
  color: white;
  margin-bottom: var(--gap-section);
}

.page-banner h1,
.hero-title {
  font-size: clamp(2.2rem, 8vw, 4.5rem);
  color: var(--ceramic-yellow);
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  letter-spacing: normal;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.page-banner p,
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: #f0f0f0;
  max-width: 700px;
  margin: 0 auto 30px;
  font-family: var(--font-body);
  font-style: italic;
  line-height: 1.6;
}

/* Hero CTA Buttons */
.btn-hero-cta,
.btn-hero {
  display: inline-block;
  padding: 15px 40px;
  background: var(--ceramic-yellow);
  color: var(--coffee-bean);
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 5px;
  transition: all 0.3s;
  border: 2px solid var(--ceramic-yellow);
  margin-top: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero-cta:hover,
.btn-hero:hover {
  background: transparent;
  color: var(--ceramic-yellow);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* 3. Featured Article (Editor's Pick) */
.featured-article {
  padding: 0 20px;
  margin-bottom: var(--gap-section);
  background: var(--vanilla);
}

.featured-card {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.featured-img {
  flex: 1;
  min-height: 450px;
  position: relative;
}

.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-content {
  flex: 1;
  padding: var(--gap-inner);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-tag {
  color: var(--auburn);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  display: inline-block;
  position: relative;
}

.featured-tag::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--ceramic-yellow);
  margin-top: 8px;
}

.featured-content h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--coffee-bean);
  margin-bottom: 25px;
  line-height: 1.1;
  font-weight: 800;
}

.featured-content p {
  color: #555;
  margin-bottom: 40px;
  font-size: 1.15rem;
  line-height: 1.8;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 45px;
  background: var(--auburn);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  align-self: flex-start;
  transition: all 0.3s;
  box-shadow: 0 10px 20px rgba(148, 27, 12, 0.2);
}

.btn-read-more:hover {
  background: var(--dark-garnet);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(148, 27, 12, 0.3);
}

/* 4. Category Pills */
.categories-bar {
  padding: 20px 0;
  margin-bottom: 60px;
  text-align: center;
  background: transparent;
  overflow-x: auto;
}

.categories-list {
  display: inline-flex;
  gap: 20px;
  padding: 10px 20px;
  list-style: none;
  margin: 0;
  min-width: max-content;
}

.category-btn {
  padding: 12px 30px;
  border: 1px solid rgba(34, 9, 1, 0.2);
  border-radius: 50px;
  background: transparent;
  color: var(--coffee-bean);
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 700;
  font-family: var(--font-ui);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
}

.category-btn:hover {
  transform: scale(1.05);
  border-color: var(--auburn);
  color: var(--auburn);
}

.category-btn.active {
  background: var(--coffee-bean);
  color: var(--ceramic-yellow);
  border-color: var(--coffee-bean);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* 7. Newsletter */
.blog-newsletter {
  padding: var(--gap-section) 20px;
  background: linear-gradient(rgba(34, 9, 1, 0.9), rgba(34, 9, 1, 0.8)), url('../bgimg.jpg') fixed center/cover;
  text-align: center;
  color: white;
  margin-top: 0;
  margin-bottom: 0;
}

.blog-newsletter h2 {
  color: var(--ceramic-yellow);
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 20px;
}

.blog-newsletter p {
  font-size: 1.4rem;
  font-weight: 300;
  opacity: 1;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

.blog-newsletter-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  gap: 15px;
}

.blog-newsletter-form input {
  flex: 1;
  padding: 20px;
  border-radius: 5px;
  border: 2px solid transparent;
  outline: none;
  font-size: 1.1rem;
  transition: border-color 0.3s;
  font-family: var(--font-body);
}

.blog-newsletter-form input:focus {
  border-color: var(--ceramic-yellow);
}

.blog-newsletter-form button {
  padding: 20px 40px;
  background: var(--ceramic-yellow);
  color: var(--coffee-bean);
  border: none;
  border-radius: 5px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1rem;
}

.blog-newsletter-form button:hover {
  background: #e59d1a;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(246, 170, 28, 0.4);
}

/* 8. Instagram - Premium Design */
.insta-section-title {
  padding: 100px 0 50px;
  text-align: center;
  background-color: white;
}

.insta-subtitle {
  display: block;
  color: var(--ceramic-yellow);
  font-family: var(--font-ui);
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.insta-section-title h2 {
  font-family: var(--font-heading);
  color: var(--coffee-bean);
  font-size: 3.5rem;
  margin-bottom: 30px;
  line-height: 1;
  position: relative;
  display: inline-block;
}

.btn-follow-insta {
  display: inline-block;
  padding: 12px 35px;
  border: 2px solid var(--coffee-bean);
  color: var(--coffee-bean);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s;
  border-radius: 50px;
}

.btn-follow-insta:hover {
  background: var(--coffee-bean);
  color: var(--ceramic-yellow);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.insta-feed {
  display: flex;
  width: 100%;
  height: 450px;
}

.insta-item {
  flex: 1;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-width: 0;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(34, 9, 1, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(3px);
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

.insta-item:hover img {
  transform: scale(1.15);
}

.insta-icon {
  font-size: 2.5rem;
  color: var(--ceramic-yellow);
  margin-bottom: 15px;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.insta-item:hover .insta-icon {
  transform: translateY(0);
}

.insta-text {
  color: white;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.1s;
}

.insta-item:hover .insta-text {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .insta-feed {
    flex-wrap: wrap;
    height: auto;
  }

  .insta-item {
    flex: 1 1 50%;
    /* 2 per row */
    height: 300px;
  }

  .insta-section-title h2 {
    font-size: 2.5rem;
  }

  .insta-item:last-child {
    flex: 1 1 100%;
    /* Full width last item */
  }
}


/* ============================================
   HERITAGE DINING (Secondary Homepage) - NEW
   ============================================ */

/* --- Typography - Large Scale --- */
.heritage-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4rem);
  /* Responsive scaling */
  line-height: 1.1;
  color: #F4D03F;
  /* Warm elegant gold for better contrast */
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.6);
  /* Enhanced shadow for clarity */
}

.heritage-title span {
  display: block;
  font-size: 2rem;
  color: #FFE5A0;
  /* Softer ivory-gold for "Est. 1947" */
  font-weight: 400;
  margin-bottom: 15px;
  letter-spacing: 8px;
  font-style: italic;
  font-family: var(--font-body);
  text-transform: none;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.7);
}

.heritage-subtitle {
  font-size: 1.2rem;
  /* Reduced from 1.6rem */
  font-family: var(--font-body);
  color: #F5F5DC;
  /* Warm ivory/beige for better readability */
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 400;
  /* Slightly bolder for clarity */
  font-style: italic;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.6);
  /* Enhanced shadow */
}

/* --- Section 1: Cinematic Hero --- */
.heritage-hero {
  min-height: 90vh;
  /* Explicit minimum */
  width: 100%;
  /* Balanced gradient overlay for optimal text clarity */
  background: linear-gradient(to bottom, rgba(15, 10, 10, 0.65) 0%, rgba(10, 5, 5, 0.78) 50%, rgba(5, 0, 0, 0.82) 100%), url('../bgimg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.heritage-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, transparent 15%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0.75) 100%);
  /* Softer vignette for balanced focus */
  pointer-events: none;
  z-index: 1;
}

.heritage-content {
  max-width: 1000px;
  /* Enforced max-width */
  padding: 0 40px;
  z-index: 2;
  animation: fadeInUp 1.2s ease-out;
}

/* Heritage CTAs */
.btn-heritage-primary {
  display: inline-block;
  padding: 18px 50px;
  background: #E8B923;
  /* Richer gold for better visibility */
  color: #1A0F0A;
  /* Darker text for WCAG contrast */
  font-family: var(--font-ui);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  border: 2px solid #E8B923;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin: 10px;
  box-shadow: 0 4px 15px rgba(232, 185, 35, 0.4);
  /* Subtle glow */
}

.btn-heritage-primary:hover {
  background: transparent;
  color: #F4D03F;
  /* Matches headline gold */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(232, 185, 35, 0.5);
  border-color: #F4D03F;
}

.btn-heritage-secondary {
  display: inline-block;
  padding: 18px 50px;
  background: transparent;
  color: #F5F5DC;
  /* Warm ivory to match subtitle */
  font-family: var(--font-ui);
  font-weight: 700;
  /* Reduced weight slightly */
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  border: 2px solid rgba(245, 245, 220, 0.6);
  /* More visible border */
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin: 10px;
  opacity: 1;
}

.btn-heritage-secondary:hover {
  border-color: #F4D03F;
  /* Gold accent on hover */
  background: rgba(244, 208, 63, 0.15);
  color: #F4D03F;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(244, 208, 63, 0.3);
}

/* --- Section 2: What Makes It Heritage --- */
.heritage-features {
  padding: 80px 20px;
  /* Reduced from 160px to 80px */
  background-color: var(--vanilla);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.heritage-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 60px auto 0;
}

.heritage-icon-item {
  padding: 20px;
}

.heritage-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  /* Increased spacing */
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px double var(--auburn);
  border-radius: 50%;
  color: var(--auburn);
  font-size: 2.5rem;
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  /* Slight opacity */
}

/* Removed dashed border for cleaner 'stamp' look */
.heritage-icon-wrapper::after {
  display: none;
}

.heritage-icon-item h3 {
  font-size: 1.6rem;
  color: var(--coffee-bean);
  margin-bottom: 20px;
  /* Increased */
  font-family: var(--font-heading);
}

.heritage-icon-item p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  max-width: 300px;
  /* Limit width */
  margin: 0 auto;
}

/* --- Section 3: Signature Heritage Dishes (Horizontal List) --- */
.heritage-menu-section {
  padding: 50px 20px;
  /* Reduced vertical padding */
  background-color: #1a0500;
  background-color: #1a0500;
  /* Deepest coffee */
  color: var(--vanilla);
  position: relative;
}

.heritage-dish-list {
  max-width: 800px;
  /* Tighter list */
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.heritage-dish-card {
  display: block;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  /* Elegant separator */
  padding: 30px 0;
  /* Significantly reduced padding for tighter fit */
  position: relative;
  transition: all 0.5s ease;
  box-shadow: none;
}

.heritage-dish-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 0% 50%, rgba(255, 166, 0, 0.08), transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.heritage-dish-card:hover::after {
  opacity: 1;
}

.heritage-dish-card:hover {
  transform: translateX(10px);
  background: transparent;
  border-bottom-color: var(--ceramic-yellow);
  /* Highlight on interaction */
  box-shadow: none;
}

.heritage-dish-card::after {
  display: none;
}

.heritage-dish-info {
  padding: 0 20px;
  /* Slight horizontal padding */
  width: 100%;
}

.heritage-dish-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.heritage-dish-title {
  font-size: 2.0rem;
  /* Reduced from 2.8rem for better fit */
  font-family: var(--font-heading);
  color: var(--ceramic-yellow);
  margin: 0;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
  letter-spacing: 1px;
}

.heritage-dish-region {
  font-family: var(--font-ui);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  opacity: 0.8;
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* Softer region tag */
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  /* Secondary priority */
  margin-left: auto;
  /* Push to right */
  background: rgba(255, 255, 255, 0.05);
}

.heritage-dish-story {
  font-size: 1.15rem;
  line-height: 1.9;
  /* Increased for readability/storytelling feel */
  opacity: 0.9;
  font-style: italic;
  color: #dcdcdc;
}

/* --- Section 4: Provenance (Split) --- */
.provenance-split {
  display: flex;
  min-height: 700px;
  position: relative;
  overflow: hidden;
}

.provenance-img {
  flex: 0.85;
  /* Reduced width to give text more space */
  background-image: url('https://images.unsplash.com/photo-1596040033229-a9821ebd058d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80');
  /* Authentic Spices Image */
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: inset -10px 0 30px rgba(0, 0, 0, 0.3);
}

/* Gold Inset Frame */
.provenance-img::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
  z-index: 1;
  pointer-events: none;
}

.provenance-content {
  flex: 1.15;
  /* Increased */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 80px;
  /* More horizontal padding */
  background-color: #f4f1ea;
  color: var(--coffee-bean);
}

.provenance-content h2 {
  font-size: 2.8rem;
  /* Reduced from 3.5rem+ */
  margin-bottom: 20px;
  line-height: 1.1;
}

.provenance-content p {
  font-size: 1.1rem;
  /* Reduced from 1.3rem */
  margin-bottom: 20px;
  color: #444;
  line-height: 1.6;
}

.provenance-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.provenance-list li {
  font-size: 1.1rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--dark-garnet);
  font-weight: 600;

  /* Card Style */
  background: #fff;
  padding: 15px 25px;
  border-radius: 4px;
  border-left: 4px solid var(--auburn);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.provenance-list li:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.provenance-list li i {
  font-size: 1.4rem;
  color: var(--auburn);
  /* Stronger accent color */
  width: 30px;
  /* Fixed width for alignment */
  text-align: center;
}

/* Spot Illustration Class */
.spot-illustration {
  position: absolute;
  right: -20px;
  bottom: -20px;
  font-size: 15rem;
  color: var(--auburn);
  opacity: 0.06;
  /* Slightly more visible watermark */
  z-index: 0;
  pointer-events: none;
  transform: rotate(-15deg);
}

/* --- Section 5: Cultural Experience --- */
.heritage-experience {
  padding: 100px 20px;
  /* Reduced from 150px */
  background: linear-gradient(rgba(34, 9, 1, 0.9), rgba(34, 9, 1, 0.85)), url('../bgimg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

/* Soft CTA */
.btn-text-heritage {
  display: inline-block;
  color: var(--ceramic-yellow);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  /* Reduced */
  text-decoration: underline;
  margin-top: 20px;
  transition: opacity 0.3s;
  font-style: italic;
  letter-spacing: 1px;
  background: none;
  border: none;
  cursor: pointer;
}

.btn-text-heritage:hover {
  color: var(--white);
  opacity: 0.8;
}

.heritage-experience h2 {
  font-size: 3rem;
  /* Reduced from 4rem */
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.heritage-experience p {
  font-size: 1.2rem;
  /* Reduced from 1.5rem */
  max-width: 800px;
  margin: 0 auto 50px;
  font-style: italic;
  opacity: 0.9;
}

/* --- Section 6: Chef Legacy --- */
.chef-legacy {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  /* Image tighter, content wider */
  align-items: center;
  padding: 100px 5%;
  background-color: #f9f6e5;
  /* Vanilla */
  gap: 0;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.chef-legacy-img {
  height: 700px;
  /* Tall portrait focus */
  width: 100%;
  position: relative;
  z-index: 1;
  order: 1;
  /* Image Left */
}

.chef-legacy-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  /* Soft, deep shadow */
  border-radius: 2px;
  filter: sepia(0.1) contrast(1.05);
}

.chef-legacy-content {
  order: 2;
  /* Content Right */
  background: white;
  padding: 80px 60px 80px 100px;
  /* Large left padding for overlap */
  margin-left: -120px;
  /* The Overlap */
  z-index: 2;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--auburn);
}

.chef-legacy-content h2 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #888;
  margin-bottom: 20px;
  font-family: var(--font-ui);
  font-weight: 700;
}

.chef-name {
  display: block;
  font-size: 3.8rem;
  /* Massive Scale */
  color: var(--dark-garnet);
  margin-bottom: 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
}

.chef-quote {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--coffee-bean);
  border: none;
  padding: 0;
  margin: 40px 0 0 0;
  position: relative;
  line-height: 1.6;
}

.chef-quote::before {
  content: '“';
  font-size: 8rem;
  color: var(--ceramic-yellow);
  opacity: 0.25;
  position: absolute;
  top: -60px;
  left: -40px;
  font-family: serif;
  line-height: 1;
}

/* --- Section 7: Filtered Testimonials --- */
.heritage-testimonials {
  padding: 120px 20px;
  background-color: #2b0c04;
  /* Dark heritage background */
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.heritage-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  /* Increased spacing */
  max-width: 1200px;
  margin: 80px auto 0;
}

.heritage-testi-card {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  transition: all 0.3s;
}

.heritage-testi-card:hover {
  border-color: var(--ceramic-yellow);
  background: rgba(255, 255, 255, 0.02);
}

.heritage-testi-text {
  font-size: 1.25rem;
  /* Increased prominent quote */
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 30px;
  opacity: 1;
  /* Full opacity */
  color: #fff;
  font-family: var(--font-heading);
  /* Serif for heritage feel */
}

.heritage-testi-author {
  font-family: var(--font-body);
  /* Demoted from heading font */
  color: var(--ceramic-yellow);
  font-size: 0.9rem;
  /* Reduced metadata size */
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* --- Section 8: Heritage Locations (Reuse grid but specific styling) --- */
.heritage-locations {
  padding: 120px 20px;
  background-color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Fix Card Aspect Ratios */
.heritage-locations .card-img-wrapper img {
  aspect-ratio: 16/9;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.heritage-locations .cuisine-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.heritage-locations .card-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  /* Ensure internal padding */
}

/* --- Section 9: Final CTA --- */
.heritage-final-cta {
  padding: 120px 20px;
  /* Reduced from 180px to fix bottom white space */
  background-color: black;
  background-image: radial-gradient(circle at center, #220901 0%, #000 100%);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.heritage-final-cta h2 {
  font-size: clamp(3rem, 5vw, 5rem);
  /* Responsive scale */
  color: var(--white);
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Comprehensive Mobile Responsiveness --- */
@media (max-width: 992px) {

  /* Typography Scaling */
  html {
    font-size: 14px;
  }

  .heritage-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  /* Heritage Hero */
  .heritage-hero {
    padding: 100px 20px;
    text-align: center;
    background-attachment: scroll;
    /* Better mobile performance */
    min-height: 85vh;
  }

  .heritage-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .heritage-icon-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }

  /* Timeless Creations (Menu) */
  .heritage-menu-section {
    padding: 60px 20px;
  }

  .heritage-dish-list {
    gap: 40px;
    margin-top: 40px;
  }

  .heritage-dish-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .heritage-dish-title {
    font-size: 1.8rem;
  }

  .heritage-dish-region {
    margin-left: 0;
    align-self: flex-start;
    margin-bottom: 5px;
  }

  .heritage-dish-card {
    padding: 30px 0;
  }

  /* Provenance Section */
  .provenance-split {
    flex-direction: column;
    height: auto;
    min-height: auto;
  }

  .provenance-img {
    height: 350px;
    flex: none;
    width: 100%;
  }

  .provenance-content {
    padding: 60px 20px;
    text-align: center;
  }

  .provenance-list li {
    justify-content: flex-start;
    text-align: left;
  }

  /* Chef Legacy (Mobile Stack) */
  .chef-legacy {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    padding: 60px 20px;
    gap: 0;
    text-align: center;
  }

  .chef-legacy-img {
    width: 100%;
    height: 400px;
    order: 1;
    margin-bottom: -40px;
    /* Slight overlap */
  }

  .chef-legacy-content {
    order: 2;
    margin-left: 0;
    padding: 60px 30px 40px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }

  .chef-name {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .chef-quote::before {
    font-size: 5rem;
    top: -30px;
    left: 0;
  }

  /* Testimonials */
  .heritage-testimonials {
    padding: 80px 20px;
  }

  .heritage-testi-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
  }

  /* Locations */
  .heritage-locations {
    padding: 80px 20px;
  }

  .cuisine-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Final CTA */
  .heritage-final-cta {
    padding: 100px 20px;
  }

  .heritage-final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
}

/* --- FOOTER REDESIGN --- */
.site-footer {
  background-color: var(--coffee-bean, #1a0500);
  color: #e0e0e0;
  padding: 60px 0 20px;
  /* consistent vertical padding */
  font-family: var(--font-ui, 'Lato', sans-serif);
  border-top: 5px solid var(--ceramic-yellow, #e09f3e);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
  /* 4 columns for LG */
  gap: 40px;
  /* consistent gap spacing */
}

/* Tablet Layout (md) */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    /* 2 columns per row */
    gap: 50px 30px;
  }
}

/* Mobile Layout (sm) */
@media (max-width: 576px) {
  .footer-content {
    grid-template-columns: 1fr;
    /* Stack vertically */
    gap: 40px;
    text-align: left;
    /* Align to same side as header (usually left) */
  }
}


/* Column general styles */
.footer-column {
  display: flex;
  flex-direction: column;
}

/* Brand Column */
.footer-brand {
  align-items: flex-start;
}

@media (max-width: 576px) {
  .footer-brand {
    align-items: flex-start;
    /* Aligned to left on mobile for consistency with header */
  }
}

.footer-brand .logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-brand .logo-link img {
  height: 50px;
  width: auto;
}

@media (max-width: 1024px) {

  .logo img,
  .footer-brand .logo-link img {
    height: 38px !important;
    /* Enforce consistent height */
  }
}

@media (max-width: 576px) {

  .logo img,
  .footer-brand .logo-link img {
    height: 35px !important;
    /* Enforce consistent height */
  }
}

.footer-brand .brand-name {
  /* Inherits global brand-name styles for consistency */
  color: var(--ceramic-yellow, #e09f3e);
}

.footer-brand p {
  line-height: 1.6;
  opacity: 0.8;
  margin: 0;
  color: rgba(249, 246, 229, 0.8);
  text-align: left;
}

@media (max-width: 576px) {
  .footer-brand p {
    text-align: left;
    /* Left align on mobile */
  }
}

/* Headings */
.footer-column h3 {
  color: var(--white, #fff);
  font-size: 1.3rem;
  margin-bottom: 25px;
  /* Equal spacing below headings */
  position: relative;
  padding-bottom: 10px;
  font-family: var(--font-heading, 'Playfair Display', serif);
}

.footer-column h3::after {
  content: " ";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--ceramic-yellow, #e09f3e);
}

@media (max-width: 576px) {
  .footer-column h3::after {
    left: 0;
    /* Keep underline on left */
    transform: none;
  }
}

/* Lists and Contact */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* evenly spaced links */
}

.footer-links a {
  color: rgba(249, 246, 229, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--white, #fff);
  transform: translateX(5px);
}

@media (max-width: 576px) {
  .footer-links a:hover {
    transform: none;
  }
}

/* Contact Specific */
.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  color: rgba(249, 246, 229, 0.8);
  line-height: 1.5;
}

@media (max-width: 576px) {
  .footer-contact .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
  }
}

.footer-contact .contact-item i {
  color: var(--ceramic-yellow, #e09f3e);
  margin-top: 4px;
}

/* Social Icons */
.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  align-items: center;
}

@media (max-width: 576px) {
  .footer-socials {
    justify-content: center;
    /* Center social icons on mobile */
  }
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--ceramic-yellow, #e09f3e);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background-color: var(--ceramic-yellow, #e09f3e);
  color: var(--coffee-bean, #1a0500);
  transform: translateY(-3px);
}

/* Newsletter Specific */
.footer-newsletter p {
  color: rgba(249, 246, 229, 0.8);
  margin-bottom: 20px;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  width: 100%;
}

@media (max-width: 576px) {
  .newsletter-form {
    flex-direction: column;
    /* Stack vertically on mobile */
    gap: 10px;
  }
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white, #fff);
  border-radius: 4px 0 0 4px;
  outline: none;
  font-family: inherit;
  min-width: 0;
  /* Prevent flex overflow */
}

@media (max-width: 576px) {
  .newsletter-form input {
    border-radius: 4px;
    /* Rounded corners when stacked */
  }
}

.newsletter-form input:focus {
  border-color: var(--ceramic-yellow, #e09f3e);
}

.newsletter-form button {
  padding: 12px 20px;
  background: var(--ceramic-yellow, #e09f3e);
  border: none;
  color: var(--coffee-bean, #1a0500);
  font-weight: 700;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
  transition: background 0.3s ease;
  font-family: inherit;
  white-space: nowrap;
}

@media (max-width: 576px) {
  .newsletter-form button {
    border-radius: 4px;
    /* Rounded corners when stacked */
    width: 100%;
  }
}

.newsletter-form button:hover {
  background: var(--orange, #f97316);
  /* Or slightly darker */
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 60px;
  /* proper spacing above copyright */
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
  color: rgba(249, 246, 229, 0.8);
}