/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.5;
  color: #1a1a1a;
  background-color: #f5f5f5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* CSS Variables */
:root {
  --primary: #d97706;
  --primary-dark: #92400e;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Navbar */
.navbar {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.nav-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  max-width: 50px;
}

.logo h1 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.btn-book.navBtn {
  background: white;
  color: var(--gray-900);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-book.navBtn:hover {
  background: var(--gray-100);
  transform: translateY(-1px);
}

.user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-info.hidden {
  display: none;
}

.user-name {
  font-weight: 500;
  color: white;
}

.user-type {
  color: #fcd34d;
  font-size: 0.875rem;
}

.logout-btn {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 9999px;
  transition: background-color 0.2s;
}

.logout-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.logout-btn img {
  width: 24px;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.mobile-menu-btn:hover {
  transform: scale(1.1);
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: white;
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 1px;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Menu Page */
.page {
  display: none;
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.page.active {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  flex: 1;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.menu-header h2 {
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--gray-900);
  text-align: center;
  width: 100%;
}

.menu-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.search-container {
  display: flex;
  align-items: center;
  background: white;
  border: 1px solid var(--gray-300);
  border-radius: 0.375rem;
  padding: 0.5rem;
  gap: 0.5rem;
  flex: 1;
  max-width: 500px;
}

.search-container img {
  width: 20px;
  height: 20px;
}

.search-container input {
  border: none;
  outline: none;
  font-size: 0.875rem;
  flex: 1;
  padding: 0.5rem;
}

.search-container select {
  border: none;
  outline: none;
  font-size: 0.875rem;
  background: var(--gray-100);
  padding: 0.5rem;
  border-radius: 0.375rem;
  cursor: pointer;
}

.search-container select:focus {
  outline: none;
  border: 1px solid var(--primary);
}

.cart-button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background-color 0.2s, transform 0.2s;
}

.cart-button:hover {
  background: var(--primary-dark);
  transform: scale(1.05);
}

.cart-button img {
  width: 24px;
}

#cart-count {
  background: var(--gray-900);
  color: white;
  border-radius: 50%;
  padding: 0.2rem 0.5rem;
  font-size: 0.8rem;
}

/* Sticky Cart Icon Styles */
.sticky-cart-icon {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--primary);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 1000;
  transition: background-color 0.2s, transform 0.2s;
}

.sticky-cart-icon:hover {
  background-color: var(--primary-dark);
  transform: scale(1.1);
}

.sticky-cart-icon .cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--gray-900);
  color: white;
  border-radius: 50%;
  padding: 0.25rem 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.sticky-cart-icon i {
  font-size: 1.6rem;
}

/* Hot Items Section */
.hot-items-section {
  margin-bottom: 3rem;
}

.hot-items-container {
  position: relative;
  padding: 1rem 0;
}

.hot-items-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem;
}

.hot-items-scroll::-webkit-scrollbar {
  display: none;
}

.hot-item {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.hot-item:hover {
  transform: translateY(-4px);
}

.hot-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.hot-item-content {
  padding: 1rem;
}

.hot-badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.hot-item-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hot-item-content p {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* Menu Sections */
.menu-section {
  margin-bottom: 3rem;
}

.menu-section.hidden {
  display: none;
}

.menu-section h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: var(--gray-900);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.menu-item {
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.menu-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.menu-item-content {
  padding: 1rem;
}

.menu-item-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.menu-item-content p {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.menu-item-content .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Modals */
.modal, .modal1 {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 1000;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease-out;
}

.modal-content {
  background: white;
  border-radius: 0.5rem;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}

.close-btn, .close-button {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-600);
  transition: color 0.2s;
}

.close-btn:hover, .close-button:hover {
  color: var(--gray-900);
}

/* Customer Prompt Modal */
#customer-prompt .modal-content {
  text-align: center;
}

#customer-prompt h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.customer-type-buttons {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
}

.customer-type-btn {
  flex: 1;
  padding: 0.75rem;
  border: 2px solid var(--primary);
  border-radius: 0.375rem;
  background: white;
  color: var(--primary);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.customer-type-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.customer-type-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary-dark);
}

.customer-type-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.3);
}

#customer-form .form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

#customer-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--gray-700);
}




/* Ensure smooth scrolling for hot items */
.hot-items-scroll {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}

