/* Updated global styles to match Next.js design exactly */
/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #f9fafb;
  color: #1f2937;
  line-height: 1.5;
}

.page-container {
  min-height: 100vh;
  background-color: #f9fafb;
}

.content-wrapper {
  /* max-width: 1280px; */
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Updated offers section to match card design */
/* Left Column - Offers Section */
.offers-containers {
  /* height: auto !important; */
  background:#fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 24px;
}
.offers-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 10px;
  /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); */
  height: 100%;
}

.offers-title {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
}

.offer-item {
  margin-bottom: 20px;
}

.offer-item:last-child {
  margin-bottom: 0;
}

.offer-image {
  width: 100%;
  height: 192px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin-bottom: 16px;
}

.btn-know-more {
  width: 100%;
  background-color: #ec1c24;
  color: white;
  border: none;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-bottom: 16px;
}

.btn-know-more:hover {
  background-color: #d01920;
}

/* Updated booking section with proper card styling */
/* Right Column - Booking Section */
.booking-container {
  height: 100%;
}

.booking-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.city-select {
  border: 1px solid #fca5a5;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: #ec1c24;
  background-color: white;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.city-select:focus {
  border-color: #ec1c24;
  box-shadow: none;
  outline: none;
}

.section-title {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
}

/* Enhanced scrollable date selection */
/* Date Selection with Scroll */
.date-scroll-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.date-scroll-container::-webkit-scrollbar {
  display: none;
}

.date-list {
  display: flex;
  gap: 8px;
  padding-bottom: 4px;
}

.date-item {

  min-width: 80px;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  background-color: white;
  transition: all 0.2s;
  flex-shrink: 0;
}

.date-item:hover {
  border-color: #9ca3af;
}

.date-item.active {
  border-color: #ec1c24;
  background-color: #fef2f2;
}

.date-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 4px;
}

.date-icon svg {
  width: 16px;
  height: 16px;
  color: #9ca3af;
}

.date-item.active .date-icon svg {
  color: #ec1c24;
}

.date-number {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #1f2937;
}

.date-item.active .date-number {
  color: #ec1c24;
}

.date-day {
  display: block;
  font-size: 12px;
  color: #6b7280;
}

/* Updated meal type buttons to match design */
/* Meal Type */
.meal-type-container {
  display: flex;
  gap: 8px;
}

.btn-meal-type {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  background-color: #f3f4f6;
  color: #4b5563;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-meal-type:hover {
  background-color: #e5e7eb;
}

.btn-meal-type.active {
  background-color: #fdce27;
  color: #1f2937;
}

/* Enhanced scrollable time selection */
/* Time Selection with Scroll */
.time-scroll-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.time-scroll-container::-webkit-scrollbar {
  display: none;
}

.time-list {
    display: grid;
    grid-template-columns: repeat(8, 1fr); /* Desktop: 8 slots */
    gap: 10px;
}

.time-item {
    padding: 10px 0;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    text-align: center;
    background: white;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: .2s ease;
}

.time-item.active {
    border-color: #e63946;
    background: #ffeaea;
    color: #e63946;
}

/* 🔥 MOBILE FIX — show exactly 4 per row */
@media (max-width: 480px) {
    .time-list {
        grid-template-columns: repeat(4, 1fr); /* Mobile: 4 slots */
        gap: 8px;
    }

    .time-item {
        font-size: 10px;
        padding: 7px 0px;
    }
    .btn-meal-type {
    padding: 4px 10px;
    font-size: 12px;
}
}

.time-item:hover {
  border-color: #9ca3af;
}

/* .time-item.active {
  border-color: #ec1c24;
  background-color: #fef2f2;
  color: #ec1c24;
  font-weight: 600;
} */

/* Updated guest items with proper icon styling */
/* Guest Items */
.guest-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background-color: white;
}
.genei-coin-banner {
    padding: : 10PX ! IMPORTANT;
    background: linear-gradient(90deg, #fff3e0 0%, #f25555 100%);
    border-left: 5px solid #fdce27;
    transition: all 0.3s ease;
}
.guest-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.guest-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  flex-shrink: 0;
}

.veg-icon {
  border: 2px solid #16a34a;
  background-color: white;
  position: relative;
}

.veg-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #16a34a;
}

