/*  
User Signup Form START
*/
.field-user-contact_no .invalid-feedback {
  display: block;
}

.field-user-contact_no .iti.iti--allow-dropdown {
  width: 100%;
}

.field-vendor-phone_no .invalid-feedback {
  display: block;
}

.field-user-contact_no .iti.iti--allow-dropdown {
  width: 100%;
}

/*  
User Signup Form END
*/

/* Location Suggestions */
.location-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1050;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-height: 250px;
  overflow-y: auto;
  display: none;
}

.suggestion-item {
  padding: 10px 15px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}

.suggestion-item:hover {
  background-color: #f8f9fa;
  color: #007bff;
}

.location-wrapper {
  position: relative;
}

/* Social Share Styles - Scoped to avoid affecting Blog */
.standard-share-modal .social-share,
.vendor_share_list .social-share,
.product-actions-inline .social-share {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 3px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.standard-share-modal .social-share li,
.vendor_share_list .social-share li,
.product-actions-inline .social-share li {
  display: inline-block;
}


.standard-share-modal .social-share li a,
.vendor_share_list .social-share li a,
.product-actions-inline .social-share li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff !important;
  transition: opacity 0.3s ease;
  text-decoration: none;
}

.standard-share-modal .social-share li a:hover,
.vendor_share_list .social-share li a:hover,
.product-actions-inline .social-share li a:hover {
  opacity: 0.8;
}

.standard-share-modal .social-share li a i,
.vendor_share_list .social-share li a i,
.product-actions-inline .social-share li a i {
  font-size: 18px;
}

.standard-share-modal .social-share li a.gmail,
.vendor_share_list .social-share li a.gmail,
.product-actions-inline .social-share li a.gmail {
  background-color: #d44638;
}

.standard-share-modal .social-share li a.linkedin,
.vendor_share_list .social-share li a.linkedin,
.product-actions-inline .social-share li a.linkedin {
  background-color: #0077b5;
}

.standard-share-modal .social-share li a.facebook,
.vendor_share_list .social-share li a.facebook,
.product-actions-inline .social-share li a.facebook {
  background-color: #1877f2;
}

.standard-share-modal .social-share li a.twitter,
.vendor_share_list .social-share li a.twitter,
.product-actions-inline .social-share li a.twitter {
  background-color: #1da1f2;
}

.standard-share-modal .social-share li a.whatsapp,
.vendor_share_list .social-share li a.whatsapp,
.product-actions-inline .social-share li a.whatsapp {
  background-color: #25d366;
}


.product-actions-inline .social-share li a.twitter {
  background-color: #000;
}



.social-share-icons {
  min-width: 220px !important;
}

.share-wrp .share_input .form-control {
  background-color: #f8f9fa;
  border: 1px solid #ced4da;
  border-radius: 5px;
  padding: 10px;
  text-align: center;
}

.share-wrp h4 {
  font-size: 1.25rem;
  color: #333;
}

.vendor_share_list {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.vendor_share_list ul.social-share {
  margin: 0;
  justify-content: flex-start;
}

.copy-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #6c757d;
  font-size: 18px;
  color: #fff !important;
  transition: opacity 0.3s ease;
  text-decoration: none;
  border: none;
}

.copy-icon-btn:hover {
  opacity: 0.8;
  color: #fff;
}

.vendor_share_list .social-share li:nth-child(2) {
  display: none;
}

/* Sharing Modal Button Overrides */
.share-wrp .main-blue-btn {
  background-color: var(--primary-color) !important;
  color: #fff !important;
  border: 1px solid var(--primary-color) !important;
  border-radius: 5px !important;
  height: auto !important;
  line-height: normal !important;
  padding: 10px 25px !important;
  transition: opacity 0.3s ease !important;
  display: inline-block !important;
}

.share-wrp .main-blue-btn:hover {
  background-color: var(--primary-color) !important;
  color: #fff !important;
  opacity: 0.9 !important;
}

/* Modern, beautiful styles for the calendar */
.booking-calendar-container {
  background: #ffffff;
  border-radius: 8px;
}

.fc-header-toolbar {
  margin-bottom: 1.5rem !important;
}

