:root {
  --primary-color: #e63946;
  --secondary-color: #f4a261;
  --background-color: #fffdf7;
  --text-color: #2b2d42;
  --font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --hero-bg: #ffe5d9;
  --card-bg: #ffffff;
  --border-color: #eee;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-color);
  background-color: var(--background-color);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  padding-top: 40px;
}

body.dark-mode {
  --background-color: #121212;
  --text-color: #e0e0e0;
  --hero-bg: #1f1f1f;
  --card-bg: #1e1e1e;
  --border-color: #333;
}

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

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

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

a:hover {
  text-decoration: underline;
}

img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Layout & Components */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

header {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: sticky;
  top: 40px;
  background-color: var(--background-color);
  z-index: 100;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

.theme-toggle {
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 1.2rem;
  cursor: pointer;
  margin-left: 0;
  margin-right: 1rem;
}

#lang-toggle {
  font-weight: bold;
  font-size: 1rem;
  width: 2rem;
}

.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-color);
}

.navbar a {
  margin-left: 1.5rem;
  font-weight: 500;
  color: var(--text-color);
}

.navbar a:hover,
.navbar a.active {
  color: var(--primary-color);
  text-decoration: none;
}

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

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

  .navbar a {
    display: block;
    margin: 1rem 0;
  }

  #menu-toggle:checked ~ .navbar {
    display: flex;
  }
}

.hero {
  text-align: center;
  padding: 4rem 1rem;
  background-color: var(--hero-bg);
  border-radius: 1rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 6s linear;
  transform: scale(1);
}

.slide.active {
  opacity: 1;
  transform: scale(1.1);
}

.slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

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

.carousel-prev:hover,
.carousel-next:hover {
  background: rgba(0, 0, 0, 0.7);
}

.carousel-prev { left: 1rem; }
.carousel-next { right: 1rem; }

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 1rem;
  transition: background-color 0.2s;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}

.btn:hover {
  background-color: #b01825;
  text-decoration: none;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.card {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.2s;
}

.card strong {
  display: block;
  font-size: 1.25rem;
  margin-top: 0.5rem;
}

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

.footer {
  text-align: center;
  padding: 3rem 0;
  margin-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--secondary-color);
}

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

.social-links a {
  margin: 0 0.5rem;
  color: var(--secondary-color);
  font-size: 1.5rem;
  transition: color 0.2s;
}

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

#back-to-top {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: var(--primary-color);
  color: white;
  cursor: pointer;
  padding: 1rem;
  border-radius: 50%;
  font-size: 1.2rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  transition: background-color 0.3s;
}

#back-to-top:hover {
  background-color: #b01825;
}

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

.modal-content {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  position: relative;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  animation: fadeIn 0.3s ease-out;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-color);
}

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

/* Testimonials */
#testimonials {
  text-align: center;
  padding: 4rem 1rem;
  background-color: var(--hero-bg);
  border-radius: 1rem;
  margin-bottom: 3rem;
}

.testimonial-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 3rem;
}

.testimonial-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 0.5s ease-out;
}

.testimonial-slide.active {
  display: flex;
}

.testimonial-slide p {
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-slide .author {
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.testimonial-prev,
.testimonial-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 10;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  color: var(--primary-color);
}

.testimonial-prev { left: 0; }
.testimonial-next { right: 0; }

/* Build Your Own Section */
#build-your-own {
  text-align: center;
  padding: 2rem 0;
}

.pizza-builder-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.toppings-palette {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  min-width: 200px;
}

.draggable-topping {
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  background: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: grab;
  text-align: center;
  transition: transform 0.2s;
}

.draggable-topping:active {
  cursor: grabbing;
}

.draggable-topping:hover {
  border-color: var(--primary-color);
  transform: scale(1.02);
}

.pizza-visual-area {
  width: 300px;
  height: 300px;
  background-color: #f8d5a3; /* Dough color */
  border-radius: 50%;
  position: relative;
  border: 8px solid #e6a15c; /* Crust color */
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  overflow: hidden;
}

.pizza-visual-area::before {
  content: '';
  position: absolute;
  top: 10px; left: 10px; right: 10px; bottom: 10px;
  background-color: #d32f2f; /* Sauce */
  border-radius: 50%;
}