/* Prevent image flickering and add fade-in effect */
.hot-item img {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  backface-visibility: hidden;
  transform: translateZ(0); /* Force hardware acceleration */
}

.hot-item img[src] {
  opacity: 1; /* Fade in when loaded */
}

/* Ensure images fit correctly */
.hot-item img {
  width: 100%;
  height: 200px; /* Adjust based on your design */
  object-fit: cover;
}

/* Hide scrollbar for cleaner look */
.hot-items-scroll::-webkit-scrollbar {
  display: none;
}

.hot-items-scroll {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}






#customer-form input,
#customer-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#customer-form input:focus,
#customer-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

#customer-form .error-message {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

#customer-form .submit-btn {
  width: 100%;
  background: var(--primary);
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
}

#customer-form .submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

#customer-form .submit-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.3);
}

/* Cart Modal */
#cart-modal .modal-content {
  padding: 1.5rem;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}

.cart-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
}

#cart-items {
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 1.5rem;
  padding-right: 0.5rem;
}

#cart-items::-webkit-scrollbar {
  width: 6px;
}

#cart-items::-webkit-scrollbar-thumb {
  background: var(--gray-400);
  border-radius: 3px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-200);
  transition: background-color 0.2s;
}

.cart-item:hover {
  background: var(--gray-50);
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.delete-item {
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
  color: #ef4444;
  transition: color 0.2s;
}

.delete-item:hover {
  color: #dc2626;
}

.cart-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.total {
  display: flex;
  gap: 1rem;
  font-weight: 600;
  color: var(--gray-900);
}

.total p {
  font-size: 1.125rem;
}

.submit-order {
  background: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
}

.submit-order:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.submit-order:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.3);
}

