	body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #000;
  color: #eee;
}








#chatWidget {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 300px;
  height: 520px;
  max-height: 500px;

  /* Glassmorphism Effect */
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  /* Neon Border + Glow */
  border: 1px solid rgba(0, 191, 255, 0.25);
  box-shadow:
    0 0 12px rgba(0, 191, 255, 0.5),
    0 0 30px rgba(0, 191, 255, 0.2);

  overflow: hidden;
  z-index: 9999;
}













#dealOptionsContainer {
  transform: scale(0.93);         /* Shrinks the whole block slightly */
  transform-origin: top center;   /* Keeps it aligned from the top */
}




@media (max-width: 768px) {
  #chatWidget {
    width: 80vw;
    height: 70vh;
    bottom: 0;
    right: 0;
    border-radius: 0;
    max-height: none;
  }

  .carousel-track img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  iframe {
    height: 180px;
  }

  .container {
    padding: 12px;
  }
}















.header {
  background: #222;
  padding: 16px;
  font-size: 18px;
  font-weight: bold;
  color: #0bf;
  display: flex;
  justify-content: space-between;
}

iframe {
  width: 100%;
  height: 200px;
  border: none;
}

.carousel-container {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: scroll-left-to-right 10s linear infinite;
}

.carousel-track img {
  width: 320px;
  height: 160px;
  margin-right: 10px;
  border-radius: 8px;
}

@keyframes scroll-left-to-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

#quickActionButtons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px;
  justify-content: center;
  background: #111;
}

#quickActionButtons button {
  padding: 4px 8px;
  font-size: 12px;
  background: #0bf;
  color: #111;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px;
  box-sizing: border-box;
}


.container * {
  max-width: 100%;
  box-sizing: border-box;
}



.step {
  display: none;
  background: #222;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 15px;
  border: 1px solid #333;
}

textarea,
input {
  width: 100%;
  background: #111;
  border: 1px solid #444;
  color: #eee;
  padding: 8px;
  border-radius: 6px;
  margin-bottom: 8px;
}

button.standard,
.container button[type="submit"] {
  margin-top: 8px;
  background: #0bf;
  color: #111;
  border: none;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
}

#typing {
  font-style: italic;
  color: #aaa;
  margin: 10px 0;
}

.panel {
  display: none;
  height: 100%;
}

.panel.active {
  display: block;
}

.error {
  color: red;
  font-size: 12px;
  display: none;
}

.highlight-box {
  background: #222;
  border: 1px solid #0bf;
  padding: 10px;
  border-radius: 8px;
  margin: 10px 0;
  text-align: center;
}

.emoji-title {
  font-size: 16px;
  margin-bottom: 6px;
}



.deal-card {
  background: #333;
  padding: 10px;
  margin: 10px 0;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #555;
}

.deal-btns button {
  margin: 5px 8px;
  padding: 8px 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.deal-btns .cod {
  background: #0f0;
  color: #000;
}

.deal-btns .prepaid {
  background: #0bf;
  color: #fff;
}

.stock-warning {
  color: #f00;
  font-weight: bold;
  font-size: 13px;
  margin-top: 4px;
  background: #300;
  padding: 4px 6px;
  display: inline-block;
  border-radius: 6px;
}

.delay-message {
  font-style: italic;
  color: #ff0;
  margin: 12px 0;
  text-align: center;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.6; }
  100% { opacity: 1; }
}



/*/* ✅ Booking Overlay inside chatbot panel */
.booking-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.booking-form {
  width: 96%;
  max-width: 540px;
  background: #222;
  color: white;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 0 4px #0bf;
  overflow-y: auto;
  max-height: 95%;
  position: relative;
  border: 1px solid #0bf;
}

.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.booking-header h2 {
  font-size: 18px;
  margin: 0;
  color: #0bf;
}

.minimize-btn, .close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
  margin-left: 10px;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid #0bf;
  background: #111;
  color: white;
}

.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: #0bf;
}