.pizza-visual-area::after {
  content: '';
  position: absolute;
  top: 20px; left: 20px; right: 20px; bottom: 20px;
  background-color: #fff9c4; /* Cheese */
  border-radius: 50%;
}

.dropped-topping {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
}

.topping-pepperoni { background-color: #b71c1c; }
.topping-mushrooms { background-color: #8d6e63; }
.topping-onions { background-color: #f48fb1; }
.topping-sausage { background-color: #5d4037; }
.topping-bacon { background-color: #d84315; }
.topping-peppers { background-color: #43a047; }
.topping-olives { background-color: #212121; }
.topping-basil { background-color: #66bb6a; }

.builder-controls {
  text-align: center;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Chef's Special Section */
#chefs-special {
  padding: 4rem 1rem;
  background-color: var(--hero-bg);
  border-radius: 1rem;
  margin-bottom: 3rem;
  text-align: center;
}

.special-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  text-align: left;
}

.special-content img {
  max-width: 100%;
  width: 500px;
  border-radius: 1rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.special-details {
  max-width: 500px;
}

.special-details h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.special-details .price {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-color);
  margin: 1rem 0;
}

/* Countdown Timer */
.countdown-timer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
}

.time-unit {
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-align: center;
  min-width: 70px;
}

.time-unit span {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}

.time-unit small {
  font-size: 0.75rem;
  text-transform: uppercase;
}

/* Reservation Section */
#reservation {
  padding: 4rem 1rem;
  text-align: center;
}

.reservation-form {
  max-width: 700px;
  margin: 2rem auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  text-align: left;
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

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

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

.form-group input {
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--background-color);
  color: var(--text-color);
  font-family: inherit;
}

.btn-block {
  grid-column: 1 / -1;
  width: 100%;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
}

@media (max-width: 600px) {
  .reservation-form {
    grid-template-columns: 1fr;
  }
}

/* Contact Section */
#contact {
  padding: 4rem 1rem;
  text-align: center;
  background-color: var(--hero-bg);
  border-radius: 1rem;
  margin-bottom: 3rem;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  text-align: left;
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.form-group textarea {
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--background-color);
  color: var(--text-color);
  font-family: inherit;
  resize: vertical;
  width: 100%;
}

.error-text {
  color: var(--primary-color);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
}

.form-group.error .error-text {
  display: block;
}

.form-group.error input,
.form-group.error textarea {
  border-color: var(--primary-color);
}

/* Cart Styles */
.cart-btn {
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 1.2rem;
  cursor: pointer;
  margin-left: auto;
  margin-right: 1rem;
  position: relative;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--primary-color);
  color: white;
  font-size: 0.75rem;
  padding: 0.1rem 0.4rem;
  border-radius: 50%;
  font-weight: bold;
}

.cart-modal-content {
  text-align: left;
  max-width: 600px;
}

.cart-items {
  max-height: 400px;
  overflow-y: auto;
  margin: 1.5rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

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

.cart-item-remove {
  color: var(--primary-color);
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1rem;
}

/* Toast Notifications */
#toast-container {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background-color: #333;
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideUpFade 0.3s ease-out forwards;
  min-width: 300px;
  justify-content: center;
}

.toast.success { background-color: #4caf50; }
.toast.error { background-color: #f44336; }
.toast.info { background-color: #2196f3; }

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

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

/* Quick View Modal */
.quick-view-content {
  max-width: 800px;
  width: 90%;
  padding: 0;
  overflow: hidden;
}

.quick-view-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.quick-view-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 350px;
}

.quick-view-details {
  padding: 2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quick-view-details h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .quick-view-grid {
    grid-template-columns: 1fr;
  }
  .quick-view-image {
    height: 250px;
  }
}

/* Favorites */
.favorite-btn.active {
  color: var(--primary-color) !important;
}

/* Rating System */
.rating-container {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 0.5rem 0;
}

.rating-star {
  color: #ddd;
  cursor: pointer;
  font-size: 1rem;
  transition: color 0.2s;
}

.rating-star.active {
  color: #ffc107;
}

/* Related Items in Quick View */
.related-items-section {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
  text-align: left;
}

.related-items-section h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--text-color);
}

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

.related-card {
  background: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.5rem;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
  text-align: center;
}

.related-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-color);
}

.related-card img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.related-card h4 {
  font-size: 0.9rem;
  margin: 0.25rem 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.related-card span {
  font-size: 0.85rem;
  font-weight: bold;
  color: var(--primary-color);
}

.share-btn {
  background-color: #4a90e2;
  margin-left: 0.5rem;
}
.share-btn:hover {
  background-color: #357abd;
}

/* Track Order Modal */
.track-order-steps {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0;
  position: relative;
}

.track-order-steps::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--border-color);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  background: var(--card-bg);
  padding: 0 10px;
}