/* Form General Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--gray-700);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

/* About Page */
.image-about {
  width: 100%;
  height: 300px;
  background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)), url(images/Picture1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-about h2 {
  color: white;
  font-size: 2.5rem;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.page-content {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.about-image {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-text h2 {
  font-size: 2rem;
  color: var(--gray-900);
  font-weight: 700;
}

.about-text p {
  color: var(--gray-600);
  font-size: 1.125rem;
}

.about-text h3 {
  font-size: 1.5rem;
  color: var(--gray-800);
  margin-top: 1rem;
}

.about-text ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.about-text li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-700);
}

.about-text li::before {
  content: "✓";
  color: var(--primary);
  font-weight: bold;
}

/* Book Page */
.hero {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 2rem;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.125rem;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-footer {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-info {
  font-weight: 500;
  color: var(--gray-700);
}

/* Footer */
.footer {
  background-color: var(--gray-800);
  color: white;
  padding: 3rem 1rem;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section p {
  color: var(--gray-400);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-section ul li a:hover {
  color: var(--primary);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-social a {
  color: var(--gray-400);
  font-size: 1.5rem;
  transition: color 0.2s, transform 0.2s;
}

.footer-social a:hover {
  color: var(--primary);
  transform: scale(1.1);
}

.footer-newsletter {
  display: flex;
  gap: 0.5rem;
}

.footer-newsletter input {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid var(--gray-600);
  border-radius: 0.375rem;
  background: var(--gray-900);
  color: white;
  font-size: 0.875rem;
}

.footer-newsletter input:focus {
  outline: none;
  border-color: var(--primary);
}

.footer-newsletter button {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-700);
}

.footer-bottom p {
  color: var(--gray-400);
  font-size: 0.875rem;
}

.footer-bottom a {
  color: var(--primary);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-weight: 500;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-1px);
}

.error-message {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Animations */
@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(10px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.3s ease forwards;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .mobile-menu-btn {
      display: block;
  }

  .nav-links {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--primary);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      padding: 2rem;
      z-index: 20;
  }

  .nav-links.active {
      display: flex;
  }

  .btn-book.navBtn {
      width: 100%;
      padding: 0.75rem;
      font-size: 1rem;
  }

  .cart-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      padding: 10px 15px;
      border-radius: 50px;
      box-shadow: var(--shadow-md);
      z-index: 1000;
  }

  .menu-header {
      flex-direction: column;
      align-items: stretch;
      margin-top: -30px;
  }

  .menu-actions {
      flex-direction: column;
  }

  .search-container {
      max-width: none;
      flex-direction: column;
      gap: 0.5rem;
  }

  .search-container input,
  .search-container select {
      width: 100%;
  }

  .menu-grid {
      grid-template-columns: 1fr;
      padding: 0 0.5rem;
  }

  .hot-items-scroll {
      padding: 0.5rem;
  }

  .hot-item {
      flex: 0 0 280px;
  }

  .about-grid {
      grid-template-columns: 1fr;
  }

  .image-about {
      margin-top: -34px;
  }

  .customer-type-buttons {
      flex-direction: column;
  }

  .form-row {
      flex-direction: column;
  }

  .sticky-cart-icon {
      width: 50px;
      height: 50px;
      bottom: 20px;
      right: 20px;
  }

  .sticky-cart-icon i {
      font-size: 1.4rem;
  }

  .sticky-cart-icon .cart-count {
      font-size: 0.75rem;
      padding: 0.2rem 0.4rem;
      top: -6px;
      right: -6px;
  }

  .footer-container {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .menu-header {
      margin-top: -50px;
  }

  .nav-content {
      padding: 0.75rem;
  }

  .logo h1 {
      font-size: 1.25rem;
      display: none;
  }

  .logo img {
      display: none;
  }

  .modal-content {
      margin: 0.5rem;
      padding: 1rem;
  }

  .search-container input,
  .search-container select {
      font-size: 0.8rem;
  }

  .hot-item {
      flex: 0 0 250px;
  }

  #customer-prompt h2 {
      font-size: 1.5rem;
  }

  .cart-header h3 {
      font-size: 1.25rem;
  }

  .sticky-cart-icon {
      width: 45px;
      height: 45px;
  }

  .sticky-cart-icon i {
      font-size: 1.2rem;
  }

  .sticky-cart-icon .cart-count {
      font-size: 0.7rem;
      padding: 0.15rem 0.35rem;
  }

  .footer-container {
      grid-template-columns: 1fr;
  }
}

#special-items {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1.5rem;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
#special-items::-webkit-scrollbar {
  display: none;
}
#special-items .menu-item {
  flex: 0 0 320px;
  scroll-snap-align: start;
  min-width: 260px;
  max-width: 360px;
}
@media (max-width: 768px) {
  #special-items .menu-item {
    flex: 0 0 80vw;
    min-width: 220px;
    max-width: 95vw;
  }
}
#special {
  position: relative;
}
.scroll-arrow-left-special {
  position: absolute;
  left: 0.5rem;
  top: 60px;
  z-index: 10;
}
.scroll-arrow-right-special {
  position: absolute;
  right: 0.5rem;
  top: 60px;
  z-index: 10;
}
.scroll-arrow-left-special,
.scroll-arrow-right-special {
  background: linear-gradient(90deg, #ee780a 0%, #d5a912 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.7rem;
  box-shadow: 0 2px 8px rgba(180, 68, 2, 0.13);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.92;
  transition: background 0.2s, color 0.2s, opacity 0.3s;
  outline: none;
  pointer-events: auto;
}
.scroll-arrow-left-special:focus, .scroll-arrow-right-special:focus,
.scroll-arrow-left-special:hover, .scroll-arrow-right-special:hover {
  background: #b44402;
  color: #fff;
  opacity: 1;
}
@media (max-width: 900px) {
  .scroll-arrow-left-special, .scroll-arrow-right-special {
    display: none;
  }
}
.scroll-hint-special {
  position: absolute;
  right: 2.5rem;
  top: 70px;
  display: flex;
  align-items: center;
  background: rgba(255, 247, 240, 0.92);
  border-radius: 2rem;
  box-shadow: 0 2px 8px rgba(180, 68, 2, 0.10);
  padding: 0.4rem 1.1rem 0.4rem 0.9rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  color: #b44402;
  z-index: 20;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.7s cubic-bezier(.22,1,.36,1);
  animation: scrollHintPulse 1.5s infinite alternate;
}
.scroll-hint-special.hide {
  opacity: 0;
  pointer-events: none;
}
.scroll-hint-special .scroll-hint-arrow {
  font-size: 1.5rem;
  margin-left: 0.5rem;
  animation: scrollHintArrowMove 1.1s infinite alternate;
}
#special-items::-webkit-scrollbar {
  height: 10px;
  background: #fff7f0;
  border-radius: 8px;
}
#special-items::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #ee780a 0%, #d5a912 100%);
  border-radius: 8px;
  min-width: 40px;
  box-shadow: 0 2px 8px rgba(180, 68, 2, 0.10);
}
#special-items::-webkit-scrollbar-thumb:hover {
  background: #b44402;
}
#special-items::-webkit-scrollbar-track {
  background: #fff7f0;
  border-radius: 8px;
}
#special-items {
  scrollbar-width: thin;
  scrollbar-color: #ee780a #fff7f0;
}

