/* ==========================================================================
   Restrya Hotels & Resorts - Sticky WhatsApp & Luxury Popup Form Styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. STICKY WHATSAPP WIDGET
   -------------------------------------------------------------------------- */
.restrya-sticky-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99990;
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Floating WhatsApp Trigger Button */
.wa-trigger-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff !important;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  border: 2.5px solid rgba(255, 255, 255, 0.4);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

.wa-trigger-btn i {
  font-size: 32px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.wa-trigger-btn:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55), 0 6px 16px rgba(0, 0, 0, 0.2);
}

.wa-trigger-btn:hover i {
  transform: scale(1.1);
}

/* Radar Pulse Wave Animation */
.wa-trigger-btn::before,
.wa-trigger-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.6;
  z-index: -1;
  pointer-events: none;
}

.wa-trigger-btn::before {
  animation: waRadarPulse 2.4s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wa-trigger-btn::after {
  animation: waRadarPulse 2.4s infinite 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes waRadarPulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.65;
  }
  70% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.7);
    opacity: 0;
  }
}

/* Online status dot */
.wa-online-dot {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 14px;
  height: 14px;
  background: #10b981;
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.8);
}

/* Luxury Tooltip / Prompt Badge */
.wa-badge-tooltip {
  position: absolute;
  right: 76px;
  top: 50%;
  transform: translateY(-50%);
  background: #021432;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(2, 20, 50, 0.25);
  border: 1px solid rgba(197, 157, 95, 0.35);
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: waTooltipBounce 3.5s infinite;
}

.wa-badge-tooltip span.wa-highlight {
  color: #c59d5f;
  font-weight: 700;
}

.wa-badge-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #021432;
}

@keyframes waTooltipBounce {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 4px)); }
}

/* Interactive WhatsApp Quick Chat Box */
.restrya-wa-box {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 340px;
  max-width: calc(100vw - 32px);
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05);
  transform-origin: bottom right;
  transform: scale(0.85) translateY(20px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 99995;
}

.restrya-wa-box.active {
  transform: scale(1) translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* WhatsApp Box Header */
.wa-box-header {
  background: linear-gradient(135deg, #075e54 0%, #128c7e 100%);
  padding: 16px 20px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wa-box-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-profile-avatar {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  padding: 3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.wa-profile-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
}

.wa-profile-avatar .wa-avatar-status {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 11px;
  height: 11px;
  background: #25d366;
  border: 2px solid #ffffff;
  border-radius: 50%;
}

.wa-profile-info h5 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.3px;
}

.wa-profile-info p {
  margin: 2px 0 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.wa-box-close {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s ease;
}

.wa-box-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* WhatsApp Box Body */
.wa-box-body {
  padding: 20px;
  background: #f0f2f5 url('../images/resource/pattern-1.png');
  background-size: 200px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wa-chat-bubble {
  background: #ffffff;
  padding: 12px 16px;
  border-radius: 12px 12px 12px 2px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  font-size: 13.5px;
  line-height: 1.5;
  color: #2c3e50;
  position: relative;
}

.wa-chat-bubble p {
  margin: 0;
}

.wa-chat-time {
  display: block;
  text-align: right;
  font-size: 10.5px;
  color: #8c98a4;
  margin-top: 5px;
}

/* Quick Action Chips */
.wa-quick-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wa-chip-btn {
  background: #ffffff;
  border: 1px solid #d9e2ec;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
  color: #334e68;
  cursor: pointer;
  transition: all 0.2s ease;
}

.wa-chip-btn:hover {
  background: #e8f5e9;
  border-color: #25d366;
  color: #128c7e;
  transform: translateY(-1px);
}

/* WhatsApp Box Footer */
.wa-box-footer {
  padding: 12px 16px;
  background: #ffffff;
  border-top: 1px solid #eef2f6;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-input-field {
  flex: 1;
  border: 1px solid #d9e2ec;
  border-radius: 22px;
  padding: 8px 16px;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}

.wa-input-field:focus {
  border-color: #25d366;
}

.wa-send-btn {
  background: #25d366;
  color: #ffffff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  transition: transform 0.2s, background 0.2s;
}

.wa-send-btn:hover {
  background: #128c7e;
  transform: scale(1.06);
}


/* --------------------------------------------------------------------------
   2. FLOATING OFFER BADGE (TO RE-OPEN POPUP ANYTIME)
   -------------------------------------------------------------------------- */
.restrya-floating-offer-badge {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 99980;
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
}

.floating-offer-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #021432 0%, #0d2753 100%);
  border: 1.5px solid #c59d5f;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(2, 20, 50, 0.4), 0 0 15px rgba(197, 157, 95, 0.25);
  transition: all 0.35s ease;
  text-decoration: none;
}

.floating-offer-pill .offer-icon-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c59d5f 0%, #dfbe89 100%);
  color: #021432;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  animation: giftWiggle 2.5s infinite;
}

.floating-offer-pill span.discount-highlight {
  background: #c59d5f;
  color: #021432;
  padding: 2px 7px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 11.5px;
  margin-left: 4px;
}

.floating-offer-pill:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(2, 20, 50, 0.5), 0 0 20px rgba(197, 157, 95, 0.45);
  border-color: #dfbe89;
  color: #ffffff;
}

@keyframes giftWiggle {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(-12deg); }
  20%, 40% { transform: rotate(12deg); }
  50% { transform: rotate(0deg); }
}