.nonveg-icon {
  border: 2px solid #dc2626;
  background-color: white;
  position: relative;
}

.nonveg-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #dc2626;
}

.kids-icon,
.student-icon,
.supersix-icon {
  background-color: #fdce27;
  position: relative;
}

.kids-icon::after,
.student-icon::after,
.supersix-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: white;
}

.guest-label {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
}

.guest-price {
  font-size: 12px;
  color: #6b7280;
}

.btn-add {
  padding: 1px 20px;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background-color: white;
  color: #1f2937;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-add:hover {
  background-color: #f9fafb;
}

.guest-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-counter {
  width: 32px;
  height: 32px;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  background-color: white;
  color: #1f2937;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.btn-counter:hover {
  background-color: #f9fafb;
}

.guest-count {
  font-size: 14px;
  font-weight: 600;
  min-width: 24px;
  text-align: center;
}

/* Updated coupon section to match design */
/* Coupon Section */
.coupon-section {
  border: 1px dashed #d1d5db;
  border-radius: 8px;
  padding: 15px !important;
}

.coupon-info {
  flex: 1;
}

.coupon-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.coupon-icon {
  color: #6b7280;
}

.coupon-title {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
}

.applied-coupon-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #16a34a;
  margin-top: 4px;
}

.btn-remove-coupon {
  background: none;
  border: none;
  color: #dc2626;
  cursor: pointer;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.btn-remove-coupon:hover {
  color: #991b1b;
}

.coupon-subtitle {
  font-size: 12px;
  color: #6b7280;
}

.coupon-note {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 2px;
}

.btn-apply-coupon {
  padding: 0px 11px !important;
  background-color: transparent;
  border: none;
  color: #ec1c24;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s;
  white-space: nowrap;
}

.btn-apply-coupon:hover {
  color: #fff;
}

/* Updated coupon modal styling */
/* Coupon Modal */
.coupon-modal-content {
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.coupon-modal-header {
  border-bottom: 1px solid #e5e7eb;
  padding: 20px 24px;
}

.coupon-modal-title {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
}

.coupon-modal-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 16px;
}

.coupon-input-group {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.coupon-input-field {
  flex: 1;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
  text-transform: uppercase;
}


.coupon-input-field:focus {
  border-color: #ec1c24;
  box-shadow: none;
  outline: none;
}

.btn-coupon-apply {
  background-color: #ec1c24;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-coupon-apply:hover {
  background-color: #d01920;
}

.validation-message {
  font-size: 12px;
  margin-bottom: 16px;
}

.validation-message.success {
  color: #16a34a;
}

.validation-message.error {
  color: #dc2626;
}

.coupons-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 400px;
  overflow-y: auto;
}

.coupon-card {
  padding: 16px;
  border: 2px dashed #d1d5db;
  border-radius: 8px;
  transition: border-color 0.2s;
  cursor: pointer;
}

.coupon-card:hover {
  border-color: #ec1c24;
}

.coupon-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.coupon-card-code-section {
  display: flex;
  align-items: center;
  gap: 8px;
}

.coupon-card-icon {
  color: #ec1c24;
}

.coupon-card-code {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
}

.coupon-card-discount {
  font-size: 16px;
  font-weight: 700;
  color: #ec1c24;
}

.coupon-card-description {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 12px;
}

.btn-coupon-select {
  width: 100%;
  background-color: #ec1c24;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-coupon-select:hover {
  background-color: #d01920;
}

.btn-coupon-select:disabled {
  background-color: #9ca3af;
  cursor: not-allowed;
}

/* Show Estimate Button */
.btn-show-estimate {
  width: 100%;
  padding: 16px;
  background-color: #ec1c24;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-show-estimate:hover {
  background-color: #d01920;
}

/* Estimated Price */
.estimated-price {
  padding: 0;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.price-label {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
}

.price-amount {
  font-size: 24px;
  font-weight: 700;
  color: #ec1c24;
}

.price-note {
  font-size: 11px;
  color: #9ca3af;
}

/* Occasion */
.occasion-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.btn-occasion {
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 10px 18px;
  margin: 6px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.btn-occasion:hover {
  border-color: #ff4d4d;
  color: #ff4d4d;
}

/*  Active / Selected Style */
.btn-occasion.active {
  background: #ff4d4d;
  color: #fff;
  border-color: #ff1a1a;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.7),
              0 0 10px rgba(255, 0, 0, 0.4),
              0 0 10px rgba(255, 0, 0, 0.2);
  transform: scale(1.05);
}

/* Optional: Smooth "click" animation */
.btn-occasion:active {
  transform: scale(0.97);
}


/* Contact Details */
.contact-label {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 8px;
}

.contact-input,
.contact-textarea {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: #ec1c24;
  box-shadow: none;
  outline: none;
}

/* Action Buttons */
.btn-advance-pay {
  width: 100%;
  height: 100%;
  padding: 16px;
  background-color: #ec1c24;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s;
  text-align: center;
}

.btn-advance-pay:hover {
  background-color: #d01920;
}

.advance-pay-main {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.advance-pay-note {
  font-size: 12px;
  opacity: 0.9;
}

.btn-book-table {
  width: 100%;
  height: 100%;
  padding: 16px;
  background-color: #ec1c24;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-book-table:hover {
  background-color: #d01920;
}

/* Responsive Design */
@media (max-width: 991px) {
  .offers-card {
    margin-bottom: 24px;
  }
}

@media (max-width: 768px) {
  .content-wrapper {
    padding: 1rem 0.5rem;
  }

  .booking-card {
    padding: 16px;
  }

  .section-title {
    font-size: 15px;
  }
  .btn-apply-coupon {
    height: 28px !important;
  }
  .btn-show-estimate {
        padding: 10px !important;
  }
  .date-item {
    padding-top: 14px !important;
    font-size: 12px;
    min-width: 70px;
    padding: 4px;
  }

.guest-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background-color: white;
}

  .offer-badge {
      padding: 0px 3px !important;
      font-size: 10px !important;
      border-radius: 4px !important;
  }
  .time-item {
    min-width: 80px;
    padding: -1px 12px;
  }
}

.price-offer {
  color: #d32f2f;
  font-weight: 600;
}
.price-original {
  color: #999;
  text-decoration: line-through;
  margin-left: 3px;
}


/* date scroll arrow */
.price-summary {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px;
  margin-top: 10px;
  font-size: 14px;
}

.price-summary .price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.price-summary .total {
  font-size: 16px;
  color: #ec1c24;
}

.text-success {
  color: #16a34a;
}

.estimate-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
}

.btn-advance-pay,
.btn-reserve-table {
  flex: 1;
  padding: 14px 0;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  transition: 0.2s;
}

.btn-advance-pay {
  background-color: #ec1c24;
}

.btn-reserve-table {
  background-color: #ec1c24;
}

.btn-advance-pay:hover,
.btn-reserve-table:hover {
  background-color: #d01920;
}

.coupon-card {
  border: 2px dashed #ddd;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 15px;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.coupon-header {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
}
.coupon-code {
  font-weight: 700;
  font-size: 16px;
  color: #d32f2f;
}
.coupon-text {
  font-size: 13px;
  color: #555;
  margin: 2px 0 0;
}
.coupon-discount {
  font-weight: bold;
  font-size: 18px;
  color: #e53935;
}
.btn-apply-coupon {
  background-color: #e53935;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.btn-apply-coupon:hover {
  background-color: #b71c1c;
}

.coupon-section {
  border: 1px dashed #ddd;
  border-radius: 8px;
}

.coupon-icon {
  color: #d32f2f;
}

.btn-apply-coupon {
  white-space: nowrap;
  height: 38px !important;
  padding: 0 16px;
  border-radius: 6px;
}



.coupon-info {
  flex: 1;
  min-width: 200px;
}

.applied-coupon-text {
  color: green;
  font-weight: 600;
}

.btn-remove-coupon svg {
  stroke: red;
  cursor: pointer;
}

/* //show estmatimate css */
.fade-section {
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  visibility: hidden;
}

.fade-section.show {
  opacity: 1;
  visibility: visible;
}

.btn-show-estimate {
  transition: opacity 0.3s ease;
}

/* / GeneiCoinsCSs/ */

.genei-coin-banner {
  padding: 10px !important;
  background: linear-gradient(90deg, #fff3e0 0%, #f25555 100%);
  border-left: 5px solid #fdce27;
  transition: all 0.3s ease;
}
.genei-coin-banner:hover {
  background: linear-gradient(90deg, #fff3e0 0%, #ff0101 100%);
  transform: translateY(-2px);
}

/* coupon css */
.coupon-card {
  border: 2px dashed #ffb3b3;
  background: #fffdfd;
  transition: all 0.2s ease-in-out;
}
.coupon-card:hover {
  background: #fffdf5;
  transform: translateY(-2px);
}
.coupon-info h6 {
  color: #d32f2f;
}
.coupon-info p {
  font-size: 13px;
}
.btn-block {
  width: 100%;
}
#couponModal .modal-content {
  border-radius: 10px;
  overflow: hidden;
}

/* new bboking otp modal css */
/* Modal fade animation */
.otp-modal .modal-dialog {
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.35s ease-out;
}

.otp-modal.show .modal-dialog {
  transform: translateY(0);
  opacity: 1;
}

/* Card UI */
.otp-card {
  padding: 35px 25px;
  border-radius: 18px;
  border: none;
  position: relative;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
  animation: fadeScale 0.3s ease-out;
}

@keyframes fadeScale {
  from { transform: scale(0.95); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* Close button */
.otp-close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  border: none;
  background: #fff;
  font-size: 26px;
  font-weight: 500;
  cursor: pointer;
  color: #555;
  transition: 0.2s ease;
}

.otp-close-btn:hover {
  color: #e74c3c;
}

/* Title + subtitle */
.otp-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.otp-subtitle {
  font-size: 13px;
  color: #7a7a7a;
  margin-bottom: 20px;
}

/* OTP Input Box */
.otp-input-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

/* .otp-input {
  width: 176px;
  font-size: 26px;
  text-align: center;
  padding: 12px;
  letter-spacing: 10px;
  border-radius: 14px;
  border: 2px solid #ececec;
  outline: none;
  transition: 0.25s ease-in-out;
  background: #f9f9f9;
} */

.otp-input:focus {
  border-color: #d9534f;
  background: #fff;
  box-shadow: 0 0 12px rgba(217, 83, 79, 0.2);
}

/* Status text */
.otp-status {
  font-size: 13px;
  margin-bottom: 12px;
  color: #555;
  height: 18px;
}

/* Resend Button */
/* .otp-resend-btn {
  width: 100%;
  border: 1px solid #e74c3c;
  border-radius: 10px;
  padding: 8px;
  font-size: 14px;
  color: #e74c3c;
  background: transparent;
  transition: 0.25s ease-in-out;
  margin-bottom: 18px;
} */

.otp-resend-btn:not([disabled]):hover {
  background: #fdecec;
}

/* Pulse effect when counting */
.otp-resend-btn.disabled-pulse {
  animation: pulse 1s infinite ease-in-out;
}

@keyframes pulse {
  0% { opacity: 0.60; }
  50% { opacity: 1; }
  100% { opacity: 0.60; }
}

/* Confirm Button */
.otp-confirm-btn {
  width: 100%;
  background: #d9534f;
  color: white;
  font-size: 16px;
  padding: 12px;
  border-radius: 12px;
  border: none;
  transition: 0.25s ease;
}

.otp-confirm-btn:hover {
  background: #c94542;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(217, 83, 79, 0.3);
}

/* ========================================
   PREMIUM OCCASION BUTTONS
   ======================================== */
   /* ============================
      OCCASION BUTTONS (same classes)
      ============================ */
   .occasion-list {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
   }

   .btn-occasion {
     background: #ffffff;
     border: 2px solid #e5e7eb;
     padding: 3px 18px;
     border-radius: 12px;
     font-size: 15px;
     font-weight: 600;
     color: #444;
     cursor: pointer;
     transition: 0.25s ease;
     box-shadow: 0 4px 10px rgba(0,0,0,0.06);
     position: relative;
     overflow: hidden;
   }

   /* Hover */
   .btn-occasion:hover {
     border-color: #ff6b6b;
     color: #ff6b6b;
     background: #fff7f7;
     transform: translateY(-3px);
     box-shadow: 0 8px 20px rgba(255, 90, 90, 0.2);
   }

   /* Selected */
   .btn-occasion.active {
     background: linear-gradient(135deg, #ffbaba 0%, #ff5c5c 100%);
     border-color: #ff5c5c;
     color: #fff;
     transform: scale(1.06);
     box-shadow: 0 10px 25px rgba(255,80,80,0.35);
   }

   /* Glow effect */
   .btn-occasion.active::after {
     content: "";
     position: absolute;
     top: -6px;
     left: -6px;
     right: -6px;
     bottom: -6px;
     border-radius: 14px;
     background: rgba(255, 87, 87, 0.18);
     filter: blur(12px);
     z-index: -1;
     animation: glowOcc 0.45s ease-out;
   }

   @keyframes glowOcc {
     0% { opacity: 0; transform: scale(0.85); }
     100% { opacity: 1; transform: scale(1); }
   }

   /* ============================
      CONTACT INPUTS
      ============================ */
   .contact-input {
     width: 100%;
     padding: 14px;
     border-radius: 12px !important;
     border: 1px solid #e5e7eb;
     background: #f8f8f8;
     font-size: 15px;
     transition: 0.25s ease;
   }

   .contact-input:focus {
     background: #fff;
     border-color: #ff4e4e;
     box-shadow: 0 0 0 4px rgba(255, 77, 77, 0.18);
     outline: none;
   }

   /* ============================
      CONTACT TEXTAREA
      ============================ */
   .contact-textarea {
     width: 100%;
     padding: 15px;
     border-radius: 14px !important;
     border: 1px solid #e5e7eb;
     background: #f8f8f8;
     transition: 0.25s ease;
   }

   .contact-textarea:focus {
     background: #fff;
     border-color: #ff4e4e;
     box-shadow: 0 0 0 4px rgba(255, 77, 77, 0.18);
     outline: none;
   }

   /* ============================
      BOOK BUTTON
      ============================ */
   .btn-book-table {
     width: 100%;
     padding: 18px;
     background: linear-gradient(90deg, #ff4d4d, #d93030);
     color: white;
     border: none;
     border-radius: 14px;
     font-size: 18px;
     font-weight: 700;
     cursor: pointer;
     transition: 0.3s ease;
     box-shadow: 0 5px 18px rgba(255, 87, 87, 0.28);
   }

   .btn-book-table:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 26px rgba(217,48,48,0.45);
   }

   .btn-book-table:active {
     transform: scale(0.97);
   }

   /******************************
    PREMIUM OFFER CARD (STATIC)
   *******************************/
   /*************************************************
   ULTIMATE OFFER CARD — LEVEL 2 PREMIUM ANIMATION
**************************************************/
.offer-card-ultimate {
  position: relative;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 25px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.45);
  overflow: hidden;
  cursor: pointer;
  animation: fadePop 0.8s ease both;
  transform-style: preserve-3d;
  box-shadow: 0 25px 45px rgba(0,0,0,0.08);
}

/*************** Slow Floating Animation ****************/
.offer-card-ultimate {
  animation: fadePop 0.8s ease both, floatUpDown 6s ease-in-out infinite;
}

@keyframes floatUpDown {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/*************** NEON EDGE GLOW ON HOVER ****************/
.offer-card-ultimate:hover {
  box-shadow: 0 0 25px rgba(255,70,70,0.7),
              0 0 60px rgba(255,140,80,0.35);
  border-color: rgba(255,70,70,0.7);
  transform: scale(1.03);
}

/*************** BACKGROUND GLOW ****************/
.offer-glow {
  position: absolute;
  top: -40%;
  left: -10%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
      circle at center,
      rgba(255,90,90,0.35),
      rgba(255,150,90,0.20),
      rgba(255,255,255,0) 70%
  );
  filter: blur(80px);
  z-index: -1;
  opacity: 0.5;
  transition: 0.4s ease;
}

.offer-card-ultimate:hover .offer-glow {
  opacity: 0.75;
  transform: scale(1.1);
}

/*************** PARTICLES — PREMIUM SPARKLE EFFECT ****************/
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.9) 1px, transparent 1px);
  background-size: 6px 6px;
  opacity: 0.20;
  animation: sparkleMove 10s linear infinite;
}

@keyframes sparkleMove {
  from { background-position: 0 0; }
  to { background-position: 160px 160px; }
}

/*************** IMAGE BOX ****************/
.offer-img-box {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  transform: translateZ(55px);
}

.offer-img {
  width: 100%;
  border-radius: 18px;
  transition: transform .6s cubic-bezier(.19,1,.22,1);
}

.offer-card-ultimate:hover .offer-img {
  transform: scale(1.10);
}

/*************** SHINE EFFECT ****************/
.img-shine {
  position: absolute;
  top: 0;
  left: -150%;
  width: 120%;
  height: 100%;
  background: linear-gradient(120deg,
              transparent,
              rgba(255,255,255,0.6),
              transparent);
  transform: skewX(-20deg);
  transition: 0.7s ease;
}

.offer-card-ultimate:hover .img-shine {
  left: 120%;
}

/*************** CONTENT ****************/
.offer-info {
  transform: translateZ(60px);
  margin-top: 18px;
}

.offer-title {
  font-size: 22px;
  font-weight: 500;
  color: #222;
}

.offer-desc {
  font-size: 15px;
  color: #555;
  margin-top: 8px;
  line-height: 1.5;
}

/*************** BUTTON ****************/
.offer-btn-box {
  text-align: right;
  margin-top: 15px;
}

.offer-btn {
  background: linear-gradient(90deg, #ff3838, #ff8b38);
  padding: 10px 26px;
  border-radius: 32px;
  border: none;
  color: white;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(255,80,80,0.35);
}

.offer-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 28px rgba(255,80,80,0.45);
}

/*************** BUTTON RIPPLE ***************/
.offer-btn::after {
  content: "";
  position: absolute;
  width: 160%;
  height: 160%;
  top: 50%;
  left: 50%;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 0.6s linear;
}

.offer-btn:hover::after {
  transform: translate(-50%, -50%) scale(1.2);
}

/*************** ENTRANCE ANIMATION ****************/
@keyframes fadePop {
  0% { opacity: 0; transform: translateY(25px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* offer card title css */
.offers-title-premium {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(90deg, #ff4d4d, #ffa54d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  animation: glowTitle 1.5s infinite alternate ease-in-out;
}

@keyframes glowTitle {
  from { filter: drop-shadow(0 0 0px rgba(255, 90, 90, 0.3)); }
  to   { filter: drop-shadow(0 0 6px rgba(255, 140, 140, 0.6)); }
}


/* ============================================================
   LEVEL 4 PREMIUM ANIMATION PACK  (ALL-IN-ONE)
   Works on:
   - .btn-apply-coupon
   - .btn-show-estimate
   - .coupon-section
   - #appliedCouponDisplay
   - .estimated-price
   - .price-row span
   ============================================================ */


/* ------------------------------------------------------------
   1) APPLY COUPON BUTTON — Premium Pulse + Shine + Ripple
------------------------------------------------------------ */
.btn-apply-coupon {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    font-weight: 700;
    /* animation: btnPulse 2s infinite cubic-bezier(.4,0,.2,1); */
    transition: 0.25s ease;
}

/* Pulse glow */
@keyframes btnPulse {
    0%   { transform: scale(1);   box-shadow: 0 0 0 rgba(255,50,50,0); }
    50%  { transform: scale(1.05);box-shadow: 0 0 18px rgba(255,50,50,0.55); }
    100% { transform: scale(1);   box-shadow: 0 0 0 rgba(255,50,50,0); }
}

/* Shine swipe */
.btn-apply-coupon::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent, rgba(255,255,255,0.5), transparent);
    transform: translateX(-150%) skewX(-20deg);
    transition: 0.7s ease-in-out;
}

.btn-apply-coupon:hover::after {
    transform: translateX(160%) skewX(-20deg);
}

/* Shockwave ripple */
.btn-apply-coupon::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid rgba(255,255,255,0.4);
    opacity: 0;
    transform: scale(0.7);
    pointer-events: none;
}

.btn-apply-coupon:hover::before {
    opacity: 1;
    transform: scale(1.4);
    transition: .4s cubic-bezier(.2,1,.2,1);
}


/* ------------------------------------------------------------
   2) SHOW ESTIMATE BUTTON — Premium Float + Shine
------------------------------------------------------------ */
.btn-show-estimate {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    animation: estimateFloat 3s ease-in-out infinite;
    transition: .3s ease;
}

@keyframes estimateFloat {
    0%   { transform: translateY(0px); box-shadow: none; }
    50%  { transform: translateY(-4px); box-shadow: 0 6px 14px rgba(0,0,0,0.15); }
    100% { transform: translateY(0px); box-shadow: none; }
}

/* Shine swipe */
.btn-show-estimate::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: translateX(-160%) skewX(-25deg);
    transition: .8s ease;
}

.btn-show-estimate:hover::after {
    transform: translateX(170%) skewX(-25deg);
}


/* ------------------------------------------------------------
   3) ESTIMATE PRICE BOX — Smooth Fade + Slide
------------------------------------------------------------ */
.estimated-price {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.45s ease;
}

.estimated-price.show {
    opacity: 1;
    transform: translateY(0);
}


/* ------------------------------------------------------------
   4) COUPON SECTION (Hover Lift + Soft Highlight)
------------------------------------------------------------ */
.coupon-section {
    position: relative;
    transition: .35s ease;
    padding: 10px !important;
}

.btn-apply-coupon {
  white-space: nowrap;
  height: 28px;
  padding: 0 16px;
  border-radius: 6px;
}
.coupon-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    border-radius: 12px;
}