.payment-mode-container {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.booking-form select {
  width: 100%;
  margin-bottom: 10px;
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid #0bf;
  background-color: #111;
  color: white;
  font-size: 16px;
  font-family: inherit;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}



.booking-form select:invalid {
  color: #aaa; /* Matches input placeholder color */
}




.payment-btn {
  flex: 1;
  padding: 10px;
  background: #222;
  color: #fff;
  border: 1px solid #444;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  text-align: center;
}

.payment-btn.selected {
  background-color: #4caf50 !important;
  border-color: #4caf50 !important;
  color: #fff !important;
}

.policy-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
  margin: 10px 0;
}

.policy-links a {
  color: #0bf;
  text-decoration: underline;
}


.policy-acceptance {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  font-size: 14px;
  color: #ccc;
  gap: 8px;
}

.policy-acceptance input[type="checkbox"] {
  transform: scale(1.2);
  accent-color: #0bf;
  margin: 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-top: 5px;
}

.checkbox-label input[type="checkbox"] {
  transform: scale(1.1);
  margin-right: 6px;
}

.booking-form .submit-btn {
  background: #0bf;
  color: white;
  border: none;
  padding: 10px;
  width: 100%;
  margin-top: 12px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

#restoreBookingFormBtn {
  display: none;
  background: black;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  margin: 10px auto;
  display: block;
  width: fit-content;
}

@media (max-width: 600px) {
 


 .booking-form {
    width: 96%;
    padding: 16px;
  }

 


 .payment-mode-container {
    flex-direction: column;
  }

 .policy-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  margin-top: 20px;
  color: #0bf;
}
}






button.standard,
.container button[type="submit"] {
  margin-top: 8px;
  background: #0bf;
  color: #111;
  border: none;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
}


