@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Rubik:wght@400;500;600;700&display=swap");
html {
  font-size: 16px;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 2.5rem;
}

h2, .h2 {
  font-size: 2rem;
}

h3, .h3 {
  font-size: 1.75rem;
}

h4, .h4 {
  font-size: 1.5rem;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

.font-heading {
  font-family: "Rubik", sans-serif !important;
}

.font-body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-medium {
  font-weight: 500 !important;
}

.font-weight-semibold {
  font-weight: 600 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.text-title {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
}

.text-subtitle {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #495057;
}

.text-caption {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  font-size: 0.85rem;
  color: #6c757d;
}

.text-small {
  font-size: 0.875rem;
}

.text-large {
  font-size: 1.125rem;
}

.text-price {
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #ff6b35;
}

.text-highlight {
  background-color: rgba(255, 107, 53, 0.1);
  color: #ff6b35;
  padding: 0.1rem 0.25rem;
  border-radius: 0.5rem;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  h1, .h1 {
    font-size: 2rem;
  }
  h2, .h2 {
    font-size: 1.75rem;
  }
  h3, .h3 {
    font-size: 1.5rem;
  }
  h4, .h4 {
    font-size: 1.25rem;
  }
  h5, .h5 {
    font-size: 1.1rem;
  }
  h6, .h6 {
    font-size: 1rem;
  }
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 70px;
}

.container-fluid,
.container {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .container-fluid,
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.section {
  margin-bottom: 1.5rem;
}
.section.section-lg {
  margin-bottom: 3rem;
}
.section.section-sm {
  margin-bottom: 1rem;
}

.header {
  padding: 1rem 0.5rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #ff6b35;
  color: #ffffff;
}
.header-title {
  font-size: 1.25rem;
}
.header .back-button {
  background-color: transparent;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  font-family: "Inter";
}
.header .action-button {
  background-color: transparent;
  font-size: 1.25rem;
  color: #ffffff;
  border: 0;
  outline: none;
}

.splash > .container > .row {
  min-height: 100vh;
}

.ai-float-button {
  position: fixed;
  bottom: 85px;
  right: 15px;
  z-index: 1001;
}
.ai-float-button .ai-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  color: #ff6b35;
  background-color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.ai-float-button .ai-button i {
  font-size: 1.875rem;
}
.ai-float-button .ai-button:hover, .ai-float-button .ai-button:focus {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.ai-float-button .ai-button:hover + .ai-tooltip, .ai-float-button .ai-button:focus + .ai-tooltip {
  opacity: 1;
  visibility: visible;
}
.ai-float-button .ai-button:active {
  transform: scale(0.95);
}
.ai-float-button .ai-tooltip {
  position: absolute;
  bottom: 70px;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.restaurant {
  padding-top: 4rem;
}

.restaurant-header-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.75rem;
}

.price-range {
  font-weight: 600;
  color: #ff6b35;
  font-size: 1.25rem;
}

.restaurant-info .h3 {
  font-size: 1.5rem;
}

.info-card {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: #f8f9fa;
  border-radius: 0.75rem;
  height: 100%;
}
.info-card .info-card-icon {
  font-size: 1.4rem;
  color: #ff6b35;
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
}
.info-card .info-card-text {
  flex: 1;
}
.info-card .info-card-text .info-card-label {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 2px;
}
.info-card .info-card-text .info-card-value {
  font-weight: 500;
  word-break: break-word;
  font-size: 0.9rem;
}

.back-button {
  font-size: 1.8rem;
  color: #2b2d42;
  display: inline-flex;
}
.back-button:hover {
  color: #ff6b35;
}

.favorite-button {
  border: none;
  background: transparent;
  font-size: 1.4rem;
  color: #ffffff;
}
.favorite-button:hover {
  color: #ff477e;
}
.favorite-button .bi-heart-fill {
  color: #ff6b35 !important;
}

.restaurant-gallery {
  margin-bottom: 1rem;
}
.restaurant-gallery .carousel-item img {
  height: 250px;
  object-fit: cover;
  border-radius: 0.75rem;
}

.map-container {
  height: 200px;
  border-radius: 0.75rem;
  overflow: hidden;
}

.review-card {
  padding: 1rem;
  border: 1px solid #e9ecef;
  border-radius: 0.75rem;
}
.review-card .review-rating .filled {
  color: #ffc914;
}
.review-card .reviewer-name {
  font-weight: 500;
}

.rating-input .rating-star {
  cursor: pointer;
}
.rating-input .rating-star:hover {
  color: #ffc914;
}
.rating-input .rating-star.filled {
  color: #ffc914;
}

.search {
  padding-top: 4rem;
}
.search .search-container {
  transition: all 0.3s ease;
  transform-origin: top center;
}
.search .search-container.search-active {
  padding-bottom: 0.5rem;
}
.search .search-container h2 {
  transition: font-size 0.3s ease;
}
.search .search-container .search-bar {
  position: relative;
  margin-top: 1rem;
}
.search .search-container .search-bar .search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #adb5bd;
  font-size: 1rem;
  pointer-events: none;
}
.search .search-container .search-bar input {
  border-radius: 50px;
  padding-left: 40px;
  padding-right: 16px;
  background-color: rgba(255, 255, 255, 0.95);
  border: none;
  height: 50px;
  transition: all 0.2s ease;
  font-size: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.search .search-container .search-bar input:focus {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}
.search .search-results {
  min-height: 300px;
}
.search .search-results .food-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.search .search-results .food-card:hover, .search .search-results .food-card:active {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.search .search-results .food-card .card-body {
  padding: 0.5rem 1rem;
}
.search .search-results .food-card .card-title {
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.search .search-results .food-card .badge {
  font-weight: 500;
  padding: 0.35em 0.65em;
}
.search .search-results #loadMoreBtn {
  transition: all 0.2s ease;
  min-width: 150px;
}
.search .search-results #loadMoreBtn:hover {
  background-color: rgba(255, 107, 53, 0.1);
}
.search .filter-chips {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 0.5rem 0;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}
.search .filter-chips::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.search .filter-chips .chip {
  flex: 0 0 auto;
  padding: 8px 16px;
  margin-right: 8px;
  background-color: rgba(255, 255, 255, 0.85);
  color: #495057;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.search .filter-chips .chip:hover {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
.search .filter-chips .chip.active {
  background-color: #ffffff;
  color: #ff6b35;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

#noResults {
  padding: 3rem 0;
}
#noResults i {
  opacity: 0.3;
  margin-bottom: 1rem;
}
#noResults p {
  color: #6c757d;
}
#noResults p:first-of-type {
  font-weight: 500;
  color: #343a40;
}

@media (min-width: 768px) {
  .search .search-container {
    border-radius: 1rem;
  }
  .search .search-container h2 {
    font-size: 1.6rem;
  }
  .search .search-container .search-bar input {
    height: 56px;
    font-size: 1rem;
  }
  .search .filter-chips .chip {
    padding: 10px 20px;
  }
  .search .search-results .food-card {
    border-radius: 1rem;
  }
  .search .search-results .food-card .card-body {
    padding: 1rem 1.5rem;
  }
}
.nearby {
  padding-top: 1rem;
}
.nearby h2 {
  font-weight: 600;
  color: #ff6b35;
}
.nearby #map {
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.nearby #map.d-none {
  opacity: 0;
}
.nearby .map-loading {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #6c757d;
}
.nearby .map-loading .spinner-border {
  width: 3rem;
  height: 3rem;
}

.gm-style .gm-style-iw-c {
  padding: 12px !important;
  border-radius: 0.75rem !important;
}

.map-info-window {
  padding: 5px;
  max-width: 250px;
}
.map-info-window h5 {
  margin: 0 0 5px 0;
  font-size: 1rem;
  font-weight: 600;
  color: #ff6b35;
}
.map-info-window .rating {
  color: #ffc914;
  margin-bottom: 3px;
  font-size: 0.9rem;
}
.map-info-window .cuisine, .map-info-window .distance, .map-info-window .price-range {
  color: #495057;
  font-size: 0.85rem;
  margin-bottom: 2px;
}
.map-info-window .route-info {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid #e9ecef;
  font-size: 0.85rem;
}

.restaurant-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 15px;
  transform: translateY(20px);
  max-height: 55vh;
}
.restaurant-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.restaurant-popup-content {
  background-color: #fff;
  border-radius: 1rem;
  max-width: 600px;
  width: 100%;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  max-height: 55vh;
  overflow-y: auto;
}
.restaurant-popup-content .btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.restaurant-popup-body {
  padding: 0;
}
.restaurant-popup-header {
  position: relative;
  padding: 0 0 15px 0;
  text-align: center;
}
.restaurant-popup-header h3 {
  margin: 0;
  font-weight: 600;
  padding: 15px 40px 5px 15px;
  font-size: 1.5rem;
}
.restaurant-popup-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.restaurant-popup-img-placeholder {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e9ecef;
  color: #6c757d;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.restaurant-popup-rating {
  color: #ffc914;
  padding: 0 15px;
}
.restaurant-popup-details {
  padding: 0 15px 20px 15px;
}
.restaurant-popup-details h5 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
  color: #343a40;
}
.restaurant-popup-details p {
  color: #495057;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.restaurant-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.restaurant-popup-actions .btn {
  flex: 1 1 auto;
  min-width: 120px;
}

