:root {
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-heading: Georgia, "Times New Roman", Times, serif;
  --color-bg: #ffffff;
  --color-text: #212529;
  --color-primary: #0d6efd;
  --spacing-unit: 1rem;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding-top: 5rem; /* Offset for fixed header */
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  color: var(--color-primary);
  text-decoration: underline;
}

a:hover {
  color: #0a58ca;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  padding-right: var(--spacing-unit);
  padding-left: var(--spacing-unit);
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
}

/* Navigation Bar */
header {
  background-color: #212529; /* Default for non-home pages */
  padding-top: var(--spacing-unit);
  padding-bottom: var(--spacing-unit);
  border-bottom: 1px solid #343a40;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
  background-color: #212529; /* Ensure background is dark on scroll for all pages */
  border-color: #343a40;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Specific styles for the home page header to be transparent at the top */
.home header {
  background-color: #fff;
  border-color: transparent;
  box-shadow: none;
}

.home header .logo,
.home header .nav-links a,
.home header .search-bar button {
  color: var(--color-text);
}

.home header .search-bar input {
  color: var(--color-text);
}

.home header .search-bar input::placeholder {
  color: #6c757d;
}

.home header .hamburger { background-color: var(--color-text); }
.home header .hamburger::before, .home header .hamburger::after { background-color: var(--color-text); }

.home header .dropdown-content a {
  color: var(--color-text);
}

/* On scroll, home page header becomes like other pages */
.home header.scrolled {
  background-color: #212529;
}

.home header.scrolled .logo,
.home header.scrolled .nav-links a,
.home header.scrolled .search-bar button {
  color: #fff;
}

.home header.scrolled .dropdown-content a {
  color: var(--color-text);
}

.home header.scrolled .search-bar input {
  color: #fff;
}

.home header.scrolled .hamburger { background-color: #fff; }
.home header.scrolled .hamburger::before, .home header.scrolled .hamburger::after { background-color: #fff; }

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  position: relative;
  transition: background-color 0.3s;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #fff;
  left: 0;
  transition: top 0.3s;
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

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

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  z-index: 1001;
  border-radius: 0.5rem;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 0;
  border: 1px solid #e9ecef;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  color: var(--color-text);
  padding: 0.5rem 1rem;
  text-decoration: none;
  display: block;
  text-align: left;
  font-weight: 400;
}

.dropdown-content a:hover {
  background-color: #f8f9fa;
  color: var(--color-primary);
}

.nav-links .btn, .nav-links .btn:hover {
  color: #fff;
  padding: 0.5rem 1rem;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    text-align: center;
    padding-top: 1rem;
  }

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

  .about-content {
    flex-direction: column;
  }

  /* Mobile Dropdown: Flatten the list */
  .dropdown .dropbtn {
    display: none;
  }

  .dropdown-content {
    display: block;
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    width: 100%;
    background-color: transparent;
    padding: 0;
  }

  .dropdown-content a {
    text-align: center;
    padding: 0.5rem 0;
    color: #fff;
  }

  .home header .dropdown-content a {
    color: var(--color-text);
  }

  .home header.scrolled .dropdown-content a {
    color: #fff;
  }
}

/* Hero Section */
.hero {
  background-color: #212529;
  color: #fff;
  padding: 10rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

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

.hero-prev, .hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  border: none;
  padding: 1rem;
  cursor: pointer;
  z-index: 3;
  font-size: 1.5rem;
  transition: background-color 0.3s;
}

.hero-prev {
  left: 0;
  border-radius: 0 5px 5px 0;
}

.hero-next {
  right: 0;
  border-radius: 5px 0 0 5px;
}

.hero-prev:hover, .hero-next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.hero-pause {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  font-size: 1rem;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-pause:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 4;
}

.hero-progress-bar {
  height: 100%;
  background-color: var(--color-primary);
  width: 0;
}

.hero-progress-bar.animate {
  animation: progress 5s linear;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.hero-content .btn {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 2rem;
  animation: bounce 2s infinite;
  opacity: 0.8;
  text-decoration: none;
  z-index: 2;
}

.scroll-down:hover {
  color: #fff;
  opacity: 1;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes progress {
  0% { width: 0; }
  100% { width: 100%; }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.25rem;
  transition: background-color 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--color-primary);
  color: #fff;
}

.btn-primary:hover {
  background-color: #0a58ca;
  color: #fff;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

.btn-danger {
  background-color: #dc3545;
  color: #fff;
}

.btn-danger:hover {
  background-color: #bb2d3b;
  color: #fff;
}

.btn-warning {
  background-color: #ffc107;
  color: #212529;
}

.btn-warning:hover {
  background-color: #ffca2c;
  color: #212529;
}

/* Sections */
.section-padding {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.menu-item {
  position: relative;
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #ffc107;
  color: #212529;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1;
}

.vegan-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #198754;
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1;
}

.spicy-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #dc3545;
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1;
}

.new-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: #0d6efd;
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1;
}

.sold-out-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px; /* Matches image height */
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}

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