.fancy-deal-card {
  background: linear-gradient(to bottom right, #111, #1a1a1a);
  border: 1px solid #333;
  border-radius: 10px;
  padding: 10px;
  margin: 10px auto;
  max-width: 100%;
  box-shadow: 0 0 8px rgba(0, 191, 255, 0.1);
  font-size: 13px;
}

.fancy-deal-card .deal-title {
  font-size: 15px;
  font-weight: bold;
  color: #0bf;
  text-align: center;
  margin-bottom: 4px;
  text-shadow: 0 0 4px #0bf;
}

.fancy-deal-card .deal-tip {
  font-size: 11px;
  color: #aaa;
  text-align: center;
  margin-bottom: 8px;
  font-style: italic;
}

.fancy-deal-card .deal-price-box {
  background: #000;
  border: 1px solid #0bf;
  border-radius: 8px;
  padding: 8px;
  text-align: center;
  margin-bottom: 8px;
}

.fancy-deal-card .deal-label {
  font-size: 12px;
  color: #ccc;
  margin-right: 4px;
}

.fancy-deal-card .deal-price {
  font-size: 18px;
  font-weight: bold;
  color: #0f0;
  text-shadow: 0 0 2px #0f0;
}

.fancy-deal-card .deal-btns {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fancy-deal-card .standard {
  padding: 8px;
  font-size: 13px;
}


#dealOptionsContainer {
  transform: scale(0.93);
  transform-origin: top center;
  max-height: 380px;
  overflow-y: auto;
  padding-right: 8px;
  scroll-behavior: smooth;
}












.fancy-deal-card {
  background: linear-gradient(to bottom right, #0a0a0a, #111);
  border: 1.5px solid #00bfff;
  border-radius: 14px;
  padding: 14px 16px;
  margin: 8px 0;
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.25);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.fancy-deal-card:hover {
  transform: scale(1.01);
  box-shadow: 0 0 16px rgba(0, 191, 255, 0.4);
}

.reminder-highlight-box {
  font-size: 13px;
  padding: 10px;
  background: #0a0a0a;
  border: 1px solid #00bfff;
  border-radius: 10px;
  color: #0bf;
  text-align: center;  /* Center-align content */
  max-width: 100%;
  margin: 10px 0;
  box-shadow: 0 0 4px rgba(0, 191, 255, 0.3);
  line-height: 1.4;
}

.reminder-deal-highlight {
  font-weight: bold;
  font-size: 16px;
  color: #0f0;
  text-shadow: 0 0 4px #0f0;
  margin-bottom: 4px;
}

.reminder-cta-message {
  color: #0bf;
  font-size: 12px;
  margin-bottom: 2px;
}

.reminder-valid-till {
  color: red;
  font-size: 12px;
  margin-bottom: 8px;
  animation: blinkRed 1s infinite;  /* Blinking animation */
}

@keyframes blinkRed {
  0% { opacity: 1; }
  50% { opacity: 0.4; }
  100% { opacity: 1; }
}

.reminder-standard-btn {
  background-color: #00bfff;
  color: #000;
  border: none;
  border-radius: 5px;
  padding: 5px 10px;  /* ✅ Smaller button */
  font-size: 11.5px;  /* ✅ Smaller font size */
  font-weight: bold;
  cursor: pointer;
  margin-top: 5px;
}






/* 🔹 Button Row Wrapper */
.utility-btn-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: nowrap;        /* ❗ Ensure single row */
}

/* 🔹 Ultra Compact Button Style */
.utility-btn {
  background: transparent;
  border: 1px solid #00BFFF;
  color: #00BFFF;
  padding: 2px 6px;
  font-size: 9px;
  border-radius: 6px;        /* ✅ Slightly more rounded */
  cursor: pointer;
  font-weight: 500;
  text-transform: uppercase;
  box-shadow: 0 0 3px #00BFFF55;
  transition: all 0.2s ease;
  line-height: 1;
  min-width: 55px;
  height: 22px;
  text-align: center;
  flex-shrink: 0;
}

.utility-btn:hover {
  background-color: #00BFFF;
  color: black;
  box-shadow: 0 0 6px #00BFFF;
  transform: scale(1.01);
}








.delay-screen {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center, #000 60%, #111 100%);
  border-radius: 12px;
  box-shadow: 0 0 15px #00BFFF88;
  color: #00BFFF;
  display: none;
  flex-direction: column;
  justify-content: center; /* move content up */
  align-items: center;
  padding: 20px 16px 16px 16px;
  user-select: none;
  z-index: 1000;
}



.mic-vu {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  height: 40px;   /* reduced height for chatbot */
  width: 120px;   /* reduced width */
}

.vu-bar {
  width: 12px;    /* slightly narrower bars */
  background: #00BFFF;
  border-radius: 3px;
  box-shadow: 0 0 12px #00BFFF;
  animation: vuPulse 1.3s ease-in-out infinite;
  transform-origin: bottom center;
}

.vu-bar:nth-child(1) {
  height: 16px;
  animation-delay: 0s;
}
.vu-bar:nth-child(2) {
  height: 28px;
  animation-delay: 0.3s;
}
.vu-bar:nth-child(3) {
  height: 14px;
  animation-delay: 0.6s;
}
.vu-bar:nth-child(4) {
  height: 30px;
  animation-delay: 0.9s;
}
.vu-bar:nth-child(5) {
  height: 22px;
  animation-delay: 1.2s;
}

@keyframes vuPulse {
  0%, 100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.6);
  }
}

.delay-message {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 400; /* no bold */
  color: #00BFFF;
  text-shadow: 0 0 4px #00BFFF, 0 0 8px rgba(0,191,255,0.4);
  letter-spacing: 0.5px;
  text-align: center;
  padding: 10px 15px;
  line-height: 1.4;
}


.delay-message .dot {
  animation: blink 1.4s infinite;
  font-weight: bold;
  font-size: 18px;
  margin-left: 2px;
}

.delay-message .dot:nth-child(2) {
  animation-delay: 0.2s;
}

.delay-message .dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes pulseNeon {
  from {
    text-shadow: 0 0 5px #00BFFF, 0 0 10px #00BFFF, 0 0 20px #00BFFF;
  }
  to {
    text-shadow: 0 0 8px #00FFFF, 0 0 16px #00FFFF, 0 0 32px #00FFFF;
  }
}







#toast-container {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.toast {
  padding: 8px 20px;
  margin-top: 8px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  min-width: 200px;
  max-width: 85vw;
  text-align: center;
  color: #00bfff;
  background: rgba(0, 0, 0, 0.85);         /* darker for better contrast */
  backdrop-filter: blur(8px);
  border: 1px solid #00bfff;
  box-shadow: 0 0 12px rgba(0, 191, 255, 0.7);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 10000;                          /* higher than buttons */
}