/* --------------------------------------------------------------------------
   3. LUXURY POPUP RESERVATION MODAL
   -------------------------------------------------------------------------- */
.restrya-popup-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 9, 20, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.restrya-popup-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Box Container */
.restrya-popup-card {
  position: relative;
  width: 100%;
  max-width: 960px;
  max-height: 92vh;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(197, 157, 95, 0.3);
  display: flex;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.restrya-popup-backdrop.active .restrya-popup-card {
  transform: translateY(0) scale(1);
}

/* Close Button */
.popup-close-trigger {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #333333;
  cursor: pointer;
  z-index: 20;
  transition: all 0.25s ease;
}

.popup-close-trigger:hover {
  background: #021432;
  color: #ffffff;
  transform: rotate(90deg);
}

/* --- Left Column: Luxury Visual Banner --- */
.popup-visual-col {
  width: 40%;
  background: linear-gradient(180deg, rgba(2, 20, 50, 0.88) 0%, rgba(9, 15, 29, 0.95) 100%),
              url('../img/pr1.jpg') center/cover no-repeat;
  padding: 40px 32px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.popup-brand-crest {
  display: flex;
  align-items: center;
  gap: 12px;
}

.popup-brand-crest img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.popup-offer-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(197, 157, 95, 0.2);
  border: 1px solid rgba(197, 157, 95, 0.5);
  color: #dfbe89;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 15px;
}

.popup-promo-text h3 {
  font-family: 'Marcellus', serif;
  font-size: 28px;
  color: #ffffff;
  line-height: 1.25;
  margin: 14px 0 10px 0;
}

.popup-promo-text h3 span {
  color: #c59d5f;
}

.popup-promo-text p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin: 0 0 20px 0;
}

.popup-perks-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.popup-perks-list li {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.popup-perks-list li i {
  color: #c59d5f;
  font-size: 13px;
}

.popup-trust-box {
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.popup-stars {
  color: #f59e0b;
  font-size: 13px;
  letter-spacing: 2px;
}

.popup-rating-text {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.75);
}

/* --- Right Column: The Form --- */
.popup-form-col {
  width: 60%;
  padding: 38px 36px;
  overflow-y: auto;
  max-height: 92vh;
}

.popup-header-info {
  margin-bottom: 22px;
}

.popup-header-info h4 {
  font-family: 'Marcellus', serif;
  font-size: 24px;
  color: #021432;
  margin: 0 0 6px 0;
}

.popup-header-info p {
  font-size: 13.5px;
  color: #64748b;
  margin: 0;
}

/* Form Fields Grid */
.popup-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-full-col {
  grid-column: span 2;
}

.popup-input-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
}