.menu-details {
  padding: 1.5rem;
}

.price {
  display: block;
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-top: 0.5rem;
}

/* About Section */
.about-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about-text {
  flex: 1;
}

.about-text .section-title {
  text-align: left;
}

.about-image {
  flex: 1;
}

.about-image img {
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  width: 100%;
  height: auto;
}

/* Timeline Section */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: #e9ecef;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: var(--color-bg);
  border: 4px solid var(--color-primary);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item.right::after {
  left: -10px;
}

.timeline-content {
  padding: 20px 30px;
  background-color: #f8f9fa;
  position: relative;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}

.timeline-content h3 {
  color: var(--color-primary);
  margin-top: 0;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.team-member p {
  color: #6c757d;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 0.5rem;
  cursor: pointer;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 800px;
  max-height: 80vh;
  object-fit: contain;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

#lightbox-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
}

/* Footer */
footer {
  background-color: #212529;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
  margin-top: auto;
}

.newsletter {
  margin-bottom: 2rem;
}

.newsletter h3 {
  margin-bottom: 1rem;
}

.newsletter form {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter input {
  padding: 0.5rem;
  border-radius: 0.25rem;
  border: none;
  flex: 1;
}

.social-links {
  margin-bottom: 1rem;
}

.social-links a {
  color: #fff;
  font-size: 1.5rem;
  margin: 0 0.5rem;
  text-decoration: none;
  transition: color 0.3s;
}

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

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: var(--color-bg);
  margin: 10% auto;
  padding: 2rem;
  border: 1px solid #888;
  width: 90%;
  max-width: 500px;
  border-radius: 0.5rem;
  position: relative;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.form-group {
  margin-bottom: 1rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
  font-size: 1rem;
  font-family: inherit;
}

.form-group textarea {
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25);
}

.contact-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.map-container {
  margin-top: 2rem;
}

/* Testimonials Carousel */
.carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  padding: 0;
  margin: 0;
  list-style: none;
}

.carousel-slide {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 3rem;
}

.testimonial-content blockquote {
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.testimonial-content cite {
  font-weight: 700;
  color: var(--color-primary);
  font-style: normal;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.1);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--color-text);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.carousel-button:hover {
  background: rgba(0,0,0,0.2);
}

.carousel-button--left { left: 0; }
.carousel-button--right { right: 0; }

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding-bottom: 1rem;
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  padding: 0;
}

.carousel-indicator.current-slide {
  background: var(--color-primary);
}

/* Back to Top Button */
#backToTop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 1.25rem;
  border: none;
  outline: none;
  background-color: var(--color-primary);
  color: white;
  cursor: pointer;
  padding: 1rem;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

#backToTop:hover {
  background-color: #0a58ca;
}

/* FAQ Section */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid #e9ecef;
}