/* Show animation */
.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}




button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}











/* ==== HELP BLOCK — compact, overflow-safe, single close button ==== */
#helpBlock1{
  /* close button metrics (used to reserve space) */
  --x-size: 22px;          /* square size of the X */
  --x-gap : 6px;           /* space from the corner */
  --x-guard: calc(var(--x-size) + var(--x-gap)); /* reserved content space */

  position: fixed; right: 10px; bottom: 10px;
  box-sizing: border-box !important;

  /* width: compact & responsive (no horizontal overflow) */
  max-width: min(90vw, 320px) !important;
  width: auto !important;

  /* height: compact with vertical scroll only */
  max-height: 38vh !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;

  /* padding: keep tight; reserve a little for the close button */
  padding: 6px 8px !important;
  padding-right: calc(8px + var(--x-guard)) !important;

  background: #000; color: #00BFFF;
  border: 1px solid #00BFFF; border-radius: 8px;
  box-shadow: 0 0 12px rgba(0,191,255,.6);

  line-height: 1.26; font-size: 12.5px;
  display: none; opacity: 0; transform: translateY(4px);
  z-index: 2147483647; transition: opacity .18s ease, transform .18s ease;

  /* robust wrapping (no side overflow) */
  word-wrap: break-word; overflow-wrap: anywhere; word-break: break-word;
  white-space: normal; hyphens: auto;

  /* don’t block page behind it; children still clickable */
  pointer-events: none; inset: auto auto auto auto;
  isolation: isolate;
}

/* children interactive + hide scrollbars */
#helpBlock1 > *, #helpBlock1 [id^="helpStep"], #helpClose, #helpCloseBtn{ pointer-events: auto; }
#helpBlock1::-webkit-scrollbar{ width:0 !important; height:0 !important; }
#helpBlock1{ -ms-overflow-style: none !important; scrollbar-width: none !important; }

#helpBlock1.show{ display:block !important; opacity:1; transform:translateY(0); }

/* Only the active step is visible */
#helpBlock1 [id^="helpStep"]{ display:none !important; visibility:hidden !important; opacity:0 !important; }
#helpBlock1 [data-help-active="true"]{ display:block !important; visibility:visible !important; opacity:1 !important; }

/* Step-2 lock (as before) */
#helpBlock1[data-locked="2"] [id^="helpStep"]{ display:none !important; visibility:hidden !important; opacity:0 !important; }
#helpBlock1[data-locked="2"] #helpStep2Login{ display:block !important; visibility:visible !important; opacity:1 !important; }

/* Text spacing and stability */
#helpBlock1 .bot-message, #helpBlock1 .help-reply{
  margin: 2px 0 !important; color:#eaf8ff !important; display:block !important; overflow:visible !important;
}
#helpBlock1 p, #helpBlock1 h1, #helpBlock1 h2, #helpBlock1 h3, #helpBlock1 ul, #helpBlock1 ol{
  margin: 0 0 4px !important;
}

/* Chips / options: wrap inside, never spill */
#helpBlock1 #helpStep3Options{ margin-top: 4px !important; }
#helpBlock1 .help-chips{ display:flex; flex-wrap:wrap; gap:4px !important; margin-top:4px !important; }
#helpBlock1 .help-chip{
  border:1px solid #00BFFF; border-radius:9999px;
  padding:2px 6px !important; font-size:11.5px !important; color:#eaf8ff; background:transparent; cursor:pointer;
  max-width:100% !important; white-space:normal !important; overflow-wrap:anywhere !important; word-break:break-word !important;
}
#helpBlock1 .help-chip:hover{ background: rgba(0,191,255,.15); }
#helpBlock1 .help-option{
  border:1px solid #00BFFF; background:transparent; color:#eaf8ff;
  padding:4px 6px !important; border-radius:6px; margin:2px 2px 0 0; cursor:pointer; font-size:12px !important;
  max-width:100% !important; white-space:normal !important; overflow-wrap:anywhere !important; word-break:break-word !important;
}

/* Links */
#helpBlock1 .help-link{ text-decoration: underline dotted; cursor: pointer; color:#00BFFF; word-break: break-word; }
#helpBlock1 .help-link:hover{ color:#eaf8ff; }

