:root {
  --primary-color: #1e3855;
  --secondary-color: #00619f;
  --accent-color: #0094d2;
  --highlight-color: #00b2f3;
  --success-color: #27ae60;
  --danger-color: #e74c3c;
  --warning-color: #f39c12;
  --dark-color: #3e2723;
  --light-color: #fff8dc;
  --text-color: #333;
  --white: #ffffff;
}

/* Bootstrap 3 spacing utilities */
.mt-50 { margin-top: 50px; }
.pt-50 { padding-top: 50px; }
.mb-50 { margin-bottom: 50px; }
.mb-40 { margin-bottom: 40px; }
.mb-30 { margin-bottom: 30px; }
.mt-40 { margin-top: 40px; }
.mt-20 { margin-top: 20px; }
.mr-10 { margin-right: 10px; }

/* Loading spinner replacement */
.loading-spinner {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite;
}

@keyframes spinner-border {
    to { transform: rotate(360deg); }
}

.required {
    color: red;
}

/* Phone input container */
.phone-input-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.country-code-select {
    width: 120px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--light-color);
  color: var(--text-color);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.key-text {
  font-size: 1.6rem;
}

.value-text {
  font-size: 1.4rem;
}

.rest-filter-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

/* Enhanced Navigation */
.navbar {
  background-color: var(--dark-color);
  padding: 15px 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.navbar-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color) !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.navbar-nav .nav-link {
  color: var(--white) !important;
  font-weight: 500;
  margin: 0 10px;
  transition: all 0.3s ease;
  padding: 8px 16px !important;
  border-radius: 25px;
  position: relative;
}

.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent-color) !important;
  background: rgba(244, 164, 96, 0.1);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
  width: 80%;
}