.fc-state-default {
  background-image: none !important;
  background-color: #f8f9fa !important;
  border: 1px solid #dee2e6 !important;
  color: #495057 !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

.fc-state-active,
.fc-state-down {
  background-color: #3788d8 !important;
  border-color: #3788d8 !important;
  color: #ffffff !important;
}

.fc-event {
  border-radius: 4px !important;
  padding: 4px 8px !important;
  font-size: 0.85em !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  cursor: pointer;
}

.fc-event:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ========================================
   Booking Modal Styles
   ======================================== */
#bookingModal .modal-content {
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  background: #fff;
  border: none;
}

#bookingModal .modal-body {
  padding: 0;
}

#bookingModal .split-divider {
  border-right: 1px solid #f0f0f0;
}

@media (max-width: 991px) {
  #bookingModal .split-divider {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
}

#bookingModal .btn-close {
  z-index: 1055;
}

/* intl-tel-input overrides inside modal */
.iti {
  width: 100%;
}

.iti__flag-container {
  z-index: 10;
}

#guest-mobile {
  padding-left: 90px !important;
  border-radius: 14px;
}

/* Booking input groups */
.booking-input-group {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 5px;
  transition: all 0.25s;
  overflow: visible;
}

.booking-input-group:focus-within {
  border-color: #e23e71;
  box-shadow: 0 0 0 4px rgba(226, 62, 113, 0.15);
  background: #fff;
}

.booking-input-group .form-control {
  background: transparent;
  border: none;
  padding: 14px 14px 14px 0;
  box-shadow: none !important;
  font-size: 14px;
}

.booking-input-group .input-group-text {
  background: transparent;
  border: none;
  color: #9ca3af;
  padding-left: 16px;
  padding-right: 12px;
}

/* Social auth buttons */
.social-auth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #374151;
  margin-bottom: 14px;
  font-size: 14px;
  text-decoration: none !important;
}

.social-auth-btn:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.social-auth-btn.google-btn i {
  color: #ea4335;
  font-size: 18px;
}

.social-auth-btn.fb-btn {
  background: #1877f2;
  color: #fff;
  border: none;
}

.social-auth-btn.fb-btn:hover {
  background: #166fe5;
}

/* TAuthChoice widget inside booking modal */
.booking-social-auth .auth-clients {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  justify-content: center;
  display: flex;
}

.booking-social-auth .auth-clients li {
  margin-bottom: 12px;
}

.booking-social-auth .auth-clients li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #374151;
  font-size: 14px;
  text-decoration: none !important;
}

.booking-social-auth .auth-clients li a:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Time slot selection */
.slot-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 15px;
  max-height: 250px;
  overflow-y: auto;
  padding: 5px;
}

.slots_list {
  height: 290px;
  overflow-y: auto;
  overflow-x: hidden;
}

.slots_list::-webkit-scrollbar {
  display: none;
}

.slots_list {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.slot-item {
  position: relative;
}

.slot-radio {
  display: none;
}

.slot-item label {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 5px;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  transition: all 0.2s ease;
  background: #fff;
  color: #4b5563;
}

.slot-item input:checked+label {
  background: #e23e71;
  color: #fff;
  border-color: #e23e71;
  box-shadow: 0 4px 12px rgba(226, 62, 113, 0.3);
}

.slot-item input:disabled+label {
  background: #f3f4f6;
  color: #9ca3af;
  cursor: not-allowed;
  border-color: #e5e7eb;
  border-radius: 5px;
}

/* Booking success checkmark */
.success-checkmark {
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  background: #eafaf1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-checkmark i {
  font-size: 40px;
  color: #2ec4b6;
}

/* Highlight pulse animation for "already registered" feedback */
@keyframes bookingHighlightPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(226, 62, 113, 0.4);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(226, 62, 113, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(226, 62, 113, 0);
  }
}

.booking-highlight-pulse {
  animation: bookingHighlightPulse 1s ease-in-out 3;
  border-radius: 12px;
}

/* Booking service select */
#booking-service-select {
  box-shadow: none;
}

/* Back to auth button */
#btn-back-to-auth {
  border-radius: 14px;
}

/* ========================================
   Search Modal Widget (TMS)
   ======================================== */

/* Search trigger pill */
#tms-search-pill {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  padding: 0 0.5rem 0 1rem;
  height: 58px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  max-width: 800px;
  margin: 0 auto;
}

#tms-search-pill:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.16);
}

#tms-search-pill .tms-pill-icon {
  color: #aaa;
  font-size: 1.1rem;
}