/* Remove arrow pointer (the old blue “X”) */
#helpBlock1::before, #helpBlock1::after{ content:none !important; display:none !important; }

/* ==== Close buttons (only ONE visible; same position) ==== */
#helpClose, #helpCloseBtn{
  position: absolute !important; top: 0 !important; right: 0 !important;
  transform: translate(calc(-1 * var(--x-gap)), var(--x-gap)) !important;  /* inside corner */
  display:inline-flex !important; align-items:center; justify-content:center;
  width: var(--x-size) !important; height: var(--x-size) !important;
  font-size: 14px !important; font-weight: 700 !important; line-height: 1 !important; cursor: pointer;
  color:#00BFFF !important; background: transparent !important; border-radius:4px !important; z-index: 10 !important;
}
#helpClose:hover, #helpCloseBtn:hover{ color:#fff !important; background:#00BFFF22 !important; }

/* Step mapping: 1–2 use #helpClose; 3–7 use #helpCloseBtn */
#helpBlock1:not([data-locked]) #helpClose,
#helpBlock1[data-locked="2"] #helpClose{ display:inline-flex !important; }
#helpBlock1:not([data-locked]) #helpCloseBtn,
#helpBlock1[data-locked="2"] #helpCloseBtn{ display:none !important; }

#helpBlock1[data-locked="3"] #helpClose,
#helpBlock1[data-locked="4"] #helpClose,
#helpBlock1[data-locked="5"] #helpClose,
#helpBlock1[data-locked="6"] #helpClose,
#helpBlock1[data-locked="7"] #helpClose{ display:none !important; }
#helpBlock1[data-locked="3"] #helpCloseBtn,
#helpBlock1[data-locked="4"] #helpCloseBtn,
#helpBlock1[data-locked="5"] #helpCloseBtn,
#helpBlock1[data-locked="6"] #helpCloseBtn,
#helpBlock1[data-locked="7"] #helpCloseBtn{ display:inline-flex !important; }

/* Locked steps stay visible & interactive */
#helpBlock1[data-locked="3"],
#helpBlock1[data-locked="4"],
#helpBlock1[data-locked="5"],
#helpBlock1[data-locked="6"],
#helpBlock1[data-locked="7"]{
  pointer-events: auto !important; display: block !important; visibility: visible !important; opacity: 1 !important;
  z-index: 2147483647 !important;
}

/* ===== MOBILE-ONLY COMPACT OVERRIDES ===== */
@media (max-width: 480px){
  #helpBlock1{
    max-width: 96vw !important;
    max-height: 46vh !important;            /* a bit taller for long copy */
    font-size: 11.5px !important;           /* smaller text on phones */
    line-height: 1.22 !important;           /* tighter lines but readable */
    padding: 5px 7px !important;
    /* smaller close button; smaller guard so more text fits */
    --x-size: 18px; --x-gap: 4px;
    padding-right: calc(7px + var(--x-guard)) !important;
  }

  /* tighter text rhythm */
  #helpBlock1 .bot-message, #helpBlock1 .help-reply{ margin: 1px 0 !important; }
  #helpBlock1 p, #helpBlock1 h1, #helpBlock1 h2, #helpBlock1 h3,
  #helpBlock1 ul, #helpBlock1 ol{ margin: 0 0 3px !important; }

  /* chips/options smaller */
  #helpBlock1 .help-chips{ gap: 3px !important; margin-top: 3px !important; }
  #helpBlock1 .help-chip{ padding: 1px 5px !important; font-size: 10.75px !important; }
  #helpBlock1 .help-option{ padding: 3px 5px !important; font-size: 11.25px !important; }

  /* keep the X snug in the corner */
  #helpClose, #helpCloseBtn{
    font-size: 12.5px !important;
    transform: translate(calc(-1 * var(--x-gap)), var(--x-gap)) !important;
  }
}

/* Extra small phones */
@media (max-width: 360px){
  #helpBlock1{ font-size: 11px !important; line-height: 1.2 !important; }
  #helpBlock1 .help-chip{ font-size: 10.25px !important; }
  #helpBlock1 .help-option{ font-size: 10.75px !important; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){ #helpBlock1{ transition: none !important; } }