/* Enhanced Page Sections */
.resmenuview {
  display: none;
  padding-top: 80px;
  min-height: 100vh;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.resmenuview.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced Hero Section */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
    url("https://source.unsplash.com/random/1600x900/?restaurant,fine-dining")
      no-repeat center center;
  background-size: cover;
  height: 80vh;
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    var(--primary-color) 0%,
    transparent 50%,
    var(--secondary-color) 100%
  );
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  background: linear-gradient(45deg, var(--accent-color), var(--white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.btn-primary {
  /* background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  ); */
  border: none;
  padding: 12px 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 5px;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

.btn-primary:hover::before {
  left: 100%;
}

.form-control1 {
  padding: 0px 15px;
  border: 2px solid #E9ECEF;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1rem;
  width: 200px !important;
}

/* Enhanced Feature Cards */
.feature-card {
  background: var(--white);
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  border: 1px solid rgba(139, 69, 19, 0.1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-card h3 {
  margin-bottom: 15px;
  color: var(--dark-color);
  font-weight: 600;
}

/* Enhanced Section Titles */
.section-title {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 15px;
  margin-top: 20px;
  text-align: center;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.8rem !important;
  color: var(--secondary-color);
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 400;
}

/* Enhanced Menu Categories */
.nav-pills .nav-link {
  background-color: transparent;
  color: var(--dark-color);
  font-size: 1.5rem !important;
  font-weight: 500;
  margin: 0 5px;
  padding: 5px 10px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.nav-pills .nav-link.active {
  background-color: #007bff;
  color: white;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.nav-pills .nav-link:hover:not(.active) {
  background-color: rgba(139, 69, 19, 0.1);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-back-card {
  width: 400px;
  display: block;
  background: white;
  padding: 15px 20px;
  border-radius: 11px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-back-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.back-card-content {
  display: flex;
  align-items: center;
  color: #495057;
}

.back-card-content i {
  font-size: 1.2rem;
  color: #667eea;
  margin-right: 15px;
}

/* .booking-list-page {
  max-width: fit-content !important;
} */

/* Enhanced Menu Items */
.res-menu-item {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(139, 69, 19, 0.1);
  position: relative;
}

/* Enhanced Menu Item Card Design */
.res-menu-item-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  background: var(--white);
}

.res-menu-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-img-container {
  position: relative;
  overflow: hidden;
}

.card-img {
  transition: transform 0.5s ease;
}

.menu-categories {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.res-menu-item-card:hover .card-img {
  transform: scale(1.05);
}

.res-menu-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.res-menu-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.res-menu-item:hover::before {
  transform: scaleX(1);
}

.res-menu-item-image {
  height: 90px !important;
  background: linear-gradient(45deg, var(--light-color), #f8f9fa);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  position: relative;
  overflow: hidden;
}

.res-menu-item-image i {
  font-size: 4rem;
  opacity: 0.7;
}

.res-menu-item-content {
  padding: 25px;
}

.res-menu-item-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.res-menu-item-title h4 {
  margin: 0;
  color: var(--dark-color);
  font-weight: 600;
}

.res-menu-item-price {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.3rem;
  background: var(--light-color);
  padding: 5px 12px;
  border-radius: 20px;
}

.res-menu-item-description {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

.res-menu-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.menu-tag {
  background: linear-gradient(
    45deg,
    var(--accent-color),
    var(--secondary-color)
  );
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(244, 164, 96, 0.3);
}

/* Enhanced About Page */
.about-image {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder {
  background: linear-gradient(45deg, var(--light-color), #f8f9fa);
  width: 100%;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: var(--secondary-color);
  border: 2px dashed var(--accent-color);
}

.image-placeholder i {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.7;
}

/* Enhanced Contact Page */
.contact-info {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 15px;
  margin-top: 5px;
  background: var(--light-color);
  padding: 10px;
  border-radius: 50%;
}

.contact-item h5 {
  margin-bottom: 5px;
  color: var(--dark-color);
  font-weight: 600;
}

.contact-form {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(139, 69, 19, 0.1);
}

.form-group label {
  font-size: 1.6rem;
}

.form-control {
  padding: 0px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1.6rem;
}

.res-form-input {
  height: 42px !important;
  padding: 5px 8px !important;
}

.res-form-select {
  height: 42px !important;
  width: 100px !important;
  padding: 5px 8px !important;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.15);
  transform: translateY(-2px);
}

/* Enhanced Map Page */
.map-container {
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(139, 69, 19, 0.1);
}

.map-placeholder {
  background: linear-gradient(45deg, var(--light-color), #f8f9fa);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  border: 2px dashed var(--accent-color);
}

.map-placeholder i {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.7;
}

/* Enhanced Footer 
.footer {
  background: linear-gradient(45deg, var(--dark-color), #2c1810);
  color: var(--white);
  padding: 50px 0 20px;
  margin-top: 50px;
}

.footer h5 {
  color: var(--accent-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer a {
  color: var(--light-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-links a:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(244, 164, 96, 0.4);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}
*/
/* Enhanced Card Components */
.card-img-container {
  padding: 20px;
  overflow: hidden;
  position: relative;
}

.card-img-container img {
  width: 100%;
  height: 150px !important;
  object-fit: cover;
  transition: all 0.5s ease;
}

.card:hover .card-img-container img {
  transform: scale(1.1);
}

/* Image overlay gradient */
.image-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(transparent 0%, rgba(206, 206, 206, 0.7) 100%);
  pointer-events: none;
}

/* Add to Cart overlay */
.add-to-cart-overlay {
  z-index: 10;
}

.overlay-btn {
  backdrop-filter: blur(10px);
  background-color: #007bff;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  /* color: var(--primary-color) !important; */
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.overlay-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-primary.overlay-btn {
  background-color: #007bff;
  color: white;
  border: none !important;
}

.btn-success.overlay-btn {
  background-color: #007bff;
  color: white;
  border: none !important;
}

/* Quantity controls styling */
.quantity-controls {
  display: flex;
  align-items: center;
  justify-content: center;
}
.quantity-controls .quantity-selector {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  width: 140px !important;
}

.quantity-btn.border-0 {
  background: transparent !important;
  color: var(--primary-color) !important;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-btn.border-0:hover {
  background: var(--primary-color) !important;
  color: var(--white) !important;
}

/* Content area improvements */
.card-body {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
}

.card-title {
  color: var(--dark-color);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.3;
}

.card-text {
  color: #666;
  line-height: 1.5;
  font-size: 0.95rem;
}

.price-section span {
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Badge styling */
.badge.bg-secondary {
  background: linear-gradient(
    45deg,
    var(--accent-color),
    var(--highlight-color)
  ) !important;
  border: none;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.4rem 0.8rem;
}

.add-to-cart-section {
  border-top: 1px solid rgba(139, 69, 19, 0.1);
  padding-top: 20px;
}

.res-menu-items {
  margin-top: 3rem !important;
}

.res-menu-item-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(139, 69, 19, 0.1);
}

.res-menu-item-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* .res-feedback-card {
  top: 20px !important;
  right: 20px !important;
  z-index: 9999;
  min-width: 300px;
  position: fixed ! important;
} */

.no-tables-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 60vh; /* or use height: 100vh; for full viewport height */
    padding: 2rem;
    margin: 0 auto;
}

.no-tables-message i {
    font-size: 2rem;
    color: #6c757d;
}

.no-tables-message h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #343a40;
}

.no-tables-message p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 500px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.no-tables-message .btn {
    min-width: 150px;
}

/* Enhanced Toast notifications */
.toast {
  min-width: 300px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: none;
}

.restaurant-carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.restaurant-carousel-track {
  display: flex;
  transition: transform 0.3s ease-in-out;
  gap: 15px;
}

.carousel-slide {
  min-width: 400px;
  flex-shrink: 0;
}

.carousel-slide img {
  width: 100%;
  height: 250px !important;
  object-fit: cover;
  border-radius: 8px;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  z-index: 10;
}
.carousel-btn {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.9);
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.banner-section {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.banner-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  color: white;
  height: 100%;
  display: flex;
  align-items: center;
}

.restaurant-info-card {
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 40%;
  color: #333;
}

.restaurant-address {
  margin-bottom: 15px;
  color: #666;
  font-size: 1.4rem !important;
}

.hours-toggle {
  color: var(--primary-color);
  cursor: pointer;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 1.2rem;
}

.hours-toggle i {
  margin-right: 8px;
}

.action-buttons {
  display: flex;
  gap: 10px;
}

.action-btn {
  flex: 1;
  padding: 10px;
  border: none;
  font-size: small;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.action-icon {
  margin-right: 5px;
}

.btn-book {
  background-color: var(--primary-color);
  color: white;
}

.btn-call {
  background-color: #28a745;
  color: white;
}

.btn-direction {
  background-color: #007bff;
  color: white;
}

.action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.call-modal {
  left: 0 !important;
}

.hours-modal {
  left: 0 !important;
}


/* Remove any custom styles that might conflict */
.banner-section .modal,
#menu .modal,
.booking-page .modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}


.hours-table {
  width: 100%;
  margin-top: 15px;
}

.hours-table tr {
  border-bottom: 1px solid #eee;
}

.hours-table td {
  padding: 8px 0;
}

.hours-table .day {
  font-weight: 600;
}

.hours-table .time {
  text-align: right;
  color: #666;
}

/* Booking Page Styles - Modern Design */
.booking-page {
    min-height: 100vh;
    color: #333;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.booking-container {
    /* max-width: 600px; */
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.booking-header {
    margin-bottom: 2rem;
}

.booking-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.booking-restaurant-title {
    font-size: 1.8rem;
    font-weight: 500;
    color: #666;
    margin: 0;
}

/* Section Styles */
.booking-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px solid #e9ecef;
}

.section-label {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: -0.3px;
}

/* Guests Selector - Single Row */
.guests-selector {
    width: 100%;
    overflow-x: auto;
}

.guest-options {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    padding-bottom: 10px;
    min-width: min-content;
}

.guest-option {
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #333;
}

.guest-option:hover {
    border-color: #007bff;
    transform: translateY(-2px);
}

.guest-option.selected {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.capacity-info {
  font-size: 1.5rem;
}

/* Date Navigation */
.date-navigation {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.nav-arrow {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #666;
}

.nav-arrow:hover {
    border-color: #007bff;
    color: #007bff;
}

.date-scroll-container {
    flex: 1;
    overflow: hidden;
}

.date-options {
    display: flex;
    gap: 8px;
    transition: transform 0.3s ease;
}

.date-option {
    flex: 0 0 auto;
    width: 80px;
    padding: 12px 8px;
    text-align: center;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.date-option:hover {
    border-color: #007bff;
}

.date-option.selected {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.date-day {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.date-number {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.date-month {
    font-size: 1.4rem;
    color: #666;
    text-transform: uppercase;
}

.date-option.selected .date-month {
    color: rgba(255, 255, 255, 0.9);
}

/* Time of Day Options - Single Row */
.time-of-day-options {
    display: flex;
    flex-direction: row;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.time-option {
    flex: 1;
    min-width: 180px;
    display: flex;
    align-items: center;
    padding: 1.2rem;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 1rem;
}

.time-option:hover {
    border-color: #007bff;
    transform: translateY(-1px);
}

.time-option.selected {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.time-icon {
    font-size: 1.5rem;
    color: #666;
}

.time-option.selected .time-icon {
    color: white;
}

.time-content h4 {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.time-content p {
    font-size: 1.4rem;
    margin: 0;
    opacity: 0.8;
}

.time-input-group label {
  font-size: 1.5rem;
}

 /* Time Slots - Grid Layout with Rows */
        .time-slots-container {
            display: block;
            width: 100%;
        }

        .time-slot-group {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 10px;
            width: 100%;
        }

        .time-slot-option {
            padding: 12px 8px;
            text-align: center;
            background: white;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            font-size: 0.9rem;
        }

        .time-slot-option:hover {
            transform: translateY(-2px);
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        /* Available time slots */
        .time-slot-option.available {
            border-color: #28a745;
            color: #155724;
        }

        .time-slot-option.available:hover {
            border-color: #1e7e34;
            background: #f8fff9;
        }

        .time-slot-option.available.selected {
            background: #28a745;
            color: white;
            border-color: #28a745;
        }

        /* Not available time slots */
        .time-slot-option.not-available {
            border-color: #dc3545;
            color: #721c24;
            background: #f8f9fa;
            cursor: not-allowed;
            opacity: 0.6;
        }

        .time-slot-option.not-available:hover {
            transform: none;
            box-shadow: none;
        }

        /* Status indicators */
        .status-indicator {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
        }

        .status-item {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.8rem;
        }

        .status-available {
            color: #28a745;
            font-weight: 600;
        }

        .status-not-available {
            color: #dc3545;
            font-weight: 600;
        }

        .status-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .dot-available {
            background: #28a745;
        }

        .dot-not-available {
            background: #dc3545;
        }
/* Proceed Button */
.proceed-section {
    margin-top: 2rem;
    text-align: center;
}

.btn-proceed {
    /* background: #28a745; */
    color: white;
    border: none;
    padding: 16px 48px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 200px;
}

.btn-proceed:hover:not(:disabled) {
    /* background: #218838; */
    transform: translateY(-2px);
    /* box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3); */
}

.btn-proceed:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Back Button Styling */
.back-card-content i {
  font-size: 1.2rem;
}

.back-title {
  font-weight: 600;
  font-size: 1.7rem !important;
}

.back-subtitle {
  font-size: 1.3rem !important;
  opacity: 0.7;
}

/* Enhanced Responsive Styles */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .res-menu-item-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .res-menu-item-price {
    margin-top: 5px;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .contact-item i {
    margin-right: 0;
  }

  .restaurant-carousel-container {
    height: 200px;
  }

  .carousel-slide {
    min-width: 300px;
  }

  .banner-section {
    height: 500px;
  }

  .banner-content {
    padding: 20px;
  } 

  .restaurant-info-card {
    width: 100%;
   
  }

  .action-buttons {
    flex-direction: column;
  }

  .booking-container {
    padding: 0 15px;
  }

  .booking-main-title {
    font-size: 2rem;
  }

  .guest-options {
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }

  .guest-option {
    padding: 12px 4px;
    font-size: 1rem;
  }

  .date-option {
    width: 70px;
    padding: 10px 6px;
  }

  .time-slots-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .time-option {
    padding: 1rem;
  }

  .btn-back-card {
    width: 300px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

@media (max-width: 576px) {
  .restaurant-carousel-container {
    height: 150px;
  }

  .carousel-slide {
    min-width: 250px;
  }

  .guest-options {
    grid-template-columns: repeat(3, 1fr);
  }

  .date-options {
    gap: 6px;
  }

  .date-option {
    width: 65px;
    padding: 8px 4px;
  }

  .time-slots-container {
    grid-template-columns: 1fr;
  }
}

/* Loading animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Checkout Button Styles */
/* #restaurant-checkout-btn {
  background: linear-gradient(135deg, #28a745, #20c997);
  border: none;
  border-radius: 50px;
  padding: 15px 30px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
  transition: all 0.3s ease;
}

#restaurant-checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
  background: linear-gradient(135deg, #218838, #1e9e6e);
} */

/* Cart Counter Badge */
.cart-counter {
  background: #dc3545;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  display: none;
  position: absolute;
  top: -5px;
  right: -5px;
}

/* Custom scrollbar for better UX */
.guests-selector::-webkit-scrollbar,
.time-of-day-options::-webkit-scrollbar,
.time-slots-container::-webkit-scrollbar {
    height: 6px;
}

.guests-selector::-webkit-scrollbar-track,
.time-of-day-options::-webkit-scrollbar-track,
.time-slots-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.guests-selector::-webkit-scrollbar-thumb,
.time-of-day-options::-webkit-scrollbar-thumb,
.time-slots-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.guests-selector::-webkit-scrollbar-thumb:hover,
.time-of-day-options::-webkit-scrollbar-thumb:hover,
.time-slots-container::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}



#page-content{
  max-width: 1440px;
  width: 100%;
  margin: auto;
}

/* Opening Hours Styles */
.hours-toggle {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-block;
}

.hours-toggle.open-today {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.hours-toggle.closed-today {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.hours-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Hours Modal Styles */
/* Status colors for opening hours */
.hours-toggle.open-today {
    color: #28a745; /* Green for open */
    font-weight: bold;
}

.hours-toggle.closing-soon {
    color: #ffc107; /* Yellow/amber for closing soon */
    font-weight: bold;
}

.hours-toggle.opening-soon {
    color: #17a2b8; /* Blue for opening soon */
    font-weight: bold;
}

.hours-toggle.closed-today {
    color: #dc3545; /* Red for closed */
}

/* Highlight today's row in the hours modal */
.today-row {
    background-color: #f8f9fa;
    border-left: 3px solid #007bff;
}

/* Restaurant cart styles */
/* #restaurant-checkout-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
}

#restaurant-checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
} */

/* Cart counter */
#cart-counter {
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: none;
    position: absolute;
    top: -5px;
    right: -5px;
}

/* Cart feedback */
#cart-feedback {
    border-radius: 10px;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* WooCommerce cart restaurant info */
.woocommerce-cart-form .restaurant-info,
.woocommerce-checkout-review-order-table .restaurant-info {
    font-size: 0.9em;
    color: #666;
    font-style: italic;
}

/* Restaurant Cards Styling */
.restaurant-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #fff;
    margin-bottom: 30px;
    height: 420px;
    display: flex !important;
    flex-direction: column;
}

.restaurant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #007bff;
}

.card-link {
    text-decoration: none !important;
    color: #333;
}

.restaurant-image-container {
    position: relative;
    height: 180px;
    overflow: hidden;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.restaurant-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.restaurant-card:hover .restaurant-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.restaurant-card:hover .image-overlay {
    opacity: 1;
}

.caption {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.restaurant-name {
    font-size: 2.2rem !important;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
    line-height: 1.3;
}

.description-container {

  height: 4rem !important;
  margin-bottom: 7px;
}

.restaurant-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.restaurant-location,
.restaurant-website {
    font-size: 13px;
    color: #7f8c8d;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

.restaurant-location i,
.restaurant-website i {
    margin-right: 5px;
    color: #95a5a6;
    text-decoration: none;
    color: inherit; /* or your preferred link color */
    display: inline-block;
    vertical-align: bottom;
}


.card-actions {
  padding: 15px;
  background: #fff;
  border-top: 1px solid #eee;
  bottom: 0;
}


.view-menu-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    border-radius: 6px;
    padding: 10px 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.view-menu-btn:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,123,255,0.3);
}

.view-menu-btn i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.view-menu-btn:hover i {
    transform: translateX(3px);
}

.no-results {
    font-size: 18px;
    color: #7f8c8d;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #dee2e6;
}

/* General Styles */
#page-content {
    min-height: 100vh;
}

.container {
    max-width: 1200px;
}


.input-group-addon {
    border-radius: 4px 0 0 4px !important;
    border-right: none !important;
}

.search-input {
    border-radius: 0 4px 4px 0 !important;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: #007bff !important;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
}

.sort-select {
    border-radius: 4px;
    transition: all 0.3s ease;
    appearance: none;
    background: white url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 12px center;
    background-size: 16px;
    padding-right: 40px !important;
}

.sort-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
}


/* Responsive adjustments */
@media (max-width: 767px) {
    .container {
        padding-top: 20px !important;
    }
    
    .restaurant-card {
        height: auto;
        margin-bottom: 20px;
    }
    
    .restaurant-image-container {
        height: 160px;
    }
    
    .caption {
        padding: 15px;
    }
    
    .filter-section .col-xs-12,
    .filter-section .col-xs-8,
    .filter-section .col-xs-4 {
        margin-bottom: 10px;
    }
}

/* Section Title Animation */
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 2px;
}

/* Loading state */
.restaurant-card.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.card-body {
  padding: 15px;
}
/*
.entry-title {
    display: none !important;
}
*/
.form-control.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-error {
    color: #dc3545;
    font-size: 1.5rem;
    margin-top: 0.25rem;
    display: none;
}

/* Error state for custom selectors */
.guest-option.error,
.date-option.error,
.time-option.error {
    border: 2px solid #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Error highlighting for time range picker */
.time-range-picker.error {
    border: 1px solid #dc3545;
    border-radius: 0.375rem;
    padding: 0.5rem;
}

/* General error message */
#generalError {
    margin: 1rem 0;
    text-align: center;
}

/* Add to your CSS */
.time-slot-option.not-available {
  background-color: #f8f9fa;
  color: #6c757d;
  border-color: #dee2e6;
  cursor: not-allowed;
  position: relative;
}

.time-slot-option.not-available::after {
  content: "✗";
  position: absolute;
  top: 5px;
  right: 5px;
  color: #dc3545;
  font-weight: bold;
}

.time-slot-option.available:hover {
  background-color: #e9ecef;
  border-color: #007bff;
}

body:not(.woocommerce-checkout):not(.woocommerce-cart) 
.wp-block-group.has-global-padding.is-layout-constrained.wp-block-group-is-layout-constrained {
    display: none !important;
}



.booking-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.booking-card:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.booking-title {
    font-size: 2.1rem;
    margin: 0;
    color: #333;
}

.booking-status {
    font-size: 1.4rem;
    padding: 4px 0px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 4px;
}

.booking-status.available {
    background: #d4edda;
    color: #155724;
}
.booking-status.booked {
    background: #f8d7da;
    color: #721c24;
}

.table-capacity small {
  font-size: 1.4rem !important;
}

.book-table-btn {
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.3s;
}

.book-table-btn i {
    margin-right: 6px;
}

.book-table-btn:hover {
    background: #0056b3;
}

.book-table-btn.disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Restaurant Checkout Button Styles */
.restaurant-Button {
    background-color: #007bff !important;
    color: white !important;
    border: 2px solid #007bff !important;
    border-radius: 25px !important;
    padding: 12px 24px !important;
    font-weight: 600 !important;
    /* box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3) !important; */
    transition: all 0.3s ease !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 9999 !important;
    position: fixed;
    cursor: pointer;
    display: none;
}

#restaurant-checkout-btn:hover {
    background-color: #007bff !important;
    border-color: #007bff !important;
    transform: translateY(-2px) !important;
    /* box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4) !important; */
}

#restaurant-checkout-btn:active {
    transform: translateY(0) !important;
}

.btn-warning
{
  background-color: #ffc107 !important;
   border-color: #ffc107 !important; /* Darker yellow for border */
   color: #FFF !important;
}

.btn-warning1
{
  color: #ffc107 !important;
  /* border-radius: 10px 10px 0 0 */
}
.btn-close-white
{
  border: none !important;
}

.btn-close-white:hover{
  border: none !important;
  background-color: none !important;
}
/* //media query */




.time-range-picker {
    max-width: 500px;
    margin: 0 auto;
}

.time-range-header {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.time-input-group {
    flex: 1;
    max-width: 200px;
}

.time-input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.time-select {
    width: 100%;
    padding: 2px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    background-color: white;
    transition: border-color 0.3s ease;
}

.time-select:focus {
    outline: none;
    border-color: #007bff;
}

.time-select option:disabled {
    color: #999;
    background-color: #f8f9fa;
}

.selected-time-display {
    background-color: #f8f9fa;
    padding: 8px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
    border: 2px solid #e9ecef;
}

.selected-time-display p {
    margin: 0;
    font-weight: 600;
    font-size: 1.5rem;
    color: #495057;
}

.selected-time-display span {
    color: #007bff;
}

/* Responsive design */
@media (max-width: 768px) {
    .time-range-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .time-input-group {
        max-width: 100%;
    }
}


/* Booking Menu Item Styles */
.booking-col {
    width: 100%;
    margin-bottom: 1.5rem;
}

.booking-item-card {
    background: white;
    border: none;
    border-bottom: 1px solid #dee2e6;
    height: 100%;
}

.booking-card-body {
    padding: 1rem;
}

.booking-row {
    display: flex;
    align-items: center;
    width: 100%;
}

.booking-col-auto {
    flex-shrink: 0;
    margin-right: 0.75rem;
}

.booking-checkbox-wrapper {
    position: relative;
}

.booking-menu-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.booking-col-main {
    flex: 1;
}

.booking-flex-between {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.booking-item-details {
    flex-grow: 1;
    margin-top: 4px;
}

.booking-item-name {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
    color: #212529;
}

.booking-item-description {
    color: #6c757d;
    font-size: 1.6rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.booking-item-price {
    color: #007bff;
    font-weight: bold;
    font-size: 1.6rem;
}

.booking-item-image {
    margin-left: 0.75rem;
    flex-shrink: 0;
}

.booking-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.booking-quantity-section {
    margin-top: 0.75rem;
}

.booking-quantity-controls {
    display: flex;
    align-items: center;
    margin-bottom: 4px;
}

.booking-quantity-label {
    margin-right: 0.5rem;
    margin-bottom: 0;
    font-size: 1.6rem;
}

.booking-quantity-input {
    width: 80px;
    padding: 0.75rem 0.5rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    font-size: 1.25rem;
    background-color: #fff;
}

.booking-quantity-input:disabled {
    background-color: #e9ecef;
    opacity: 0.6;
    cursor: not-allowed;
}

/* Checkbox styling */
.booking-menu-checkbox:checked {
    background-color: #007bff !important;
    border-color: #007bff !important;
}

.booking-menu-checkbox:checked + label::after {
    position: absolute;
    left: 4px;
    top: -2px;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.booking-show {
  opacity: 1 !important;
}

/* .modal-dialog-centered {
  margin: 220px auto !important;
  left: 0 !important;
} */

#primary {
  position: relative !important;
}

/* Responsive design */
@media (max-width: 576px) {
    .booking-flex-between {
        flex-direction: column;
    }
    
    .booking-item-image {
        margin-left: 0;
        margin-top: 0.75rem;
        align-self: flex-start;
    }
    
    .booking-row {
        flex-wrap: wrap;
    }
    
    .booking-col-auto {
        margin-bottom: 0.5rem;
    }
}


/* call modal */

.call-modal {
    text-align: center;
    padding: 20px;
}

.call-modal .modal-title {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.call-modal .mb-40 {
    margin-bottom: 2rem;
}

.call-modal .fa-phone {
    color: #28a745;
    margin-bottom: 1rem;
}

.call-modal h3#callModalPhone {
    color: #333;
    font-size: 1.4rem;
    margin: 0;
}

.call-modal .value-text {
    color: #666;
    margin-bottom: 1rem;
}

.call-modal #callModalHours {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    margin: 1rem 0;
    font-weight: 500;
}

.call-modal .mt-40 {
    margin-top: 2rem;
}

.call-modal .btn-success {
    background: #28a745;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    display: inline-block;
}

.call-modal .btn-outline-secondary {
    background: white;
    border: 1px solid #6c757d;
    padding: 10px 20px;
    border-radius: 5px;
    color: #6c757d;
    cursor: pointer;
}

.call-modal .btn-success:hover {
    background: #218838;
}

.call-modal .btn-outline-secondary:hover {
    background: #f8f9fa;
}


/* hours modal */

.hours-modal {
    padding: 20px;
    text-align: center;
}

.hours-modal .modal-title {
    color: #333;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    max-width: 400px;
}

.hours-table tr {
    border-bottom: 1px solid #e9ecef;
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table td {
    padding: 12px 15px;
    text-align: left;
}

.hours-table .day {
    font-weight: 600;
    color: #333;
    width: 40%;
}

.hours-table .time {
    color: #666;
    text-align: right;
    width: 60%;
}

.hours-table tr:hover {
    background-color: #f8f9fa;
}

/* Close button styling */
.hours-modal .close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hours-modal .close:hover {
    color: #333;
}



/* dirtection modal */

.direction-modal {
    padding: 20px;
    text-align: center;
}

.direction-modal .modal-title {
    color: #333;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.direction-modal .mb-40 {
    margin-bottom: 2rem;
    text-align: left;
}

.direction-modal .key-text {
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.direction-modal .value-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.direction-modal .text-center {
    margin-top: 2rem;
}

.direction-modal .btn-primary {
    background: #007bff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
}

.direction-modal .btn-default {
    background: #6c757d;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    cursor: pointer;
}

.direction-modal .btn-primary:hover {
    background: #0056b3;
}

.direction-modal .btn-default:hover {
    background: #545b62;
}

/* Close button styling */
.direction-modal .close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.direction-modal .close:hover {
    color: #333;
}