/* ------------------------------------------------------------
   5) APPLIED COUPON TAG — Slide + Fade Reveal
------------------------------------------------------------ */
#appliedCouponDisplay {
    animation: fadeSlide 0.55s ease forwards;
}

@keyframes fadeSlide {
    0%   { opacity: 0; transform: translateY(-6px); }
    100% { opacity: 1; transform: translateY(0); }
}


/* ------------------------------------------------------------
   6) PRICE ROW VALUES — Soft Glow on Hover
------------------------------------------------------------ */
.price-row span {
    transition: 0.3s ease;
}

.price-row span:hover {
    text-shadow: 0 0 10px rgba(255,50,50,0.4);
}


/* ------------------------------------------------------------
   7) SMOOTH GLOBAL UI MOTION
------------------------------------------------------------ */
button, .offer-card, .guest-item, .coupon-card {
    transition: 0.3s ease;
}


/* dropdown  css for ocation in mobile view */
/* MOBILE DROPDOWN HEADER */
/* MOBILE DROPDOWN HEADER */
.mobile-occasion-header {
  padding: 7px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  margin-bottom: 8px;
}

/* COLLAPSING BOX */
.mobile-occasion-box {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.mobile-occasion-box.open {
  max-height: 300px; /* enough height for list */
}

.mobile-occasion-list {
  padding: 10px 6px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-occasion-list .btn-occasion.active {
  background: #d32f2f;
  color: #fff;
  border-color: #d32f2f;
}

/* offer bandge css for date  */
.date-item {
    position: relative;
}
.offer-badge {
    background: #e6f9ee;
    color: #0fad5a;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 6px;
    position: absolute;
    top: -5px;
    right: -5px;
    font-weight: 600;
    border: 1px solid #bdf4d3;
}

/* for ebd and pbd badge */
.slot-badge {
    margin-top: 4px;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    display: inline-block;
    font-weight: 600;
}

.slot-badge.ebd {
    background: #d5f5d5;
    color: #0a950a;
}

.slot-badge.pbd {
    background: #dce9ff;
    color: #0a49c9;
}

/* date scrolling and arror css */
.date-scroll-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.date-scroll-container {
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
}

.date-scroll-container::-webkit-scrollbar {
    display: none;
}

.scroll-btn {
    background: #ffffff;
    border: 1px solid #ddd;
    color: #333;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s ease;
}

.scroll-btn:hover {
    background: #f5f5f5;
}

.date-list {
    display: flex;
    gap: 12px;
    padding: 10px 0;
}

/* Mobile: show slots as 4 in one row */
/* @media (max-width: 768px) {
    .time-list {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        overflow-x: visible !important;
        padding: 0 !important;
    }

    .time-item {
        width: 100% !important;
        text-align: center;
        padding: 10px 6px;
        font-size: 13px;
        border-radius: 10px;
        white-space: nowrap;
    }

    .time-scroll-container {
        overflow-x: visible !important;
    }
} */

/* deal modal css */
.deal-dialog {
    max-width: 650px !important;     /* Wider modal */
    width: 95%;
}

.custom-deal-modal .modal-content {
    border-radius: 22px !important;
    border: none;
    padding-bottom: 10px;
}

/* Add soft drop-shadow */
.custom-deal-modal .modal-dialog {
    filter: drop-shadow(0px 12px 40px rgba(0,0,0,0.25));
}

/* Background blur overlay */
.modal-backdrop.show {
    opacity: 0.7 !important;
    backdrop-filter: blur(6px);
}

/* =============================
   ENHANCED ZOOM ANIMATION
============================= */
.animated-modal {
    animation: modalZoom 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalZoom {
    0% { transform: scale(0.85); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* =============================
    HEADER UI
============================= */
.deals-header {
    padding: 20px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.deals-title {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-btn-custom {
    background: #ffeaea;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 22px;
    line-height: 36px;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}
.close-btn-custom:hover {
    background: #ffdddd;
}

/* =============================
    DEAL CARD UI
============================= */
.deal-card {
    border-radius: 16px;
    box-shadow: 0px 5px 18px rgba(0,0,0,0.09);
    overflow: hidden;
    margin: 18px 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.deal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 10px 28px rgba(0,0,0,0.14);
}

.deal-card-header {
    padding: 16px 22px;
    background: linear-gradient(90deg, #ff4d4d, #ff9e21);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.deal-code {
    font-size: 19px;
    font-weight: 700;
}

.best-deal-badge {
    background: rgba(255,255,255,0.95);
    color: #ff4747;
    padding: 5px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: bold;
}

/* Description */
.deal-desc {
    padding: 18px 22px;
    color: #444;
    font-size: 16px;
    line-height: 1.4;
}

/* toast message for remove coupon ------------------------------------------ */
.custom-toast {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #e53935;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 9999;
}

.custom-toast.show {
  opacity: 1;
  top: 85px;
}

#timeList p {
  white-space: nowrap;       /* prevents line break */
}

.otp-card {
  padding: 35px 25px;
  border-radius: 16px;
  position: relative;
  text-align: center;
}

.otp-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  color: #555;
  cursor: pointer;
}

.otp-title {
  font-size: 26px;
  font-weight: 700;
  color: #1d2433;
}

.otp-subtitle {
  color: #888;
  margin-bottom: 25px;
}

.otp-input-wrapper {
  margin: 20px 0;
}

/* .otp-input {
  width: 70%;
  padding: 14px;
  border-radius: 14px;
  border: 2px solid #eaeaea;
  font-size: 18px;
  text-align: center;
  outline: none;
} */

.otp-status {
  margin-top: 12px;
  font-size: 15px;
  color: #5a5a5a;
}

/* Confirm Button */
.otp-confirm-btn {
  width: 100%;
  background: #d32f2f;
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
  cursor: pointer;
}

/* Resend Button */
/* .otp-resend-btn {
  width: 100%;
  background: #fff;
  border: 2px solid #e53935;
  color: #e53935;
  padding: 14px 0;
  border-radius: 40px;
  font-size: 18px;
  margin-top: 15px;
  cursor: pointer;
} */

/* Disabled state */
.otp-resend-btn.disabled {
  pointer-events: none;
  color: #f2b8b5;
  border-color: #f2b8b5;
}

/* Make OTP modal match Login modal */
.otp-modal .modal-dialog {
  max-width: 600px;
}

.otp-card {
  padding: 25px 30px !important;
  border-radius: 16px;
  text-align: center;
}

/* Title like Login */
.otp-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Subtitle */
.otp-subtitle {
  font-size: 16px;
  color: #888;
  margin-bottom: 20px;
}

/* OTP input match phone input */
.otp-input {
  width: 100%;
  background: #f3f3f3;
  border: none;
  border-radius: 12px;
  padding: 16px 14px;
  font-size: 18px;
  text-align: left;
  outline: none;
}

/* Remove big rounded box look */
.otp-input-wrapper {
  margin: 0 0 20px 0;
}

/* Confirm button same as Continue */
.otp-confirm-btn {
  width: 100%;
  background: #d32f2f;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px;
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
}

/* Resend button simplified like second image */
.otp-resend-btn {
  margin-top: 20px;
  background: transparent;
  color: #d32f2f;
  border-radius: 50px;
  width: 100%;
  font-size: 17px;
}

/* Close icon same placement */
.otp-close-btn {
  top: 14px;
  right: 20px;
  font-size: 26px;
}

/* Status text same style */
.otp-status {
  font-size: 15px;
  color: #666;
  margin-bottom: 10px;
}