.step-icon {
  width: 30px;
  height: 30px;
  background: var(--border-color);
  color: var(--text-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  font-size: 0.8rem;
  transition: background 0.3s, color 0.3s;
}

.step.active .step-icon {
  background: var(--primary-color);
  color: white;
}

.step.completed .step-icon {
  background: #4caf50;
  color: white;
}

.step p {
  font-size: 0.8rem;
  margin: 0;
}

/* Profile Page */
.profile-header {
  text-align: center;
  padding: 3rem 1rem;
  background-color: var(--hero-bg);
  border-radius: 1rem;
  margin-bottom: 3rem;
}

.profile-info {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.order-history-container {
  max-width: 800px;
  margin: 0 auto;
}

.order-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.2s;
}

.order-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.order-id {
  font-weight: bold;
  color: var(--primary-color);
}

.order-date {
  color: #666;
  font-size: 0.9rem;
}

.order-total {
  font-size: 1.2rem;
  font-weight: bold;
}

.order-items-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.order-items-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.order-status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: bold;
  background-color: #e0f2f1;
  color: #00695c;
}

/* Loyalty Points */
.loyalty-dashboard {
  background: var(--card-bg);
  border-radius: 1rem;
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border: 1px solid var(--border-color);
}

.loyalty-header {
  text-align: center;
  margin-bottom: 2rem;
}

.loyalty-points-large {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-color);
  display: block;
}

.loyalty-progress-container {
  background-color: #eee;
  border-radius: 50px;
  height: 20px;
  width: 100%;
  max-width: 400px;
  margin: 1rem auto;
  overflow: hidden;
}

.loyalty-progress-bar {
  background-color: #4caf50; /* Green for progress */
  height: 100%;
  width: 0%;
  transition: width 0.5s ease;
}

.rewards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.reward-card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  background: var(--background-color);
  transition: transform 0.2s;
}

.reward-card.locked {
  opacity: 0.6;
  filter: grayscale(1);
}

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

.reward-cost {
  font-weight: bold;
  display: block;
  margin-bottom: 0.5rem;
}

.activity-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.activity-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

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

.activity-points.earned { color: #4caf50; }
.activity-points.spent { color: #f44336; }
}

/* Address Book */
.address-item {
  background: var(--background-color);
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.address-item span {
  font-size: 0.9rem;
  word-break: break-word;
  margin-right: 1rem;
}

.delete-address-btn {
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0.25rem;
}

/* About Us Page */
.about-hero {
  text-align: center;
  padding: 4rem 1rem;
  background-color: var(--hero-bg);
  border-radius: 1rem;
  margin-bottom: 3rem;
}

.story-section {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
  line-height: 1.8;
}

.team-section {
  text-align: center;
  margin-bottom: 4rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  background: var(--card-bg);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 1rem 1rem 0 0;
}

.team-info {
  padding: 1.5rem;
}

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

.team-info .role {
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 1rem;
  display: block;
}

/* Careers Page */
.careers-hero {
  text-align: center;
  padding: 4rem 1rem;
  background-color: var(--hero-bg);
  border-radius: 1rem;
  margin-bottom: 3rem;
}

.job-listings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.job-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border: 1px solid var(--border-color);
  transition: transform 0.2s;
}

.job-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

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

.job-type {
  display: inline-block;
  background-color: #e0f2f1;
  color: #00695c;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.application-section {
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* Gift Cards Page */
.gift-card-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .gift-card-container {
    grid-template-columns: 1fr;
  }
}

.gift-card-preview {
  background: linear-gradient(135deg, var(--primary-color), #ff7e5f);
  border-radius: 1rem;
  padding: 2rem;
  color: white;
  aspect-ratio: 1.6/1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  position: sticky;
  top: 100px;
}

.gift-card-preview .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.gift-card-preview .amount {
  font-size: 3rem;
  font-weight: bold;
  text-align: right;
}

.amount-options {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.amount-btn {
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border-color);
  background: var(--card-bg);
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.2s;
  color: var(--text-color);
}

.amount-btn.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Catering Page */
.catering-hero {
  text-align: center;
  padding: 4rem 1rem;
  background-color: var(--hero-bg);
  border-radius: 1rem;
  margin-bottom: 3rem;
}

.catering-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  text-align: center;
}

.catering-service-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border: 1px solid var(--border-color);
  transition: transform 0.2s;
}