#tms-pill-text {
  color: #999;
  font-size: 1.05rem;
  user-select: none;
  transition: opacity 0.3s ease;
  flex: 1;
}

.tms-pill-btn {
  background: var(--secondary-color);
  color: #fff;
  border-radius: 50px;
  padding: 0;
  font-weight: 600;
  white-space: nowrap;
  min-width: 43px;
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* Modal backdrop */
#tms-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99998;
  background: rgba(10, 8, 30, 0.65);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

/* Modal container */
#tms-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 99999;
  transform: translate(-50%, -50%) scale(0.94);
  width: min(680px, 96vw);
  max-height: 88vh;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  transition:
    opacity 0.26s ease,
    transform 0.26s cubic-bezier(0.34, 1.2, 0.64, 1);
  opacity: 0;
  flex-direction: column;
  background: #fff;
}

/* Modal dark gradient header */
.tms-modal-header {
  background: linear-gradient(135deg, #1a0533 0%, #2d0a5e 45%, #010188 100%);
  padding: 1.8rem 1.8rem 1.4rem;
  flex-shrink: 0;
}

.tms-modal-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.3rem;
}

.tms-modal-brand {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.25rem;
}

.tms-modal-heading {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 0.2rem;
  font-family: "Philosopher", serif;
  line-height: 1.2;
}

.tms-modal-subtext {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  margin: 0;
}

.tms-modal-close-btn {
  background: rgba(255, 255, 255, 0.14);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
  flex-shrink: 0;
}

.tms-modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.26);
}

/* Search input bar inside modal */
.tms-search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  padding: 0 1rem;
  height: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
}

.tms-search-bar .tms-search-icon {
  color: #ccc;
  font-size: 1rem;
  margin-right: 0.75rem;
}

#tms-modal-input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 1rem;
  color: #333;
  background: transparent;
}

#tms-modal-clear {
  display: none;
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  font-size: 1rem;
  padding: 0 0.3rem;
}

.tms-search-submit {
  background: linear-gradient(135deg, #ff21c2, #010188);
  border: none;
  color: #fff;
  border-radius: 50px;
  padding: 0.3rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  margin-left: 0.5rem;
}

/* Modal scrollable body */
#tms-modal-body {
  overflow-y: auto;
  padding: 1.5rem 1.8rem 2.5rem;
  background: #fff;
  flex: 1;
}

#tms-modal-body::-webkit-scrollbar {
  width: 4px;
}

#tms-modal-body::-webkit-scrollbar-thumb {
  background: #e0d8ef;
  border-radius: 4px;
}

#tms-no-results {
  display: none;
  text-align: center;
  color: #aaa;
  margin-top: 2rem;
}

/* Category section heading */
.tms-section-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  margin: 0 0 0.8rem;
}

/* Category grid */
.tms-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(82px, 1fr));
  gap: 0.6rem;
  margin-bottom: 1.6rem;
}

/* Subcategory item link */
.tms-sub-item {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Subcategory image block */
.tms-sub-img {
  width: 68px;
  height: 68px;
  border-radius: 0.85rem;
  overflow: hidden;
  margin-bottom: 0.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f0eef6;
  background: #f7f5fb;
  transition:
    box-shadow 0.18s,
    transform 0.18s;
}

.tms-sub-item:hover .tms-sub-img {
  box-shadow: 0 6px 18px rgba(255, 33, 194, 0.18);
  transform: translateY(-3px);
  border-color: #ff21c2;
}

.tms-sub-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.85rem;
}

.tms-sub-fallback {
  width: 68px;
  height: 68px;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, #ff21c2, #010188);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
}

.tms-sub-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #444;
  line-height: 1.3;
  max-width: 80px;
  word-break: break-word;
  transition: color 0.15s;
}

.tms-sub-item:hover .tms-sub-label {
  color: #ff21c2;
}

/* Booking Create Page Redesign */
.booking-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  padding: 24px;
  border: none;
}

.booking_service {
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
}

.booking-product-image {
  border-radius: 12px;
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.vendor-badge {
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.duration-text {
  font-size: 13px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
}


.description-box h6 {
  font-weight: 600;
  color: #000;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.description-box p {
  font-size: 1rem;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

.category-text {
  font-size: 14px;
  color: #666;
}

.category-text span {
  color: var(--secondary-color);
  font-weight: 500;
}

.bg-main-light {
  background-color: #fcfcfc !important;
}


.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.booking-header h5 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  color: #000;
}