body {
  /* background: linear-gradient(to right, #0f2027, #203a43, #2c5364); */
  font-family: "Poppins", sans-serif;
  color: #fff;
  margin: 0;
}

/* Chat Bot Box */

/* Floating chat icon */
.chat-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #2e7d32;
  color: white;
  padding: 10px 16px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  z-index: 10000; /* ensure it's above everything */
  font-size: 22px;
  transition: transform 0.3s ease;
}

.chat-toggle:hover {
  background: #10a497;
  transform: scale(1.1);
}

/* Chat container fixed above the icon */
.chat-container {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 360px;
  max-height: 500px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 9998;
  font-family: "Poppins", sans-serif;
  animation: fadeInUp 0.3s ease-out;
}

.chat-container.hidden {
  display: none;
}

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

.chat-header {
  background: #2e7d32;
  color: white;
  padding: 14px 20px;
  font-weight: bold;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-close {
  background: none;
  color: white;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.chat-box {
  padding: 16px;
  flex-grow: 1;
  overflow-y: auto;
  background: #f7f7f7;
  font-size: 1rem;
  color: #333;
}

.chat-box p {
  margin: 8px 0;
}

.chat-box p strong {
  color: #2e7d32;
}

.chat-input-area {
  display: flex;
  border-top: 1px solid #eee;
  padding: 12px;
  background: white;
}

.chat-input-area input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 25px;
  border: 2px solid #2e7d32;
  font-size: 14px;
  outline: none;
  font-family: "Raleway", sans-serif;
}

.chat-input-area input:focus {
  border-color: #10a497;
}

.chat-input-area button {
  background: #2e7d32;
  color: white;
  border: none;
  padding: 10px 14px;
  margin-left: 10px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.chat-input-area button:hover {
  background: #10a497;
}

/* Loader */
/* #loader {
  display: none;
  font-style: italic;
  color: gray;
  padding: 5px;
} */
/* Header */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  background: linear-gradient(to right, #050e1f, #081b29);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  /* color: #14b8a6; */
  color: #2e7d32;
  text-decoration: none;
  animation: slideRight 1s ease forwards;
}

.logo i {
  font-size: 2rem;
  color: #ffb347;
  transition: transform 0.3s ease;
}

.logo:hover i {
  transform: rotate(15deg) scale(1.1);
  text-shadow: 0 0 10px #ffb347;
}

.navbar {
  display: flex;
  gap: 30px;
  animation: fadeIn 1.5s ease forwards;
}

.navbar a {
  position: relative;
  font-size: 1rem;
  color: #ededed;
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.navbar a:hover,
.navbar a.active {
  color: #2e7d32;
}

.navbar a.active::after,
.navbar a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #2e7d32, #ffb347);
  border-radius: 5px;
  animation: underline 0.4s ease forwards;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  color: #2e7d32;
  cursor: pointer;
}

@media (max-width: 768px) {
  .navbar {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 8%;
    background: #0b1120;
    width: 220px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 238, 255, 0.2);
    transition: all 0.3s ease-in-out;
    animation: fadeIn 0.3s ease-in-out forwards;
  }

  .navbar.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

@keyframes slideRight {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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

@keyframes underline {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Cart Icon */
/* === Cart Icon Shared === */
.cart-icon,
.cart-desktop {
  position: relative;
  font-size: 1.5rem;
  color: #ffb347;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.cart-icon:hover i,
.cart-desktop:hover i {
  transform: scale(1.1);
}

#cart-count,
#cart-count-desktop {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #e67e22;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
  animation: fadeIn 0.3s ease forwards;
}

/* === Mobile Icon Layout === */
.mobile-icons {
  display: none;
  align-items: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .mobile-icons {
    display: flex;
  }

  .cart-desktop {
    display: none;
  }

  .logo-full {
    font-size: 1.2rem;
  }
}

/* Adjust desktop logo size */
@media (min-width: 769px) {
  .logo-full {
    font-size: 1.8rem;
  }
}

/* Home page */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Raleway:wght@400;600&display=swap");

.important-message {
  font-size: 15px;
  font-weight: 600;
  color: #e67e22; /* same orange accent as your span */
  margin: 20px 0 10px;
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.home {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 60px 20px;
  background: linear-gradient(to right, #fdfcfb, #e2d1c3);
  color: #2c3e50;
  font-family: "Raleway", sans-serif;
  text-align: center;
}

.home-content {
  max-width: 800px;
  animation: fadeIn 1s ease-out forwards;
}

.home h1 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin: 10px 0;
  color: #2e7d32;
}

.home h3 {
  font-size: 1.5rem;
  color: #34495e;
}

.home h3 span {
  color: #e67e22;
  font-weight: bold;
}

.home p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-top: 20px;
}

.home-img {
  max-width: 100%;
  border-radius: 12px;
  margin-top: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

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

.btn-group {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #2e7d32;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 0 15px #2e7d32;
  transition: 0.3s ease;
}

.btn-icon:hover {
  background: #10a497;
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
}
.delay-4 {
  animation-delay: 0.8s;
}
.delay-5 {
  animation-delay: 1s;
}

/* Responsive */
@media (max-width: 768px) {
  .home h1 {
    font-size: 2.2rem;
  }

  .home h3 {
    font-size: 1.2rem;
  }

  .home p {
    font-size: 1rem;
  }

  .btn-icon {
    font-size: 14px;
    padding: 12px 20px;
  }
  .nowrap {
    white-space: nowrap;
  }
}

/* Manu Page */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Raleway:wght@400;600&display=swap");

.menu-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #fffaf5, #fdebd0);
  text-align: center;
  font-family: "Raleway", sans-serif;
}

.sub-title {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: #2c3e50;
  margin-bottom: 40px;
}

.sub-title span {
  color: #e67e22;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

.menu-item {
  background: #ffffff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  text-align: center;
}

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

.menu-item img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.menu-item h2 {
  font-size: 1.4rem;
  color: #2e7d32;
  margin-bottom: 10px;
}

.menu-item .description {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 10px;
}

.menu-item .price {
  font-weight: bold;
  font-size: 1.1rem;
  color: #34495e;
  margin-bottom: 15px;
}

.btn-box {
  background: #2e7d32;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.95rem;
  transition: 0.3s ease;
  box-shadow: 0 0 10px #2e7d32;
}

.btn-box:hover {
  background: #10a497;
  transform: scale(1.05);
}
.btn-box.disabled,
.btn-box:disabled {
  background: #ccc; /* Light gray background to show disabled state */
  color: #666; /* Muted text color */
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
  pointer-events: none;
}

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

.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .sub-title {
    font-size: 2rem;
  }

  .menu-item h2 {
    font-size: 1.2rem;
  }

  .menu-item .description {
    font-size: 0.9rem;
  }

  .menu-item .price {
    font-size: 1rem;
  }

  .btn-box {
    font-size: 0.9rem;
    padding: 10px 18px;
  }
}
/* Category section styling */
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 30px;
}

.filter-btn {
  padding: 10px 20px;
  border: 2px solid #2e7d32;
  background-color: white;
  color: #2e7d32;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #2e7d32;
  color: white;
  box-shadow: 0 0 10px #2e7d32;
}

/* searchfield */
.search-box {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.search-box input {
  width: 300px;
  max-width: 90%;
  padding: 12px 20px;
  font-size: 1rem;
  border: 2px solid #2e7d32;
  border-radius: 30px;
  outline: none;
  transition: 0.3s ease;
  font-family: "Raleway", sans-serif;
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.2);
}

.search-box input:focus {
  border-color: #10a497;
  box-shadow: 0 6px 16px rgba(20, 184, 166, 0.3);
}

/* Meat selection */
.option-group {
  margin: 12px 0;
  padding: 10px;
  background: #f5f5f5;
  border-radius: 8px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.2s ease;
  font-size: 0.95rem;
  color: #2c3e50;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
}

.radio-option:hover {
  background-color: #e6f7f4;
}

.radio-option input[type="radio"] {
  accent-color: #009688; /* Teal-like theme */
  cursor: pointer;
  transform: scale(1.1);
}

/* Contact Page */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Raleway:wght@400;600&display=swap");

.contact-section {
  min-height: 100vh;
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(to bottom, #fffaf0, #fef6e4);
  font-family: "Raleway", sans-serif;
  color: #4e342e;
}

.sub-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.sub-title span {
  color: #e67e22;
}

.contact-section p {
  font-size: 1.1rem;
  margin: 10px 0;
  line-height: 1.6;
}

.contact-info p {
  font-size: 1.1rem;
}

.contact-info a {
  color: #e67e22;
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-buttons {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #e67e22;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 0 15px rgba(230, 126, 34, 0.4);
}

.btn-icon:hover {
  background: #d35400;
  transform: scale(1.05);
}

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

.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

.delay-1 {
  animation-delay: 0.3s;
}
.delay-2 {
  animation-delay: 0.5s;
}
.delay-3 {
  animation-delay: 0.7s;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .sub-title {
    font-size: 2rem;
  }

  .contact-section p {
    font-size: 1rem;
  }

  .btn-icon {
    font-size: 14px;
    padding: 10px 18px;
  }
}

/* Review Page */
.review-section {
  min-height: 100vh;
  padding: 60px 20px;
  background: linear-gradient(to bottom, #fffaf0, #fef6e4);
  font-family: "Raleway", sans-serif;
  text-align: center;
  color: #4e342e;
}

.sub-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.sub-title span {
  color: #e67e22;
}

.review-form {
  max-width: 600px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.review-form input,
.review-form textarea {
  padding: 14px;
  border: 2px solid #e67e22;
  border-radius: 10px;
  font-size: 1rem;
  font-family: "Raleway", sans-serif;
  resize: vertical;
}

.review-form button {
  background: #e67e22;
  color: #fffaf0;
  border: none;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 0 15px rgba(230, 126, 34, 0.4);
}

.review-form button:hover {
  background: #d35400;
  transform: scale(1.05);
}

.review-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.review-card {
  background: #ffffff;
  border-left: 5px solid #e67e22;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.review-card p {
  font-size: 1.05rem;
  line-height: 1.6;
}

.review-card span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #6e3b20;
}

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

.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

.delay-1 {
  animation-delay: 0.3s;
}
.delay-2 {
  animation-delay: 0.6s;
}

/* Mobile */
@media (max-width: 768px) {
  .sub-title {
    font-size: 2rem;
  }

  .review-form input,
  .review-form textarea {
    font-size: 0.95rem;
  }

  .review-form button {
    font-size: 0.95rem;
  }

  .review-card p {
    font-size: 1rem;
  }
}

/* Review Loader */
.review-loader {
  font-style: italic;
  color: gray;
  padding: 15px;
  text-align: center;
  font-size: 1.1rem;
  animation: fadeIn 0.5s ease-out forwards;
}

.review-loader.error {
  color: #c0392b;
}

/* Cart Page */
.cart-page {
  padding: 40px 20px;
  background: #fefefe;
  min-height: 100vh;
  font-family: "Raleway", sans-serif;
}

.cart-page h1 {
  font-size: 2.2rem;
  font-family: "Playfair Display", serif;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

.cart-page h1 span {
  color: #e67e22;
}

.cart-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 20px;
  transition: all 0.2s ease;
}

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

.cart-card-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.item-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2e7d32;
}

.item-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 1rem;
  color: #555;
}

.subtotal {
  font-weight: bold;
  color: #e67e22;
}

.cart-summary {
  background: #fff8ec;
  border: 2px solid #ffe3c2;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-summary h2 {
  margin-bottom: 10px;
  font-size: 1.4rem;
  color: #4e342e;
}

.cart-summary p {
  font-size: 1rem;
  margin: 6px 0;
  color: #555;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  margin-top: 10px;
}

.btn.primary {
  background: #e67e22;
  color: white;
  border: none;
}

.btn.primary:hover {
  background: #cf4f00;
}

.btn.secondary {
  background: transparent;
  color: #e67e22;
  border: 2px solid #e67e22;
}

.btn.secondary:hover {
  background: #e67e22;
  color: white;
}

.cart-page.empty {
  text-align: center;
  padding-top: 100px;
}

.cart-page.empty p {
  font-size: 1.1rem;
  margin: 20px 0;
}

@media (min-width: 768px) {
  .cart-container {
    flex-direction: row;
    align-items: flex-start;
  }

  .cart-items {
    flex: 2;
  }

  .cart-summary {
    flex: 1;
    position: sticky;
    top: 120px;
  }
}

/* Remove item (close button) */
.item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.item-controls {
  display: flex;
  /* flex-direction: column; */
  justify-content: space-between;
  gap: 10px;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-controls button {
  background-color: #2e7d32;
  color: white;
  border: none;
  padding: 6px 10px;
  font-size: 1.2rem;
  border-radius: 6px;
  cursor: pointer;
}

.qty-controls span {
  font-weight: bold;
  font-size: 1.1rem;
  color: #333;
}

.remove-btn {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #e74c3c;
  cursor: pointer;
}

.price-info {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  color: #555;
}

@media (max-width: 480px) {
  .item-controls {
    /* flex-direction: column;
    align-items: flex-start; */
    gap: 6px;
  }

  .qty-controls button {
    padding: 5px 8px;
    font-size: 1rem;
  }

  .price-info span {
    font-size: 0.95rem;
  }
}

/* Comment Box */
/* Styled Comment Box for Cart Summary */
.cart-summary textarea#order-comment {
  /* width: 100%; */
  padding: 14px 18px;
  font-size: 1rem;
  font-family: "Raleway", sans-serif;
  color: #4e342e;
  background-color: #fffdf8;
  border: 2px solid #ffd6a0;
  border-radius: 10px;
  /* margin-top: 8px; */
  margin-bottom: 16px;
  resize: vertical;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.cart-summary textarea#order-comment:focus {
  border-color: #e67e22;
  outline: none;
  box-shadow: 0 6px 14px rgba(230, 126, 34, 0.15);
}

.cart-summary label[for="order-comment"] {
  font-size: 1rem;
  font-weight: 600;
  color: #4e342e;
  margin-bottom: 6px;
  display: block;
  margin-top: 12px;
}
@media (max-width: 480px) {
  .cart-summary textarea#order-comment {
    font-size: 0.95rem;
    padding: 12px 14px;
  }

  .cart-summary label[for="order-comment"] {
    font-size: 0.95rem;
  }
}

/* Spice Level */
.global-spice-control {
  margin-top: 20px;
  text-align: center;
  font-family: "Raleway", sans-serif;
}

.spice-level-label {
  font-weight: 600;
  font-size: 1rem;
  color: #4e342e;
  margin-bottom: 8px;
  display: block;
}

.spice-track {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 10px 0;
}

.spice-segment {
  width: 32px;
  height: 32px;
  background: #ffeaea;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.spice-icon {
  font-size: 18px;
  pointer-events: none;
}

.spice-label {
  display: block;
  margin-top: 6px;
  font-size: 0.95rem;
  color: #e67e22;
  font-weight: 600;
}

@media (max-width: 480px) {
  .spice-track {
    gap: 8px;
  }

  .spice-segment {
    width: 28px;
    height: 28px;
  }

  .spice-icon {
    font-size: 16px;
  }
}

/* Modal styling */
.modal {
  display: none; /* default hidden */
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  font-family: "Segoe UI", sans-serif;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.modal.show {
  display: flex;
}

/* Modal content */
.modal-content {
  background: #fffdf9;
  color: #333;
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  padding: 30px 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: slideUpFade 0.4s ease-out;
  box-sizing: border-box;
}

/* Close button */
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  transition: color 0.3s;
}
.modal-close:hover {
  color: #000;
}

/* Title */
.modal-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #008080;
  text-align: center;
}

/* Form labels & inputs */
.modal-form label {
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
  font-size: 14px;
  color: #444;
}
.modal-form input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 18px;
  font-size: 15px;
  box-sizing: border-box;
  transition: border-color 0.3s;
}
.modal-form input:focus {
  border-color: #008080;
  outline: none;
}

/* Submit button */
.modal-form button[type="submit"] {
  width: 100%;
  padding: 12px;
  background-color: #008080;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.modal-form button[type="submit"]:hover:enabled {
  background-color: #006666;
}
.modal-form button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Animation */
@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pickup-date-header {
  font-size: 1rem;
  color: #0f766e; /* teal accent */
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.pickup-toggle {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.pickup-toggle input[type="radio"] {
  display: none; /* Hide the radio buttons */
}

.toggle-option {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s, background-color 0.3s;
  border: 2px solid transparent;
  user-select: none;
}

/* Morning style */
.toggle-option.morning {
  background: linear-gradient(135deg, #fff4c2, #ffe6a7);
  color: #5a4200;
}

/* Evening style */
.toggle-option.evening {
  background: linear-gradient(135deg, #d1e8ff, #b0c9ff);
  color: #002b5c;
}
#pickup-message {
  display: none;
  background-color: #fff4e5; /* soft yellow background */
  color: #7a5700; /* dark yellow text */
  border: 1px solid #ffcc80;
  border-radius: 4px;
  padding: 10px;
  margin-top: 10px;
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity 0.6s ease;
}

#pickup-message.show {
  display: block;
  opacity: 1;
}

.toggle-option.disabled {
  color: #999; /* gray out label */
  cursor: not-allowed;
}
/* Highlight the selected option */
input[type="radio"]:checked + .toggle-option {
  border-color: #008080;
  box-shadow: 0 4px 12px rgba(0, 128, 128, 0.3);
  transform: scale(1.05);
  background-color: #d0f0f0; /* Light teal highlight */
}

/* Subtle hover effect */
.toggle-option:hover {
  transform: scale(1.03);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Mobile padding + prevent modal content overflow */
@media (max-width: 480px) {
  .modal-content {
    padding: 25px 20px;
    margin: auto;
  }
  .modal-title {
    font-size: 20px;
  }
}

/* Review Thankyou Modal */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");

.review-thankyou-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-family: "Poppins", sans-serif;
  padding: 1rem;
  box-sizing: border-box;
}

.review-thankyou-modal .modal-inner {
  background: linear-gradient(to bottom right, #ffffff, #f0f8ff);
  color: #333;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.4s ease;
  max-width: 400px;
  width: 100%;
  box-sizing: border-box;
}

.review-thankyou-modal .modal-inner h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.8rem;
  word-wrap: break-word;
}

.review-thankyou-modal .modal-inner p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.2rem;
}

.review-thankyou-modal button {
  padding: 0.6rem 1.5rem;
  background: #009688;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  display: block;
}

.review-thankyou-modal button:hover {
  background: #00796b;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Adjustments */
@media (max-width: 480px) {
  .review-thankyou-modal .modal-inner {
    padding: 1.5rem;
  }

  .review-thankyou-modal .modal-inner h2 {
    font-size: 1.4rem;
  }

  .review-thankyou-modal .modal-inner p {
    font-size: 0.95rem;
  }

  .review-thankyou-modal button {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
  }
}

/* Closed Banner styling */
.order-closed-banner {
  display: block;
  padding: 1.5rem 1rem;
  background: #fef7ec;
  color: #5d3a00;
  border: 2px solid #d4a10d;
  border-radius: 12px;
  text-align: center;
  margin: 1.5rem auto;
  max-width: 800px;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.order-closed-banner h3 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.order-closed-banner p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0.5rem 0;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .order-closed-banner {
    margin: 1rem 1rem;
    padding: 1.2rem 0.8rem;
    border-radius: 10px;
  }

  .order-closed-banner h3 {
    font-size: 1.2rem;
  }

  .order-closed-banner p {
    font-size: 0.95rem;
  }
}
/* Order Closed Modal Styling */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(40, 20, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
}

.modal-box {
  background: #f9f6f2;
  color: #5d3a00;
  padding: 2rem;
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  font-family: "Poppins", sans-serif;
  animation: fadeIn 0.3s ease;
}

.modal-box h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.modal-box p {
  font-size: 1rem;
  line-height: 1.6;
}

.modal-box button {
  margin-top: 1.5rem;
  padding: 0.7rem 1.4rem;
  font-size: 1rem;
  background-color: #5d3a00;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.modal-box button:hover {
  background-color: #3e2700;
}

/* Responsive: mobile-friendly sizing */
@media (max-width: 480px) {
  .modal-box {
    padding: 1.2rem;
  }

  .modal-box h2 {
    font-size: 1.2rem;
  }

  .modal-box p {
    font-size: 0.95rem;
  }

  .modal-box button {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
  }
}

/* Optional fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