.catering-service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.catering-service-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Reviews Page */
.reviews-hero {
  text-align: center;
  padding: 4rem 1rem;
  background-color: var(--hero-bg);
  border-radius: 1rem;
  margin-bottom: 3rem;
}

.reviews-container {
  max-width: 800px;
  margin: 0 auto 4rem;
}

.review-form-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  margin-bottom: 3rem;
  border: 1px solid var(--border-color);
}

.review-stars-input {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #ddd;
  cursor: pointer;
}

.review-stars-input i.active {
  color: #ffc107;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.review-item {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
}

.review-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.review-author {
  font-weight: bold;
  color: var(--primary-color);
}

.review-date {
  font-size: 0.85rem;
  color: #666;
}

.review-rating {
  color: #ffc107;
  margin-bottom: 0.5rem;
}

.review-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.review-filter-container {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.review-filter-btn {
  background-color: var(--card-bg);
  color: var(--text-color);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
  margin-top: 0;
  font-size: 0.9rem;
}

.review-filter-btn.active {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.review-sort-container select {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  background-color: var(--card-bg);
  color: var(--text-color);
  font-family: inherit;
}

/* Profile Avatar */
.profile-avatar-container {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
}

.profile-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--card-bg);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  background-color: #ddd;
}

.avatar-upload-btn {
  position: absolute;
  bottom: 5px;
  right: 5px;
  background-color: var(--primary-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.avatar-upload-btn:hover {
  background-color: #b01825;
}

/* Cookie Consent Banner */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: white;
  padding: 1rem;
  text-align: center;
  z-index: 2001;
  display: none;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.cookie-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.2s;
}

.cookie-btn:hover {
  background-color: #b01825;
}

/* Live Chat Widget */
#chat-toggle-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 2000;
  transition: transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#chat-toggle-btn:hover {
  transform: scale(1.1);
}

#chat-widget {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 300px;
  height: 400px;
  background-color: var(--card-bg);
  border-radius: 1rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  z-index: 2001;
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

#chat-header {
  background-color: var(--primary-color);
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

#close-chat {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

#chat-messages {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.message {
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  max-width: 80%;
  font-size: 0.9rem;
}

.message.bot {
  background-color: #f1f1f1;
  color: #333;
  align-self: flex-start;
  border-bottom-left-radius: 0;
}

.message.user {
  background-color: var(--primary-color);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 0;
}

#chat-input-area {
  padding: 0.5rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 0.5rem;
}

#chat-input {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  outline: none;
  background: var(--background-color);
  color: var(--text-color);
}

#send-chat-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FAQ Page */
.faq-hero {
  text-align: center;
  padding: 4rem 1rem;
  background-color: var(--hero-bg);
  border-radius: 1rem;
  margin-bottom: 3rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto 4rem;
}

.accordion-item {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-header {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  background-color: var(--card-bg);
  transition: background-color 0.2s;
}

.accordion-header:hover {
  background-color: rgba(0,0,0,0.02);
}

.accordion-header.active {
  background-color: rgba(0,0,0,0.05);
  color: var(--primary-color);
}

.accordion-icon {
  transition: transform 0.3s;
}

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

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: var(--card-bg);
}

.accordion-body {
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
  line-height: 1.6;
}

/* Nutrition Modal */
.nutrition-btn {
  background-color: #4caf50;
  color: white;
  margin-left: 0.5rem;
}

.nutrition-btn:hover {
  background-color: #388e3c;
}

.nutrition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
  text-align: center;
}