.accordion-header {
  background-color: transparent;
  color: var(--color-text);
  cursor: pointer;
  padding: 1.5rem 0;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 1.1rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header:hover {
  color: var(--color-primary);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-content p {
  padding-bottom: 1.5rem;
  color: #6c757d;
}

.accordion-header .icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.accordion-header.active .icon {
  transform: rotate(45deg);
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

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

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  font-size: 0.875rem;
  color: #6c757d;
  display: block;
  margin-bottom: 0.5rem;
}

.blog-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.read-more {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 500;
  text-decoration: none;
}

/* Careers Section */
.careers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.job-card {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.job-card h3 {
  margin-bottom: 0.5rem;
}

.job-type {
  display: inline-block;
  background-color: #e9ecef;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  color: #495057;
  margin-bottom: 1rem;
  font-weight: 500;
}

.job-card p {
  color: #6c757d;
  margin-bottom: 1.5rem;
}

/* Specials Section */
.special-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid #e9ecef;
}

.special-image {
  flex: 1;
}

.special-image img {
  border-radius: 0.5rem;
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.special-details {
  flex: 1;
}

.countdown-timer {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
}

.time-box {
  background-color: var(--color-primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  text-align: center;
  min-width: 70px;
}

.time-box span {
  display: block;
  font-weight: 700;
  font-size: 1.5rem;
}

.offer-text {
  font-weight: 500;
  color: #dc3545;
  margin-bottom: 1.5rem;
}

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

@media (max-width: 768px) {
  .timeline::after {
    left: 31px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  
  .timeline-item.right, .timeline-item.left {
    left: 0;
    text-align: left;
  }
  
  .timeline-item.left::after, .timeline-item.right::after {
    left: 21px;
  }
}

/* Gift Cards Section */
.gift-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.gift-card-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gift-card-visual {
  background: linear-gradient(135deg, #212529, #343a40);
  color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  aspect-ratio: 1.6/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.gift-card-visual::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  transform: rotate(45deg);
}

.gift-card-item:hover .gift-card-visual {
  transform: translateY(-5px);
}

.gift-card-visual .amount {
  font-size: 3rem;
  font-weight: 700;
  z-index: 1;
}

.gift-card-visual .logo-small {
  margin-top: 0.5rem;
  font-size: 1rem;
  opacity: 0.8;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gift-card-item .btn {
  width: 100%;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #212529;
  color: #fff;
  padding: 1rem 0;
  z-index: 9999;
  display: none;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}

/* Loyalty Section */
.loyalty-wrapper {
  display: flex;
  align-items: center;
  gap: 4rem;
  background-color: #f8f9fa;
  padding: 3rem;
  border-radius: 1rem;
}

.loyalty-info {
  flex: 1;
}

.loyalty-info h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.loyalty-benefits {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.loyalty-benefits li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.loyalty-benefits i {
  color: var(--color-primary);
}

.loyalty-tiers {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tier-card {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border-left: 5px solid var(--color-primary);
}

.tier-card .points {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text);
}

.tier-card .reward {
  color: #6c757d;
}

@media (max-width: 768px) {
  .loyalty-wrapper {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }
  
  .loyalty-tiers {
    width: 100%;
  }
}

/* Nutrition Calculator */
.nutrition-ingredients {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.nutrition-ingredients label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.nutrition-total {
  border-top: 1px solid #e9ecef;
  padding-top: 1rem;
  text-align: center;
  color: var(--color-primary);
}

/* Press Section */
.press-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.press-logos img {
  max-width: 150px;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.press-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Sustainability Section */
.sustainability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
}

.sustainability-item {
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 0.5rem;
  transition: transform 0.3s ease;
}

.sustainability-item:hover {
  transform: translateY(-5px);
}

.sustainability-item i {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.sustainability-item h3 {
  margin-bottom: 0.5rem;
}

.sustainability-item p {
  color: #6c757d;
}

/* Events Section */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.event-card {
  display: flex;
  gap: 1.5rem;
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  padding: 1.5rem;
  align-items: flex-start;
  transition: box-shadow 0.3s ease;
}

.event-card:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.event-date {
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 80px;
  border: 1px solid #e9ecef;
}

.event-date .day {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.event-date .month {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6c757d;
  margin-top: 0.25rem;
}

.event-details h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.event-time {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline-primary {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  text-decoration: none;
  border-radius: 0.25rem;
  font-weight: 500;
  transition: all 0.2s;
  margin-top: 0.5rem;
  background-color: transparent;
  cursor: pointer;
}

.btn-outline-primary:hover {
  background-color: var(--color-primary);
  color: #fff;
}

/* Reviews Page Styles */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.review-card {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.review-header h3 {
  margin: 0;
  font-size: 1.1rem;
}

.review-stars {
  color: #ffc107;
}

.review-date {
  display: block;
  font-size: 0.85rem;
  color: #6c757d;
  margin-top: 1rem;
}

.review-form-section {
  max-width: 600px;
  margin: 0 auto;
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 0.5rem;
}

.review-form select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
  font-size: 1rem;
  background-color: #fff;
}

.catering-form-section {
  max-width: 800px;
  margin: 0 auto;
  background-color: #f8f9fa;
  padding: 3rem;
  border-radius: 0.5rem;
  border: 1px solid #e9ecef;
}

/* Merchandise Section */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.merch-item {
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.merch-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.merch-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.merch-details {
  padding: 1.5rem;
  text-align: center;
}

.merch-details h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.merch-details p {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Cart Modal Styles */
.cart-items {
  margin: 1.5rem 0;
  max-height: 300px;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 1rem;
}

.cart-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 0.25rem;
}

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

.cart-item-details h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
}

.cart-item-price {
  color: var(--color-primary);
  font-weight: 500;
}

.remove-btn {
  background: none;
  border: none;
  color: #dc3545;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0 0.5rem;
}

.cart-footer {
  border-top: 1px solid #e9ecef;
  padding-top: 1rem;
  text-align: right;
}

.cart-footer h3 {
  margin-bottom: 1rem;
}

/* FAQ Page Styles */
.faq-category {
  margin-bottom: 3rem;
}

.faq-category h3 {
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
  padding-bottom: 0.5rem;
}

/* Ingredients Page */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.ingredient-card {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  overflow: hidden;
}

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

.ingredient-content {
  padding: 1.5rem;
}

.ingredient-content h3 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

/* Locations Page */
.locations-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.locations-list {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location-card {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.location-card h3 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.location-card p {
  margin-bottom: 0.5rem;
  color: #6c757d;
}

.locations-map {
  flex: 1;
  min-width: 300px;
  height: 500px;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

/* Feedback Button */
.feedback-btn {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background-color: var(--color-primary);
  color: #fff;
  border: none;
  padding: 1rem 0.5rem;
  border-radius: 0.5rem 0 0 0.5rem;
  cursor: pointer;
  z-index: 999;
  font-weight: 500;
  box-shadow: -2px 0 5px rgba(0,0,0,0.1);
  letter-spacing: 1px;
}

.feedback-btn:hover {
  background-color: #0a58ca;
}

.rating-options {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.rating-options label {
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Balance Checker */
.balance-result {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #e9ecef;
  margin-top: 1.5rem;
  text-align: center;
}

.balance-result h3 {
  color: var(--color-primary);
  font-size: 2rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}

/* Recipe of the Month */
.recipe-month {
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.recipe-content {
  flex: 1;
  padding: 2rem;
}

.recipe-image {
  flex: 1;
}

.recipe-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

.badge {
  display: inline-block;
  background-color: var(--color-primary);
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

/* Virtual Tour Section */
.tour-container {
  position: relative;
  width: 100%;
  height: 500px;
  background-color: #343a40;
  border-radius: 0.5rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-image: url('https://images.unsplash.com/photo-1559339352-11d035aa65de?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
}

.tour-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.tour-container.tour-active::before {
  display: none;
}

.tour-placeholder {
  position: relative;
  z-index: 1;
  text-align: center;
}

.tour-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
}

.tour-placeholder p {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Coming Soon Page */
.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.coming-soon-item {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.coming-soon-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: brightness(0.7);
  transition: filter 0.3s ease;
}

.coming-soon-item:hover img {
  filter: brightness(0.9);
}

.coming-soon-details {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff;
}

.coming-soon-details h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.coming-soon-date {
  display: inline-block;
  background-color: var(--color-primary);
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* Blog Tags */
.blog-tags {
  margin-top: 1rem;
}

.blog-tag {
  display: inline-block;
  background-color: #e9ecef;
  color: #495057;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  margin-right: 0.5rem;
  text-decoration: none;
}

/* Search Bar */
.search-bar form {
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 2rem;
  padding: 0.25rem 0.75rem;
}

.search-bar input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.9rem;
  width: 150px;
  color: var(--color-text);
}

.search-bar button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-primary);
  padding: 0;
  margin-left: 0.5rem;
}

@media (max-width: 768px) {
  .search-bar {
    margin-top: 1rem;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .search-bar form {
      width: 80%;
  }
  .search-bar input {
      width: 100%;
  }
}

.login-options {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* Profile Page */
.profile-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid #e9ecef;
}

.profile-avatar i {
  font-size: 5rem;
  color: var(--color-primary);
}

.profile-info h1 {
  margin-bottom: 0.5rem;
}

.profile-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.profile-section {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.profile-section h2 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 0.5rem;
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #e9ecef;
}

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

.order-details h4 {
  margin: 0 0 0.25rem 0;
}

.order-details p {
  margin: 0;
  font-size: 0.9rem;
  color: #6c757d;
}

.order-price {
  font-weight: 700;
  color: var(--color-primary);
}

.order-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.order-filters .form-group {
  margin-bottom: 0;
}

.order-filters select {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 0.25rem;
  font-family: inherit;
  font-size: 0.9rem;
}

.order-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.order-actions .btn {
  margin-top: 0;
}

.account-details p {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .profile-header {
    flex-direction: column;
    text-align: center;
  }
  .profile-grid {
    grid-template-columns: 1fr;
  }
}

.profile-section.full-width {
  grid-column: 1 / -1;
}

.favorites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.favorite-item {
  position: relative;
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
  transition: transform 0.2s;
}

.favorite-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.favorite-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
}

.favorite-item h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
}

.favorite-item p {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 1rem;
}

.favorite-item .btn {
  width: 100%;
}

/* Tracking Timeline */
.tracking-timeline {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

.tracking-step {
  position: relative;
  padding-left: 30px;
  padding-bottom: 2rem;
}

.tracking-step:last-child {
  padding-bottom: 0;
}

.tracking-step::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 5px;
  width: 2px;
  height: 100%;
  background-color: #e9ecef;
}

.tracking-step:last-child::before {
  display: none;
}

.tracking-dot {
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #e9ecef;
  border: 3px solid var(--color-bg);
}

.tracking-step.completed .tracking-dot {
  background-color: var(--color-primary);
}

.tracking-step.active .tracking-dot {
  background-color: var(--color-primary);
  transform: scale(1.2);
}

.tracking-step.completed::before {
  background-color: var(--color-primary);
}

.tracking-info h4 {
  margin: 0;
}

.tracking-info p {
  margin: 0;
  font-size: 0.9rem;
  color: #6c757d;
}

/* Notification Settings */
.settings-list {
  display: flex;
  flex-direction: column;
}

.setting-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #e9ecef;
}

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

.setting-info h4 {
  margin: 0 0 0.25rem 0;
}

.setting-info p {
  margin: 0;
  font-size: 0.9rem;
  color: #6c757d;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  flex-shrink: 0;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
}

input:checked + .slider {
  background-color: var(--color-primary);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--color-primary);
}

input:checked + .slider:before {
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Login History */
.login-history-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.login-history-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 0.25rem;
}

.login-history-item i {
  font-size: 1.5rem;
  color: #6c757d;
  width: 30px;
  text-align: center;
}

.login-details {
  flex: 1;
}

.login-details h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

.login-details p {
  margin: 0;
  font-size: 0.9rem;
  color: #6c757d;
}

.login-date {
  font-size: 0.9rem;
  color: #6c757d;
  white-space: nowrap;
}

/* Saved Addresses */
.address-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.address-card {
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  padding: 1.5rem;
  position: relative;
  background-color: #fff;
}

.address-card h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.address-card p {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.address-actions {
  display: flex;
  gap: 0.5rem;
}

.address-card.add-new-address {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed #e9ecef;
  cursor: pointer;
  transition: border-color 0.2s;
  color: #6c757d;
}

.address-card.add-new-address:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.address-card.add-new-address i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.address-card.add-new-address p {
  margin-bottom: 0;
  font-weight: 500;
}

/* Quick View Modal */
.quick-view-modal-content {
  max-width: 800px;
}

.quick-view-body {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.quick-view-body img {
  width: 50%;
  border-radius: 0.5rem;
  object-fit: cover;
  height: auto;
  max-height: 400px;
}

.qv-details {
  width: 50%;
}

.qv-details h2 {
  margin-top: 0;
  color: var(--color-primary);
}

.qv-details .price {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.qv-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.qv-actions .btn {
  margin-top: 0;
}

/* Quick View Tabs */
.qv-tabs {
  display: flex;
  border-bottom: 1px solid #e9ecef;
  margin-bottom: 1rem;
}

.qv-tab-btn {
  background: none;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-weight: 500;
  color: #6c757d;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  font-family: var(--font-body);
  font-size: 1rem;
}

.qv-tab-btn:hover {
  color: var(--color-primary);
}

.qv-tab-btn.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.nutrition-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.nutrition-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9ecef;
}

.nutrition-list li:last-child {
  border-bottom: none;
}

/* Quick View Reviews */
.qv-reviews {
  max-height: 200px;
  overflow-y: auto;
  margin-bottom: 1rem;
}

.qv-review-item {
  border-bottom: 1px solid #e9ecef;
  padding: 0.75rem 0;
}

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

.qv-review-item p {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  font-style: italic;
}

.qv-review-item .review-stars {
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}

.review-author {
  font-size: 0.8rem;
  color: #6c757d;
  font-weight: 500;
}

@media (max-width: 768px) {
  .quick-view-body {
    flex-direction: column;
  }
  .quick-view-body img, .qv-details {
    width: 100%;
  }
}

/* Related Items in Quick View */
.related-items {
  margin-top: 2rem;
  border-top: 1px solid #e9ecef;
  padding-top: 1.5rem;
}

.related-items h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.related-item {
  text-align: center;
  cursor: pointer;
}

.related-item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
  transition: transform 0.2s;
}

.related-item:hover img {
  transform: scale(1.05);
}

.related-item h5 {
  margin: 0 0 0.25rem 0;
  font-size: 0.95rem;
}

.related-item .price {
  font-size: 0.9rem;
  color: var(--color-primary);
  margin-top: 0;
}

.toppings-section {
  display: none;
  margin-bottom: 1rem;
  border-top: 1px solid #e9ecef;
  padding-top: 1rem;
}

.toppings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.5rem;
}

.toppings-grid label {
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-sm.btn-outline-primary {
  padding: 0.25rem 0.5rem;
}

/* Payment Methods */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.payment-card {
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  padding: 1.5rem;
  background-color: #fff;
}

.payment-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.payment-header i {
  font-size: 2rem;
  color: #212529;
}

.payment-header h4 {
  margin: 0;
  font-size: 1.1rem;
}

.payment-card p {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 1rem;
}

.payment-actions {
  display: flex;
  gap: 0.5rem;
}

.payment-card.add-new-payment {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed #e9ecef;
  cursor: pointer;
  transition: border-color 0.2s;
  color: #6c757d;
  min-height: 160px;
}

.payment-card.add-new-payment:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.payment-card.add-new-payment i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: inherit;
}

.payment-card.add-new-payment p {
  margin-bottom: 0;
  font-weight: 500;
}

/* Menu Controls (Filters + Sort) */
.menu-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Menu Filters */
.menu-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.menu-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.menu-actions .btn {
  margin-top: 0;
}

.menu-search {
  position: relative;
}

.menu-search input {
  padding: 0.5rem 1rem 0.5rem 2rem;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  width: 200px;
}

.menu-search i {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  pointer-events: none;
}

.filter-btn {
  background: none;
  border: 2px solid #e9ecef;
  border-radius: 2rem;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  font-weight: 500;
  color: var(--color-text);
  transition: all 0.3s ease;
  font-family: var(--font-body);
  font-size: 1rem;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.sort-dropdown {
  padding: 0.5rem 1rem;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
}

.clear-filters-btn {
  background: none;
  border: none;
  color: #6c757d;
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.9rem;
}

.price-filter-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 220px;
}

.price-filter-container label {
  font-size: 0.9rem;
  color: #6c757d;
  font-weight: 500;
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: #e9ecef;
  outline: none;
  border-radius: 4px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--color-primary);
  cursor: pointer;
  border-radius: 50%;
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--color-primary);
  cursor: pointer;
  border-radius: 50%;
  border: none;
}

.clear-filters-btn:hover {
  color: var(--color-text);
}

.hidden-item {
  display: none;
}

.load-more-container {
  text-align: center;
  margin-top: 2rem;
}