.directions-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1060;
  background-color: #ffffff;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
  max-height: 30vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.directions-panel.active {
  transform: translateY(0);
}
.directions-panel-header {
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.directions-panel-header h3 {
  font-size: 1.1rem;
  margin: 0;
  font-weight: 600;
  color: #ff6b35;
}
.directions-panel-header .btn-close {
  font-size: 0.8rem;
}
.directions-panel-summary {
  padding: 0.5rem 1rem;
  background-color: #f8f9fa;
}
.directions-panel-summary .summary-info {
  display: flex;
  justify-content: space-between;
}
.directions-panel-summary .summary-info .summary-distance, .directions-panel-summary .summary-info .summary-duration {
  font-weight: 500;
}
.directions-panel-summary .summary-info .summary-distance i, .directions-panel-summary .summary-info .summary-duration i {
  color: #ff6b35;
  margin-right: 0.25rem;
}
.directions-panel-body {
  padding: 0 0.5rem;
  overflow-y: auto;
  flex: 1;
}
.directions-panel-body .directions-steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.directions-panel-body .direction-step {
  display: flex;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9ecef;
}
.directions-panel-body .direction-step:last-child {
  border-bottom: none;
}
.directions-panel-body .direction-step.destination .step-number {
  background-color: #ff6b35;
  color: white;
}
.directions-panel-body .direction-step.destination .step-number i {
  font-size: 0.9rem;
}
.directions-panel-body .direction-step .step-number {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-color: #e9ecef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  margin-right: 0.5rem;
  color: #2b2d42;
}
.directions-panel-body .direction-step .step-content {
  flex: 1;
}
.directions-panel-body .direction-step .step-content .step-instruction {
  font-size: 0.9rem;
  margin-bottom: 2px;
}
.directions-panel-body .direction-step .step-content .step-distance, .directions-panel-body .direction-step .step-content .step-address {
  font-size: 0.8rem;
  color: #6c757d;
}

@media (max-width: 768px) {
  .directions-panel.active ~ .mobile-nav {
    visibility: hidden;
  }
}
@media (max-width: 768px) {
  .restaurant-popup {
    padding: 0;
  }
  .restaurant-popup-content {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    max-height: 55vh;
  }
}
.restaurant-menu h3 {
  font-weight: 600;
  color: #ff6b35;
}
.restaurant-menu .menu-search-container {
  position: relative;
  display: flex;
  align-items: center;
}
.restaurant-menu .menu-search-container .btn-search-toggle {
  background: transparent;
  border: none;
  color: #ff6b35;
  font-size: 1rem;
  padding: 0.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.restaurant-menu .menu-search-container .btn-search-toggle:hover {
  transform: scale(1.1);
}
.restaurant-menu .menu-search-container .menu-search-input {
  position: absolute;
  right: 2.5rem;
  display: none;
  width: 200px;
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
}
.restaurant-menu .menu-search-container .menu-search-input input {
  border: 1px solid #e9ecef;
  border-radius: 0.75rem;
  padding-right: 2rem;
  font-size: 0.9rem;
}
.restaurant-menu .menu-search-container .menu-search-input input:focus {
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
  border-color: #ff6b35;
}
.restaurant-menu .menu-search-container .menu-search-input .btn-close-search {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #adb5bd;
  padding: 0.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.restaurant-menu .menu-search-container .menu-search-input .btn-close-search:hover {
  color: #ff6b35;
}

.menu-categories .chip.active {
  background-color: #ff6b35;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.menu-category {
  display: none;
}
.menu-category.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.menu-item {
  display: flex;
  margin-bottom: 1rem;
  background-color: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.menu-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.menu-item-image {
  width: 100px;
  min-width: 100px;
  height: 100px;
  overflow: hidden;
}
.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu-item-details {
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.menu-item-name {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 2px;
  color: #343a40;
}
.menu-item-description {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.menu-item-price {
  font-weight: 500;
  color: #ff6b35;
  font-size: 0.95rem;
  align-self: flex-end;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 768px) {
  .menu-item-image {
    width: 120px;
    min-width: 120px;
    height: 120px;
  }
  .menu-item-details {
    padding: 1rem;
  }
  .menu-item-name {
    font-size: 1.1rem;
  }
  .menu-item-description {
    font-size: 0.9rem;
  }
}
.menu-item-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 15px;
  transform: translateY(20px);
  max-height: 85vh;
}
.menu-item-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.menu-item-popup-content {
  background-color: #fff;
  border-radius: 1rem;
  max-width: 600px;
  width: 100%;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  max-height: 85vh;
  overflow-y: auto;
}
.menu-item-popup-content .btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  opacity: 1;
}
.menu-item-popup-content .btn-close:hover {
  background-color: rgb(255, 255, 255);
  transform: scale(1.05);
}
.menu-item-popup-body {
  padding: 1.5rem;
}
.menu-item-popup .item-header-inline {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.menu-item-popup .item-header-inline .item-image-container {
  flex-shrink: 0;
}
.menu-item-popup .item-header-inline .item-image-container .item-inline-image {
  width: 80px;
  height: 80px;
  border-radius: 0.75rem;
  object-fit: cover;
}
.menu-item-popup .item-header-inline .item-info-container {
  flex: 1;
  min-width: 0;
}
.menu-item-popup .item-header-inline .item-info-container .item-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #343a40;
  margin: 0 0 0.25rem 0;
  line-height: 1.3;
}
.menu-item-popup .item-header-inline .item-info-container .item-description-inline {
  font-size: 0.85rem;
  color: #6c757d;
  line-height: 1.4;
  margin: 0 0 0.25rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.menu-item-popup .item-header-inline .item-info-container .item-price-display .item-price {
  font-size: 1rem;
  font-weight: 600;
  color: #ff6b35;
}
.menu-item-popup .item-options .options-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 0.5rem;
}
.menu-item-popup .item-options .size-options .form-check,
.menu-item-popup .item-options .extras-options .form-check {
  background-color: #f8f9fa;
  border-radius: 0.75rem;
  padding: 0.5rem 1rem;
  margin-bottom: 0.5rem;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
}
.menu-item-popup .item-options .size-options .form-check:hover,
.menu-item-popup .item-options .extras-options .form-check:hover {
  background-color: rgba(255, 107, 53, 0.05);
  border-color: rgba(255, 107, 53, 0.2);
}
.menu-item-popup .item-options .size-options .form-check .form-check-input,
.menu-item-popup .item-options .extras-options .form-check .form-check-input {
  margin-top: 0.15rem;
}
.menu-item-popup .item-options .size-options .form-check .form-check-input:checked,
.menu-item-popup .item-options .extras-options .form-check .form-check-input:checked {
  background-color: #ff6b35;
  border-color: #ff6b35;
}
.menu-item-popup .item-options .size-options .form-check .form-check-input:checked ~ .form-check-label,
.menu-item-popup .item-options .extras-options .form-check .form-check-input:checked ~ .form-check-label {
  color: #343a40;
  font-weight: 500;
}
.menu-item-popup .item-options .size-options .form-check .form-check-input:focus,
.menu-item-popup .item-options .extras-options .form-check .form-check-input:focus {
  box-shadow: 0 0 0 0.15rem rgba(255, 107, 53, 0.25);
}
.menu-item-popup .item-options .size-options .form-check .form-check-label,
.menu-item-popup .item-options .extras-options .form-check .form-check-label {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  cursor: pointer;
  font-size: 0.9rem;
}
.menu-item-popup .item-options .size-options .form-check .form-check-label .option-name,
.menu-item-popup .item-options .extras-options .form-check .form-check-label .option-name {
  font-weight: 500;
}
.menu-item-popup .item-options .size-options .form-check .form-check-label .option-price,
.menu-item-popup .item-options .extras-options .form-check .form-check-label .option-price {
  color: #ff6b35;
  font-weight: 600;
  font-size: 0.85rem;
}
.menu-item-popup .item-options .size-options .form-check:has(.form-check-input:checked),
.menu-item-popup .item-options .extras-options .form-check:has(.form-check-input:checked) {
  background-color: rgba(255, 107, 53, 0.1);
  border-color: #ff6b35;
}
.menu-item-popup .item-options textarea {
  border-radius: 0.75rem;
  border: 1px solid #dee2e6;
  transition: all 0.2s ease;
  resize: vertical;
  min-height: 60px;
  font-size: 0.9rem;
}
.menu-item-popup .item-options textarea:focus {
  border-color: #ff6b35;
  box-shadow: 0 0 0 0.15rem rgba(255, 107, 53, 0.15);
}
.menu-item-popup .item-options textarea::placeholder {
  color: #adb5bd;
  font-style: italic;
  font-size: 0.85rem;
}
.menu-item-popup .quantity-section .options-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 0.5rem;
}
.menu-item-popup .quantity-section .quantity-selector-standalone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem;
  background-color: #f8f9fa;
  border-radius: 0.75rem;
  width: fit-content;
  margin: 0 auto;
}
.menu-item-popup .quantity-section .quantity-selector-standalone button {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: 1px solid #dee2e6;
  background-color: #ffffff;
}
.menu-item-popup .quantity-section .quantity-selector-standalone button:hover {
  background-color: #ff6b35;
  color: #ffffff;
  border-color: #ff6b35;
}
.menu-item-popup .quantity-section .quantity-selector-standalone button:active {
  transform: scale(0.95);
}
.menu-item-popup .quantity-section .quantity-selector-standalone button i {
  font-size: 1rem;
}
.menu-item-popup .quantity-section .quantity-selector-standalone .quantity-display {
  min-width: 50px;
  text-align: center;
  font-weight: 600;
  font-size: 1.2rem;
  color: #343a40;
  padding: 0 0.5rem;
}
.menu-item-popup .item-actions-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}
.menu-item-popup .item-actions-bottom .add-to-cart-btn-full {
  width: 100%;
  padding: 0.5rem;
  font-weight: 600;
  border-radius: 0.75rem;
  background-color: #ff6b35;
  border-color: #ff6b35;
  transition: all 0.2s ease;
  font-size: 1rem;
}
.menu-item-popup .item-actions-bottom .add-to-cart-btn-full:hover {
  background-color: #ff4602;
  border-color: #ff4602;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}
.menu-item-popup .item-actions-bottom .add-to-cart-btn-full:active {
  transform: translateY(0);
}
.menu-item-popup .item-actions-bottom .add-to-cart-btn-full i {
  font-size: 1rem;
}

@media (max-width: 768px) {
  .menu-item-popup {
    padding: 0;
    max-height: 90vh;
  }
  .menu-item-popup-content {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    max-height: 80vh;
    border-radius: 1rem 1rem 0 0;
  }
  .menu-item-popup .item-header-inline .item-image-container .item-inline-image {
    width: 100px;
    height: 100px;
  }
  .menu-item-popup .item-header-inline .item-info-container .item-name {
    font-size: 1rem;
  }
  .menu-item-popup .item-header-inline .item-info-container .item-description-inline {
    font-size: 0.8rem;
  }
  .menu-item-popup .quantity-selector-standalone {
    gap: 0.5rem;
  }
  .menu-item-popup .quantity-selector-standalone button {
    width: 36px;
    height: 36px;
  }
  .menu-item-popup .quantity-selector-standalone .quantity-display {
    min-width: 40px;
    font-size: 1.1rem;
  }
}
.modal-fullscreen-bottom,
.menu-item-modal,
.modal-fullscreen-drawer {
  display: none !important;
}

.chat {
  margin-top: 4rem;
}
.chat-room {
  display: flex;
  flex-direction: column;
}
.chat-room .ai-message {
  color: #ffffff;
  padding: 0.5rem;
  background-color: #2ec4b6;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  align-self: flex-start;
  width: auto;
}
.chat-room .ai-message p {
  margin-bottom: 0;
}
.chat-room .user-message {
  color: #ffffff;
  padding: 0.5rem;
  background-color: #ff6b35;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  align-self: flex-end;
  width: auto;
}
.chat-room .user-message p {
  margin-bottom: 0;
}

.chat-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ff6b35;
}

/*# sourceMappingURL=style.css.map */