.nutrition-item {
  background: var(--background-color);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.nutrition-item strong {
  display: block;
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.nutrition-item span {
  font-size: 0.9rem;
  color: var(--text-color);
}

/* Gallery Page */
.gallery-hero {
  text-align: center;
  padding: 4rem 1rem;
  background-color: var(--hero-bg);
  border-radius: 1rem;
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  cursor: pointer;
  aspect-ratio: 1/1;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-overlay i {
  color: white;
  font-size: 2rem;
}

/* Blog Page */
.blog-hero {
  text-align: center;
  padding: 4rem 1rem;
  background-color: var(--hero-bg);
  border-radius: 1rem;
  margin-bottom: 3rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.blog-card {
  background: var(--card-bg);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border: 1px solid var(--border-color);
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

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

.blog-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-date {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.blog-title {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.blog-excerpt {
  font-size: 0.95rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  flex: 1;
  line-height: 1.6;
}

.read-more-link {
  color: var(--primary-color);
  font-weight: bold;
  align-self: flex-start;
}

.contact-hero {
  text-align: center;
  padding: 4rem 1rem;
  background-color: var(--hero-bg);
  border-radius: 1rem;
  margin-bottom: 3rem;
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto 4rem;
  line-height: 1.8;
}

.privacy-content h2 {
  color: var(--primary-color);
  margin-top: 2rem;
}

/* Terms of Service Page */
.terms-content {
  max-width: 800px;
  margin: 0 auto 4rem;
  line-height: 1.8;
}

.terms-content h2 {
  color: var(--primary-color);
  margin-top: 2rem;
}

/* Sitemap Page */
.sitemap-hero {
  text-align: center;
  padding: 4rem 1rem;
  background-color: var(--hero-bg);
  border-radius: 1rem;
  margin-bottom: 3rem;
}

.sitemap-container {
  max-width: 800px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.sitemap-section h3 {
  color: var(--primary-color);
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-list li {
  margin-bottom: 0.5rem;
}

.sitemap-list a {
  color: var(--text-color);
  transition: color 0.2s;
}

.sitemap-list a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

/* 404 Page */
.error-page {
  text-align: center;
  padding: 6rem 1rem;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.error-page h1 {
  font-size: 8rem;
  color: var(--primary-color);
  margin-bottom: 0;
  line-height: 1;
  text-shadow: 4px 4px 0px rgba(0,0,0,0.1);
}

.error-page h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.error-page p {
  color: var(--text-color);
  margin-bottom: 2.5rem;
  max-width: 500px;
  font-size: 1.1rem;
}

/* Referral Section */
.referral-box {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border: 1px solid var(--border-color);
  text-align: center;
}

.referral-input-group {
  display: flex;
  gap: 0.5rem;
  max-width: 500px;
  margin: 1.5rem auto;
}

.referral-input-group input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--background-color);
  color: var(--text-color);
  font-family: inherit;
}

/* Newsletter Archive Page */
.newsletter-hero {
  text-align: center;
  padding: 4rem 1rem;
  background-color: var(--hero-bg);
  border-radius: 1rem;
  margin-bottom: 3rem;
}

.newsletter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.newsletter-card {
  background: var(--card-bg);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border: 1px solid var(--border-color);
  transition: transform 0.2s;
  display: flex;
  flex-direction: column;
}

.newsletter-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.newsletter-date {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.newsletter-title {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.newsletter-excerpt {
  font-size: 0.95rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  flex: 1;
  line-height: 1.6;
}

/* Recipe Section */
.recipe-section {
  max-width: 1000px;
  margin: 0 auto 4rem;
  background-color: var(--card-bg);
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  overflow: hidden;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .recipe-section {
    flex-direction: row;
  }
}

.recipe-image {
  flex: 1;
  min-height: 300px;
}

.recipe-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

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

.recipe-tag {
  background-color: var(--secondary-color);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 1rem;
}

.recipe-content h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.recipe-lists {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.recipe-lists h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.recipe-lists ul, .recipe-lists ol {
  padding-left: 1.5rem;
  margin: 0;
  font-size: 0.95rem;
}

.recipe-lists li {
  margin-bottom: 0.25rem;
}

/* Blog Filters */
.blog-filter-container {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.blog-filter-btn {
  background-color: var(--card-bg);
  color: var(--text-color);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s;
  font-family: inherit;
}

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

/* Blog Search */
.blog-search-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

#blog-search-input {
  padding: 0.8rem 1.5rem;
  width: 100%;
  max-width: 500px;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
  background-color: var(--card-bg);
  color: var(--text-color);
  font-family: inherit;
}

#blog-search-input:focus {
  border-color: var(--primary-color);
}

/* Blog Comments */
.comment-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

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

.comment-author {
  font-weight: bold;
  color: var(--primary-color);
  font-size: 0.9rem;
}

.comment-date {
  font-size: 0.75rem;
  color: #666;
  margin-left: 0.5rem;
}

.comment-text {
  font-size: 0.95rem;
  margin-top: 0.25rem;
  color: var(--text-color);
}

/* Blog Like Button */
.blog-like-btn {
  background-color: #e91e63;
  color: white;
}
.blog-like-btn:hover {
  background-color: #c2185b;
}

/* Blog Share Button */
.blog-share-btn {
  background-color: #4a90e2;
  color: white;
}
.blog-share-btn:hover {
  background-color: #357abd;
}

/* Spin the Wheel Game */
.spin-wheel-hero {
  text-align: center;
  padding: 4rem 1rem;
  background-color: var(--hero-bg);
  border-radius: 1rem;
  margin-bottom: 3rem;
}

.spin-wheel-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  margin-bottom: 4rem;
  position: relative;
}

#wheel-canvas {
  transition: transform 4s cubic-bezier(0.25, 1, 0.5, 1);
}

.spin-pointer {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 40px solid var(--primary-color);
  transform: translate(-50%, -100%);
  z-index: 10;
  filter: drop-shadow(0px -2px 2px rgba(0,0,0,0.2));
}

.spin-btn {
  margin-top: 2rem;
  padding: 1rem 3rem;
  font-size: 1.5rem;
}

.spin-result {
  margin-top: 2rem;
  text-align: center;
  font-size: 1.2rem;
}

.spin-result h3 {
  color: var(--primary-color);
  font-size: 2rem;
}

.copy-code-btn {
  background-color: var(--secondary-color);
  margin-left: 0.5rem;
}

/* Poll Section */
#poll-section {
  text-align: center;
  padding: 4rem 1rem;
  background-color: var(--card-bg);
  margin-bottom: 3rem;
}

.poll-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  background: var(--background-color);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border: 1px solid var(--border-color);
}

.poll-container h3 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  text-align: center;
}

.poll-option {
  padding: 1rem;
  margin-bottom: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--card-bg);
}

.poll-option:hover {
  border-color: var(--primary-color);
  background-color: rgba(230, 57, 70, 0.05);
}

.poll-result-row {
  margin-bottom: 1rem;
}

.poll-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.poll-bar-container {
  height: 10px;
  background-color: #eee;
  border-radius: 5px;
  overflow: hidden;
}

.poll-bar {
  height: 100%;
  background-color: var(--primary-color);
  width: 0;
  transition: width 1s ease-out;
}

/* Daily Specials Ticker */
.ticker-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: #222;
  overflow: hidden;
  z-index: 1001;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.ticker {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  white-space: nowrap;
  padding-left: 100%;
  box-sizing: content-box;
  animation: ticker 30s linear infinite;
}

.ticker-item {
  display: inline-block;
  padding: 0 2rem;
  color: #fff;
  font-weight: bold;
  font-size: 0.9rem;
}

@keyframes ticker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

/* Admin Reservations */
.admin-table-container {
  overflow-x: auto;
  margin-bottom: 2rem;
  background: var(--card-bg);
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border: 1px solid var(--border-color);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.admin-table th,
.admin-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.admin-table th {
  background-color: rgba(0,0,0,0.02);
  font-weight: bold;
  color: var(--primary-color);
}

.status-badge { padding: 0.25rem 0.75rem; border-radius: 50px; font-size: 0.85rem; font-weight: bold; }
.status-pending { background-color: #fff3cd; color: #856404; }
.status-confirmed { background-color: #d4edda; color: #155724; }
.status-cancelled { background-color: #f8d7da; color: #721c24; }
.action-btn { padding: 0.4rem 0.6rem; border: none; border-radius: 4px; cursor: pointer; font-size: 0.9rem; margin-right: 0.25rem; color: white; transition: opacity 0.2s; }
.action-btn:hover { opacity: 0.9; }
.btn-confirm { background-color: #28a745; }
.btn-cancel { background-color: #ffc107; color: #333; }
.btn-delete { background-color: #dc3545; }
}