.hot-items-container {
  position: relative;
}
.scroll-arrow-left-hot {
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.scroll-arrow-right-hot {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.scroll-arrow-left-hot,
.scroll-arrow-right-hot {
  background: linear-gradient(90deg, #ee780a 0%, #d5a912 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.7rem;
  box-shadow: 0 2px 8px rgba(180, 68, 2, 0.13);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.92;
  transition: background 0.2s, color 0.2s, opacity 0.3s;
  outline: none;
  pointer-events: auto;
}
.scroll-arrow-left-hot:focus, .scroll-arrow-right-hot:focus,
.scroll-arrow-left-hot:hover, .scroll-arrow-right-hot:hover {
  background: #b44402;
  color: #fff;
  opacity: 1;
}
@media (max-width: 900px) {
  .scroll-arrow-left-hot, .scroll-arrow-right-hot {
    display: none;
  }
}
.scroll-hint-hot {
  position: absolute;
  right: 2.5rem;
  top: 20px;
  display: flex;
  align-items: center;
  background: rgba(255, 247, 240, 0.92);
  border-radius: 2rem;
  box-shadow: 0 2px 8px rgba(180, 68, 2, 0.10);
  padding: 0.4rem 1.1rem 0.4rem 0.9rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  color: #b44402;
  z-index: 20;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.7s cubic-bezier(.22,1,.36,1);
  animation: scrollHintPulse 1.5s infinite alternate;
}
.scroll-hint-hot.hide {
  opacity: 0;
  pointer-events: none;
}
.scroll-hint-hot .scroll-hint-arrow {
  font-size: 1.5rem;
  margin-left: 0.5rem;
  animation: scrollHintArrowMove 1.1s infinite alternate;
}
.hot-items-scroll::-webkit-scrollbar {
  height: 10px;
  background: #fff7f0;
  border-radius: 8px;
}
.hot-items-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #ee780a 0%, #d5a912 100%);
  border-radius: 8px;
  min-width: 40px;
  box-shadow: 0 2px 8px rgba(180, 68, 2, 0.10);
}
.hot-items-scroll::-webkit-scrollbar-thumb:hover {
  background: #b44402;
}
.hot-items-scroll::-webkit-scrollbar-track {
  background: #fff7f0;
  border-radius: 8px;
}
.hot-items-scroll {
  scrollbar-width: thin;
  scrollbar-color: #ee780a #fff7f0;
}

#breakfast-time-banner.breakfast-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(90deg, #fff7f0 60%, #ffe5c2 100%);
  color: #b44402;
  font-size: 1.08rem;
  font-family: 'Playfair Display', serif;
  border-radius: 1.2rem;
  box-shadow: 0 2px 8px rgba(180, 68, 2, 0.10);
  padding: 1rem 2rem;
  margin: 1.5rem auto 1.5rem auto;
  max-width: 600px;
  position: relative;
  z-index: 20;
  border: 1.5px solid #ee780a;
  animation: fadeIn 0.7s cubic-bezier(.22,1,.36,1);
}
.breakfast-banner.hidden {
  display: none !important;
}
.breakfast-banner-close {
  background: #fff3e6;
  color: #b44402;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(180, 68, 2, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.breakfast-banner-close:hover {
  background: #ee780a;
  color: #fff;
}
@media (max-width: 600px) {
  #breakfast-time-banner.breakfast-banner {
    padding: 0.7rem 0.5rem;
    font-size: 0.98rem;
    max-width: 98vw;
  }
  .breakfast-banner-close {
    width: 28px;
    height: 28px;
    font-size: 1.1rem;
  }
}
.btn, .btn-primary, .btn.btn-primary, a.btn, a.btn-primary, .breakfast-redirect {
  text-decoration: none !important;
}