.popup-input-wrap label {
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.popup-input-wrap .input-icon-box {
  position: relative;
  display: flex;
  align-items: center;
}

.popup-input-wrap .input-icon-box i {
  position: absolute;
  left: 14px;
  color: #94a3b8;
  font-size: 14px;
  pointer-events: none;
}

.popup-input-wrap input,
.popup-input-wrap select,
.popup-input-wrap textarea {
  width: 100%;
  padding: 10px 14px 10px 38px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 13.5px;
  color: #1e293b;
  background: #f8fafc;
  outline: none;
  font-family: inherit;
  transition: all 0.25s ease;
}

.popup-input-wrap select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.popup-input-wrap textarea {
  padding: 10px 14px;
  resize: vertical;
  min-height: 55px;
}

.popup-input-wrap input:focus,
.popup-input-wrap select:focus,
.popup-input-wrap textarea:focus {
  border-color: #c59d5f;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(197, 157, 95, 0.15);
}

/* Action Buttons */
.popup-actions-wrap {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.popup-btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #c59d5f 0%, #b88d4c 100%);
  color: #ffffff;
  border: none;
  padding: 13px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 18px rgba(197, 157, 95, 0.35);
  transition: all 0.3s ease;
}

.popup-btn-submit:hover {
  background: linear-gradient(135deg, #b88d4c 0%, #9a763c 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(197, 157, 95, 0.45);
}

.popup-btn-whatsapp {
  width: 100%;
  background: #25d366;
  color: #ffffff !important;
  border: none;
  padding: 11px 20px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.popup-btn-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-1px);
}

.popup-form-guarantee {
  font-size: 11.5px;
  color: #94a3b8;
  text-align: center;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Success Confirmation Card inside Modal */
.popup-success-card {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.popup-success-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #e8f5e9;
  color: #2e7d32;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 16px auto;
  animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successPop {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.popup-success-card h4 {
  font-family: 'Marcellus', serif;
  font-size: 26px;
  color: #021432;
  margin-bottom: 8px;
}

.popup-success-card p {
  font-size: 14px;
  color: #475569;
  max-width: 440px;
  margin: 0 auto 20px auto;
  line-height: 1.6;
}

.popup-success-details {
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  padding: 16px 20px;
  text-align: left;
  max-width: 420px;
  margin: 0 auto 22px auto;
  font-size: 13px;
  color: #334155;
  line-height: 1.7;
}

.popup-success-details strong {
  color: #021432;
}

/* Responsive Media Queries */
@media (max-width: 991.98px) {
  .restrya-popup-card {
    flex-direction: column;
    max-width: 580px;
    max-height: 94vh;
  }
  
  .popup-visual-col {
    width: 100%;
    padding: 24px 20px 20px 20px;
  }

  .popup-perks-list {
    display: none;
  }

  .popup-promo-text h3 {
    font-size: 20px;
  }

  .popup-form-col {
    width: 100%;
    padding: 24px 20px;
  }
}

@media (max-width: 600px) {
  .restrya-sticky-whatsapp {
    bottom: 20px;
    right: 18px;
  }

  .wa-trigger-btn {
    width: 54px;
    height: 54px;
  }

  .wa-trigger-btn i {
    font-size: 28px;
  }

  .wa-badge-tooltip {
    display: none; /* keep clean on tiny phones */
  }

  .restrya-floating-offer-badge {
    bottom: 20px;
    left: 16px;
  }

  .floating-offer-pill {
    padding: 8px 14px;
    font-size: 11.5px;
  }

  .popup-form-grid {
    grid-template-columns: 1fr;
  }

  .form-full-col {
    grid-column: span 1;
  }
}

/* --------------------------------------------------------------------------
   4. SUITE AMENITIES PILLS & MEAL PLANS PRICING BOX
   -------------------------------------------------------------------------- */
.suite-amenities-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 16px 0;
}

.suite-amenity-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #f4f6fa;
  color: #021432;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.suite-amenity-chip i {
  color: #c59d5f;
  font-size: 13px;
}

.suite-amenity-chip:hover {
  background: #021432;
  color: #ffffff;
  border-color: #021432;
}

.suite-amenity-chip:hover i {
  color: #dfbe89;
}

/* Suite Meal Plans Box */
.suite-meal-plans-box {
  background: #ffffff;
  border: 1.5px solid rgba(197, 157, 95, 0.35);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(2, 20, 50, 0.05);
}

.suite-meal-plans-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #edf2f7;
}

.suite-meal-plans-header h6 {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #021432;
  display: flex;
  align-items: center;
  gap: 7px;
}

.suite-meal-plans-header h6 i {
  color: #c59d5f;
}

.suite-meal-plans-header span.meal-tag {
  font-size: 11px;
  color: #059669;
  background: #ecfdf5;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
}

.suite-meal-plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

@media (max-width: 575px) {
  .suite-meal-plan-grid {
    grid-template-columns: 1fr;
  }
}

.suite-meal-plan-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 9px 12px;
  transition: all 0.2s ease;
}

.suite-meal-plan-row:hover {
  background: #fdfbf7;
  border-color: #c59d5f;
  transform: translateY(-1px);
}

.suite-meal-plan-row.popular-plan {
  background: #fbf8f2;
  border-color: rgba(197, 157, 95, 0.6);
}

.suite-meal-plan-name {
  font-size: 12px;
  font-weight: 600;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 6px;
}

.suite-meal-plan-name span.plan-code {
  font-size: 10px;
  background: #021432;
  color: #ffffff;
  padding: 1px 5px;
  border-radius: 4px;
  font-weight: 700;
}

.suite-meal-plan-price {
  font-size: 13.5px;
  font-weight: 700;
  color: #021432;
  white-space: nowrap;
}

.suite-meal-plan-price small {
  font-size: 10.5px;
  color: #64748b;
  font-weight: 400;
}

