html {
  scroll-behavior: smooth;
  scroll-padding-top: 200px !important; /* 80px nav + 48px breadcrumb */
}

/* hide google captcha badge */
.grecaptcha-badge {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Container that wraps image or fallback */
.listing-image-container {
  width: 100%;
  /* aspect-ratio: 1 / 1; */
  height: 180px;
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  background-color: #f2f2f2;
}

@media (min-width: 991px) {
  .latest-listing-container {
    padding-top: 3rem !important; /* Reduced from 10rem for tighter spacing with Hero */
  }
}

.select2-results__options {
  box-shadow: none !important;
}

/* The actual image */
.listing-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Fallback when no image is available */
.listing-image-fallback {
  width: 100%;
  height: 100%;
  background: #000000;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

/* Home page card logo image (Newly Added / Recently Updated / Featured Excellence) -
   matches the h-100 fallback div so logo and no-logo cards render the same height */
.modern-img-resp {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.item-card2-text h4 {
  font-weight: 600;
  color: #333;
}

/* Optional initials style */
.listing-initials {
  letter-spacing: 1px;
}

/* Rating stars */
.listing-rating-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.average-rating-stars {
  display: flex;
  align-items: center;
  justify-content: center;
}
.average-rating-stars img {
  width: 13px;
  height: 13px;
}

/* Home Category Cards */
.category-card {
  min-height: 120px;
  border-radius: 0.75rem;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.category-title {
  font-size: 1rem;
  font-weight: 600;
  white-space: wrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Home Hero Section */
.home-hero-section {
  position: relative;
  width: 100%;
  z-index: 10;
  padding-top: 110px; /* High padding to clear the tall header/search bar */
}

.hero-box-container {
  position: relative;
  /* Premium Mesh Gradient */
  background: #0f172a;
  background-image: 
    radial-gradient(at 0% 0%, rgba(236, 41, 107, 0.15) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(88, 28, 135, 0.3) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(243, 112, 33, 0.1) 0px, transparent 50%),
    linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease;
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(236, 41, 107, 0.2) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}


.text-gradient {
  background: linear-gradient(90deg, #ff6a00, #ee0979); /* Better contrast orange-pink */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-subtitle-lead {
  max-width: 800px;
}

.z-index-1 {
  z-index: 1 !important;
}

@media (max-width: 768px) {
  .home-hero-section {
    padding-top: 90px;
  }
}

.require-star {
  color: red;
  padding: 0px 5px;
}

/* Login Registration Model */

.passwd i {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
}

.errorValidation {
  display: block;
  color: red !important;
  position: static !important;
  text-align: left !important;
}

.note-box {
  text-align: left !important;
}

.check {
  color: #34c38f;
}

.iti {
  display: block !important;
}

.cursor-pointer {
  cursor: pointer;
}

/* Forget password model  */

/* Overlay */
.reg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  display: none;
}

/* Modal box */
.lost-password-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 400px;
  background: #fefefe;
  padding: 20px 25px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  z-index: 9999;
  display: none;
}

body.dark-theme .lost-password-modal {
  background: #1f2940;
}

.lost-password-modal p {
  margin-bottom: 10px;
  font-weight: 500;
  color: #333;
}
body.dark-theme .lost-password-modal p {
  color: white;
}

.lost-password-modal input[type='email'] {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.lost-password-modal button {
  width: 100%;
  padding: 10px;
  color: #fff;
  border: none;
  border-radius: 4px;
}

#forgot-password-form{
  margin-top: 2px !important;
}

/* Close icon */
.close-lpt {
  position: absolute;
  top: 0px;
  right: 12px;
  font-size: 20px;
  color: #999;
  cursor: pointer;
}

.close-lpt:hover {
  color: #333;
}

/* Contact Us Page  */

#recaptcha-hidden {
  visibility: hidden !important;
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

#characters-count {
  position: absolute;
  right: 0px;
  margin: 10px 0 10px 10px;
}

body.dark-theme #contact-form textarea {
  background-color: rgb(31, 41, 64);
}

body.dark-theme #contact-form {
  border: 1px solid #32436a;
}

.shadow-none {
  box-shadow: none !important;
}

body.dark-theme .pricingTable.advance-pricing {
  border: 1px solid #eb115b !important;
}

/* View all Cities CSs  */
.masonry-wrapper {
  column-count: 3;
  column-gap: 1.5rem;
}

.masonry-card {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  border: 1px solid orange !important;
}

@media (max-width: 992px) {
  .masonry-wrapper {
    column-count: 2;
  }
}
@media (max-width: 576px) {
  .masonry-wrapper {
    column-count: 1;
  }
}

/* Categories, Cities Listing Page */

/* Grid view - Container */
.view-container.grid-view {
  display: flex;
  flex-wrap: wrap;
  /* gap: 1.5rem; */
}

/* Grid view - Item */
.view-container.grid-view .listing-item {
  width: 100%;
}

.list-view .listing-image-container {
  width: 30%;
}

/* Make the listing item fill available height */
.view-container.list-view .listing-item {
  display: flex;
  height: 100%;
}

/* Force card to take 100% height */
.view-container.list-view .card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

/* Make item-wrapper grow to fill height */
.view-container.list-view .item-wrapper {
  display: flex;
  flex-direction: row;
  flex: 1 1 auto;
}

/* Listing image stays fixed width */
.view-container.list-view .listing-image-container {
  width: 25%;
  flex-shrink: 0;
}

/* Right section becomes vertical flex */
.view-container.list-view .w-100 {
  /* display: flex;
  flex-direction: column;
  width: 100%; */
}

/* Body expands vertically */
.view-container.list-view .card-body {
  flex-grow: 1;
}

/* Footer hugs the bottom */
.view-container.list-view .card-footer {
  margin-top: auto;
  border-top: 1px solid #dedede;
}

@media (min-width: 576px) {
  .view-container.grid-view:not(.category-listing-wrapper) .listing-item {
    width: 50%;
  }

  .view-container.grid-view.category-listing-wrapper .listing-item{
    width: 50%;
  }
}

@media (min-width: 768px) {
  .view-container.grid-view:not(.category-listing-wrapper) .listing-item {
    width: 50%;
  }

  .view-container.grid-view.category-listing-wrapper .listing-item{
    width: 50%;
  }
}

@media (min-width: 992px) {
  .view-container.grid-view:not(.category-listing-wrapper) .listing-item {
    width: 50%;
  }

  .view-container.grid-view.category-listing-wrapper .listing-item{
    width: 33.33333333%;
  }
}

/* Matches Bootstrap's own xl breakpoint, since .listing-item already carries col-xl-4 in the markup */
@media (min-width: 1200px) {
  .view-container.grid-view:not(.category-listing-wrapper) .listing-item {
    width: 33.33%;
  }
}

@media (min-width: 1400px) {
  .view-container.grid-view.category-listing-wrapper .listing-item{
    width: 25%;
  }

  .view-container.grid-view .item-wrapper {
    /* display: block !important; */
  }
}

/* select2 clear button style */
.select2-selection__clear {
  right: 10px;
  top: 9px;
  display: inline-block;
  width: auto;
  height: auto;
  line-height: 1;
  font-size: 16px;
  padding: 0;
  margin-left: 10px;
  border: none;
  background: none;
  cursor: pointer;
}

.map-container-detail-page {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* Aspect ratio 16:9 */
}

.map-container-detail-page iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.avatar-giant {
  width: 10rem !important;
  height: 10rem !important;
}

/* .listing-details-logo {
  border-radius: 16px;
  box-shadow: 0px 0px 0px 5px #ffffff5e;
} */

.fallback-listing-details-logo {
  height: 21vh;
  width: 50vh;
  margin: 0px 50px;
}

.reviews-average-rating-stars img {
  height: 15px;
  width: 15px;
}

/* Swiper */

/* Make swiper full width and height properly */
#photo-gallery-slider {
  width: 100%;
  height: 100%;
}
/* Container - let Swiper handle widths */
#video-gallery-slider { width: 100%; }

/* Listing details "Photos & Portfolio" gallery: give every slide a fixed
   width/aspect-ratio so thumbnails render at the same size regardless of the
   uploaded photo's own dimensions (overrides the generic full-width .swiper-slide rule below) */
#photo-gallery-slider .swiper-slide {
  width: min(420px, 80vw);
  height: auto;
}
#photo-gallery-slider .portfolio-item {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

/* Slide centering (optional) */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0;
  box-sizing: border-box;
}

/* Maintain 16:9 */
.video-wrapper {
  width: 100%;
  max-width: 960px;        /* optional limit */
  position: relative;
  padding-top: 56.25%;     /* 16:9 ratio */
  overflow: hidden;
  background: #000;        /* placeholder while loading */
  border-radius: 6px;
}

/* iframe fills wrapper */
.video-wrapper iframe {
  position: absolute;
  inset: 0;                /* sets top:0; right:0; bottom:0; left:0 */
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Each slide should take 100% width */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Photo gallery item containers - fixed aspect ratio so every slide/card renders
   at the same size regardless of the uploaded photo's own dimensions */
.gallery-item-container .aspect-ratio-16-9,
.gallery-item-container .aspect-ratio-4-3 {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.aspect-ratio-16-9 {
  aspect-ratio: 16 / 9;
}

.aspect-ratio-4-3 {
  aspect-ratio: 4 / 3;
}

/* Image styling: center + scale nicely */
.photo-gallery-image {
  max-width: 100%;
  max-height: 500px; /* You can tweak this */
  width: 100%;
  height: 100%;
  display: block;
  margin: auto;
  object-fit: contain;
}

.add-review-rating img,
form .edit-review-rating img {
  height: 16px !important;
  width: 16px !important;
}

#review-not-allow-message, #edit-delete-review-not-allow-message, #alert-message-box{
  background-color: rgba(252, 252, 0, 0.1); 
  border: 1px solid #ffc107;
  color: black !important;
}

.desktoplogo {
  padding: 0.5rem 0 !important;
}

.desktoplogo img {
  height: 55px;
  width: 50px;
}

#main section {
  height: 100% !important;
}

/* container for the two buttons */
.avtar-btns {
  position: absolute;
  bottom: 18px !important;
  right: 60px !important;
  display: flex;
  gap: 0.2rem;
}

/* base styling for both icons */
.btn-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
}

.btn-remove {
  background-color: #dc3545;
}
section.main-dashboard-sec {
  padding-top: 40px;
}
section.main-dashboard-sec.verify-email-message-section {
  padding-bottom: 0px !important;
}
.fl-wrap.verify-email-message {
  border: 1px solid #f2ca4c;
  border-radius: 5px;
  background-color: #fff3cd4f !important;
}
.fl-wrap.verify-email-message .resend-email {
  margin-left: 10px;
  font-weight: bold;
}
.warning {
  background-color: #eed47f !important;
  margin-bottom: 0px;
  height: 50px;
  padding-top: 18px;
}
.resend-email {
  color: #4db7fe !important;
  cursor: pointer;
}

.add-list {
  float: right;
  position: relative;
  height: 40px;
  line-height: 40px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 13px;
  margin-top: 5px;
  margin-bottom: 5px;
}
.add-list:hover {
  box-shadow: 0px 0px 0px 6px rgba(255, 255, 255, 0);
}
.add-list span {
  color: #fff;
  padding-left: 10px;
}
.welcome-box .password-toggle-button {
  position: absolute;
  top: 9px;
  right: 10px;
  font-size: 15px;
  cursor: pointer;
}
.welcome-box .confirm-password-toggle-button {
  position: absolute;
  top: 9px;
  right: 10px;
  font-size: 15px;
  cursor: pointer;
}
.welcome-box .new-password-toggle-button {
  position: absolute;
  top: 9px;
  right: 10px;
  font-size: 15px;
  cursor: pointer;
}

/* Force next-line behavior */
.review-reply-section {
  flex-basis: 100%;
  max-width: 100%;
}

/* Push them to align with media-body */
.review-reply-section {
  margin-left: calc(3rem + 20px); /* adjust based on avatar size + spacing */
}
.clear-btn {
  position: absolute;
  right: 93px;
  top: 48%;
  transform: translateY(-50%);
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #ec296b;
  display: none;
}

.clear-btn:hover {
  color: #6d6d6d;
}

.premium-badge {
  padding: 0px !important;
  width: 121px !important;
  right: 0px !important;
  top: 25px !important;
}
.ribbon {
  height: 100px !important;
  width: 100px !important;
}

.profile-listing-badge {
  position: absolute;
  top: 3px;
  right: 200px;
}
.select2-container--default .select2-search--inline .select2-search__field {
  color: white;
}
textarea.form-control {
  height: 100% !important;
  padding-top: 10px !important;
}
.hidden {
  display: none;
}
.add-interval-btn-block {
  display: flex;
  align-items: center;     /* vertical centering */
  gap: 0.5rem;             /* space between button and icon */
}

/* Optional: tweak icon positioning if needed */
.info-icon-edit-listing {
  font-size: 1.1rem;       /* a bit larger */
  line-height: 1;          /* avoid extra descender space */
  cursor: pointer;
}
/*-------------map ,  infobox and markers ---------------------------------------*/
.map-container {
  float: left;
  width: 100%;
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}
.fw-map {
  height: 500px;
}
.fw-map.big_map {
  height: 550px;
}
.fw-map2 #singleMap,
.fw-map2 {
  height: 500px;
}
.hidden-map-container {
  display: none;
  background: #fff;
  overflow: hidden;
}
#singleMap,
.fw-map-small-map {
  height: 420px;
}
#singleMap {
  height: 390px;
}
.map-container.column-map.right-pos-map {
  right: 0;
}
.map-container.column-map.left-pos-map {
  left: 0;
}
.map-container #map-main {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 990;
}
.map-container.column-map {
  width: calc(100% - 850px);
  position: absolute;
  overflow: hidden;
}
.map-container.column-map.no-fix-scroll-map {
  position: fixed;
  right: 0;
}
.edit-listing-icon {
  position: absolute;
  top: 102px;
  left: 19px;
}
.service-area-input {
  padding-left: 25px !important;
}

/* ------ Business-hours-section-main Start ------ */
.business-hours-section,
.business-hours-section-main {
  padding: 0 !important;
}

.business-hours-section {
  overflow-x: auto;
  width: 100% !important;
}

.business-hours-section-main {
  display: flex;
  min-width: 826px;
  width: auto;
  height: 100% !important;
  color: #f5f5f5; /* off-white text */
}

.form-group {
  margin-bottom: 1rem;
}

.business-hours-section-main .working-hours-block {
  display: flex;
}
.business-hours-section-main .block-to-clone {
  display: flex;
}

.business-hours-section-main .step-1,
.business-hours-section-main .step-2,
.business-hours-section-main .step-3,
.business-hours-section-main .step-4 {
  padding-left: 10px;
  padding-right: 10px;
}

.business-hours-section-main .step-1 {
  width: 100px;
  margin-top: 10px;
}

.business-hours-section-main .step-2 {
  width: 110px;
}

.business-hours-section-main .step-3 {
  width: 300px;
}

.business-hours-section-main .step-4 {
  width: 165px;
}

.business-hours-section-main .step-4.add-interval-btn-block {
  width: 164px;
}

.business-hours-section-main .step-row-1,
.business-hours-section-main .step-row-2 {
  width: 260px;
  padding-left: 8px;
  padding-right: 8px;
}

.business-hours-section-main .step-row-3 {
  width: 70px;
  padding-left: 8px;
}

.business-hours-section-main .input-group {
  display: flex;
  align-items: center;
  position: relative;
}

.business-hours-section-main .input-group input {
  width: 100%;
  padding: 8px 35px 8px 10px !important;
  border: 1px solid #ced4da;
  border-radius: 4px;
  background-color: #ffffff;
  color: #212529;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.business-hours-section-main .input-group input:disabled {
  background-color: #e9ecef;
  color: #6c757d;
  opacity: 1;
}

.business-hours-section-main .input-group .bootstrap-timepicker-widget {
  position: absolute;
  border: 1px solid #e1d5d5;
  top: 32px !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 auto !important;
  background-color: #fff !important;
  height: 127px;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

.business-hours-section-main .working-hours-block:nth-child(7) .input-group .bootstrap-timepicker-widget,
.business-hours-section-main .working-hours-block:nth-child(6) .input-group .bootstrap-timepicker-widget,
.business-hours-section-main .working-hours-block:nth-child(5) .input-group .bootstrap-timepicker-widget {
  bottom: 32px !important;
  top: unset !important;
}

.business-hours-section-main .input-group .bootstrap-timepicker-widget::before,
.business-hours-section-main .input-group .bootstrap-timepicker-widget::after {
  display: none;
}

.business-hours-section-main .apply-btn {
  white-space: nowrap;
  padding: 3px 0;
  color: #ff3366;  /* vibrant magenta */
  display: block;
  cursor: pointer;
}

.business-hours-section-main .apply-btn .fa-arrow-down {
  margin-right: 4px;
  font-size: 12px;
}

.business-hours-section-main .record {
  padding-left: 10px;
  padding-right: 10px;
}

.business-hours-section-main .form-select {
  padding: 7px 20px 7px 10px;
  border: 1px solid #ced4da; 
  border-radius: 4px;
  background-color: #ffffff; 
  appearance: none;
  color: #495057;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.business-hours-section-main .form-select:focus {
  background-color: #ffffff;
  border-color: #ffa033;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 150, 51, 0.25);
}

.business-hours-section-main .input-group .input-group-text {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 8px;
  background-color: #ffffff;
  border: 1px solid #ced4da;
  color: #495057;
  display: flex;
  z-index: 10;
}
.start-time,.end-time{
  overflow: hidden;
}
.business-hours-section-main .select-box {
  position: relative;
}

.business-hours-section-main .select-box:before {
  border-bottom: 2px solid #000000;
  border-right: 2px solid #000000;
  content: '';
  display: block;
  height: 4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  bottom: auto;
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.15s ease-in-out;
  width: 4px;
}

/* Add Interval Button - Orange Theme */
.business-hours-section-main .add-interval-btn {
  padding: 7px 8px;
  border: 1px solid transparent;
  background-color: rgba(249, 115, 22, 0.1); /* soft orange tint */
  color: #f97316; /* orange text */
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-font-13{
  font-size: 13px !important;
}
.business-hours-section-main .add-interval-btn:disabled {
  background-color: #f8f9fa; /* light neutral bg */
  border: 1px solid #dee2e6; /* subtle border */
  color: #adb5bd; /* muted gray text */
  cursor: not-allowed;
}

.business-hours-section-main .add-interval-btn:hover {
  background-color: #f97316; /* solid orange */
  color: #ffffff; /* white text */
}

.business-hours-section-main .remove-interval-btn {
  background-color: #e74c3c;
  color: #ffffff;
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 26px;
  margin-top: 2px;
}

.business-hours-section-main .fa-info {
  padding: 5px;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  font-size: 10px;
  background-color: #252a44;
  text-align: center;
}

.business-hours-section-main .geodir-category_price {
  margin-right: 0;
  top: 10px;
  cursor: pointer;
}

.business-hours-section-main label {
  color: #a3a5b5; /* muted label color */
}

.business-hours-section-main .geodir-opt-tooltip,
.business-hours-section-main .price-name-tooltip {
  position: absolute;
  opacity: 0;
  height: auto;
  line-height: 17px;
  left: 22px;
  top: unset;
  color: #ffffff;
  font-size: 12px;
  border-radius: 2px;
  background: #ff3366;
  width: 100%;
  min-width: 100px;
  padding: 5px;
}

.business-hours-section-main .working-hours-block:last-child .geodir-opt-tooltip,
.business-hours-section-main .working-hours-block:last-child .price-name-tooltip {
  top: -30px;
}

.business-hours-section-main .time-picker-box {
  display: flex;
  flex-direction: column;
  position: relative;
}
.bootstrap-timepicker-hour,.bootstrap-timepicker-minute,.bootstrap-timepicker-meridian{
  color: #000000;
}
/* ------ Business-hours-section-main End ------ */

.custom-form ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.custom-form ul li {
  box-sizing: border-box;
}
.select2-height-box .select2-container--default .select2-selection--single {
  height: 36px !important;
}
.bootstrap-tagsinput .tag {
  color: white !important;
  background: rgba(231, 235, 243, 0.1019607843) !important;
}

/* ------ multiple select tag css start ------ */
.input-icon-box {
  position: relative;
  margin-bottom: 14px !important;
}
.input-icon-box i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.input-icon-box input {
  margin-bottom: 0px !important;
}
.input-icon-box .bootstrap-tagsinput {
  box-shadow: unset !important;
  margin-bottom: 24px;
  border-radius: 4px;
  color: #838080;
  font-size: 12px;
  outline: none;
  width: 100%;
  margin-bottom: 0px;
  min-height: auto;
  box-shadow: unset;
  text-align: left;
  border:1px solid rgb(108 108 108 / 20%);
}
.input-icon-box {
  z-index: 9;
}
.input-icon-box .bootstrap-tagsinput .tag {
  margin-bottom: 2px;
  margin-top: 2px;
  word-wrap: anywhere;
  white-space: break-spaces;
  line-height: normal;
  text-align: left;
  margin-right: 2px;
  padding: 4px 7px 4px 22px !important;
  color: #fff !important;
  background-color: #f97316 !important;
  position: relative;
}
.input-icon-box .bootstrap-tagsinput .tag [data-role='remove'] {
  position: absolute;
  left: 4px;
  line-height: 20px;
  padding-right: 3px;
  border-right: 1px solid #ffffff69;
  top: 0;
  bottom: 0;
  margin: 0px;
}
.input-icon-box .bootstrap-tagsinput input {
  border: none;
  box-shadow: none;
  outline: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
  width: auto !important;
  padding: 0px !important;
  border: unset !important;
  float: unset !important;
  margin: 5px 0px !important;
}
/* ------ multiple select tag css end ------ */

.dark-theme .bootstrap-tagsinput input {
  color: white;
}

.arrow-ribbon {
  left: auto !important;     /* cancel out the left: 0 from global style */
  right: 0;                  /* position it to the right */
  padding-right: 16px;       /* create space for the arrow */
  clip-path: polygon(100% 0, 100% 100%, 10% 100%, 0 50%, 10% 0); /* arrow on the left of ribbon */

}

.ribbon-wrapper-right {
  position: absolute;
  top: 10px;
  right: 0;
}

.active-color:hover {
  color: #f97316 !important;
}

.location-details-navigation:not(:first-child)::before {
  content: '|' !important;
}

/* Completed = success (green) */
.invoice-payment-status-badge .completed {
  background-color: #d4edda; /* pale green */
  color: #155724; /* deep green */
}

/* Pending = warning (yellow/orange) */
.invoice-payment-status-badge .pending {
  background-color: #fff3cd; /* soft amber */
  color: #856404; /* dark golden */
}

/* Failed = danger (red) */
.invoice-payment-status-badge .failed {
  background-color: #f8d7da; /* light red/pink */
  color: #721c24; /* strong crimson */
}

/* Cancelled = neutral grey */
.invoice-payment-status-badge .cancelled {
  background-color: #e2e3e5; /* light gray */
  color: #383d41; /* dark gray */
}

/* Invoice Style  */
.profile-invoice-details-page .invoice-data td,
.profile-invoice-details-page .invoice-data th {
  border: 1px solid #3a4257;
}
.profile-invoice-details-page .invoice-data thead {
  background-color: #27304a;
}
.profile-invoice-details-page .invoice-details {
  background-color: #27304a;
}
.profile-invoice-details-page .total-amount {
  color: #82b1ff; 
}
.profile-invoice-details-page .invoice-box {
  padding: 10px;
}
.z-top {
    z-index: 1 !important;
}

/* Payment Profile Page CSS */
.payment-profile-cards, .payment-profile-cards::before{
  border-radius: 5px;
}
.payment-profile-cards .accordion-toggle::before{
  content: none !important;
}

.payment-profile-cards.panel{
  border: 3px dotted rgba(31, 31, 31, 0.342) !important
}

.my-account-card-icon, .verification-card-icon, .subscription-card-icon {
  position: absolute;
  right: 8px;
  top: 2px;
  width: 35px;
  height: auto;
}

/* General styling for the Stripe Element container */
.StripeElement {
  margin-top: 18px;
  padding: 5px;
  border: 1px solid #141b2d;
  border-radius: 4px;
  background-color: #141b2d;
}

#payment-method .StripeElement {
  border: 1px solid #d4d5da;
  margin-top: 0px;
  padding: 5px;
  border-radius: 4px;
  background-color: #ffffff;
  height: 38px;
  line-height: 38px;
}

/* States */
.StripeElement--focus {
  border-color: #4a90e2 !important; /* Blue border when focused */
}

.StripeElement--invalid {
  border-color: #e74c3c !important; /* Red border for invalid input */
}

.StripeElement--complete {
  border-color: #2ecc71 !important; /* Green border for valid input */
}

/* Stepper */
.active .bs-stepper-circle{
  background-color: #ee7118 !important;
}
.active .bs-stepper-label {
  color: #ee7118 !important;
}

/* all lines that come before the active step */
.bs-stepper-header .line:has(~ .step.active) {
  background-color: #ee7118 !important;
}
/* all circles before the active step */
.bs-stepper-header .step:has(~ .step.active) .bs-stepper-circle {
  background-color: #ee7118 !important;
}
/* all labels before the active step */
.bs-stepper-header .step:has(~ .step.active) .bs-stepper-label {
  color: #ee7118 !important;
}

/* Enable Pointer Events */
.bs-stepper .step-trigger.disabled, .bs-stepper .step-trigger:disabled {
    pointer-events: all !important;
}

.verification-error-message, .billing-error-message {
  color: #ee7118 !important;
  font-size: 12px; 
  text-align: start;
  display: block;
}

#otp-container {
  display: none;
}

/* Hover effect on input fields */
.otp-box:focus {
  border-color: #ee7118 !important;
  outline: none; 
}

/* Resend OTP Button Styling */
#resend-otp-button {
  color: #ee7118;
  display: none;
}

/* Timer Styling */
#timer {
  color: #999;
}

/* Loading icon spin */
.icon-spin {
  display: inline-block;
  animation: icon-spin 1s infinite linear;
}

/* Highlight Selected Card */
.payment-profile-cards:has(input[type="radio"]:checked) {
  box-shadow: 0 0 20px #eb6a0e !important;
  border: 2px solid #ee7118;
  border-radius: 0.5rem
}
#verification-characters-count{
  float: right;
}
@keyframes icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}

/* make the placeholder visible */
.select2-search__field {
  width: 100% !important;
}

/* Dispute Claim Badge - Light Theme */
.dispute-claim-status-badge .requested {
  background-color: #fff3cd; /* soft amber/yellow */
  color: #856404; /* dark golden text */
}

.dispute-claim-status-badge .approved {
  background-color: #d4edda; /* light mint green */
  color: #155724; /* deep green text */
}

.dispute-claim-status-badge .rejected {
  background-color: #f8d7da; /* light pink/red */
  color: #721c24; /* strong crimson text */
}

.dispute-claim-status-badge .canceled {
  background-color: #e2e3e5; /* light gray */
  color: #383d41; /* dark gray text */
}

.select-box{
  background-color: transparent !important;
}
.mw-50{
  max-width: 50% !important;
  height: 50% !important;
}

/* Profile Section photo gallery  */

/* Ensure each slide is positioned for overlay */
.profile-gallery-section .swiper-slide {
  position: relative;
  overflow: hidden;
}

/* Dark overlay on hover */
.profile-gallery-section .swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

/* Icon container (centered) */
.profile-gallery-section .swiper-slide .d-flex {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  gap: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2; /* show above overlay */
}

/* Style icons */
.profile-gallery-section .swiper-slide .d-flex a {
  display: inline-flex;         /* turn the anchor into a flex box */
  align-items: center;
  justify-content: center;
  width: 40px;                  /* control size here for consistent circle */
  height: 40px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease;
  padding: 0;                   /* don't combine padding+width */
}

.profile-gallery-section .swiper-slide .d-flex a i {
  font-size: 20px;
  color: #fff;
  line-height: 1;
  display: block;
}
.circular-bg-icon{
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  height: 30px;
  width: 30px;
}
.profile-gallery-section .swiper-slide .d-flex a i:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* On hover: show overlay + icons */
.profile-gallery-section .swiper-slide:hover::after {
  opacity: 1;
}

.profile-gallery-section .swiper-slide:hover .d-flex {
  opacity: 1;
}

/* Youtube Gallery - Light Theme */
#video-upload-error-message {
  background-color: #f8d7da;   
  border: 1px solid #f5c6cb;   
  color: #721c24;              
}

#video-upload-success-message {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;           
}

#lg-actual-size{
  display: none !important;
}

/* Reset LG defaults */
.lg-toolbar .lg-icon:before,
.lg-toolbar .lg-icon:after,
.lg-actions .lg-icon:before,
.lg-actions .lg-icon:after {
  content: none !important;
}
/* Override default LightGallery icons with FontAwesome v4 */
.lg-toolbar .lg-icon,
.lg-actions .lg-icon {
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  text-align: center;
  font-size: 18px;
  line-height: 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  padding: 0px !important ;
  background: rgba(0,0,0,0.6); /* dark semi-transparent background */
  color: #fff;                 /* white icon */
  display: inline-block;
  margin: 4px;
  transition: background 0.2s ease;
}
.lg-toolbar .lg-icon:hover,
.lg-actions .lg-icon:hover {
  background: rgba(0,0,0,0.85);
}
/* Close (fa-times) */
.lg-toolbar .lg-close:after {
  content: "\f00d" !important; /* fa-times */
}
/* Zoom In (fa-search-plus) */
.lg-toolbar #lg-zoom-in:after {
  content: "\f00e" !important; /* fa-search-plus */
}
/* Zoom Out (fa-search-minus) */
.lg-toolbar #lg-zoom-out:after {
  content: "\f010" !important; /* fa-search-minus */
}
/* Actual size (fa-arrows-alt) */
.lg-toolbar #lg-actual-size:after {
  content: "\f0b2" !important; /* fa-arrows-alt */
}
/* Prev (fa-chevron-left) */
.lg-actions .lg-prev:after {
  content: "\f104" !important; /* fa-chevron-left */
}
/* Next (fa-chevron-right) */
.lg-actions .lg-next:after {
  content: "\f105" !important; /* fa-chevron-right */
}


.vertical-scroll {
  overflow-y: auto;
  padding-left: 0;
}

.vertical-scroll li {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}
.vertical-scroll li:last-child {
  border-bottom: none;
}

.wideget-user-tab .tabs-menu1 ul li {
  width: 50%; /* each li takes half */
}

.wideget-user-tab .tabs-menu1 ul li a {
  display: block;
  text-align: center;
  padding: 17px 0; /* top/bottom only */
  width: 100%;     /* make link stretch to full li width */
}

.contact-us-page{
  border-radius: 20px !important;
}
#similar-listings{
  height: 460px !important;
}
#user-profile{
  object-fit: cover;
}
.category-tile {
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.category-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;
}

.category-box:hover {
  background: linear-gradient(135deg, #ee7118, #eb596a);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.category-name {
  font-size: 1rem;
  font-weight: 600;
}

.category-code {
  font-size: 0.85rem;
  color: #888;
}

.category-box:hover .category-code {
  color: rgba(255,255,255,0.9);
}

.breadcrumb1 {
  background-color: transparent !important;
}

.listing-details-main-page .card .card-header {
  background-color: #f2914b !important;
  color: #fff; /* makes text readable */
}

#back-to-top i {
  padding-top: 16px !important;
  font-size: 18px !important;
  transform: rotate(0deg) !important;
  margin-left: 0px !important;
}

.premium-badge-ribbon::before,
.premium-badge-ribbon::after {
  content: none !important;
}

/* Premium Pill Badge */
.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px; 
  background: linear-gradient(135deg, #ee7118, #ff9d5c) !important; 
  color: #fff;
  padding: 6px 14px;
  border-radius: 0px 10px 10px 0px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15); 
  position: relative;
  z-index: 20;
  cursor: default;
  user-select: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transform: translateY(-2px) !important;
  border:1px groove white;
}

.premium-badge:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.premium-badge::before {
  content: "★"; 
  font-size: 12px;
  color: #fff;
  margin-left: 5px;
}
.dashboard-list-head-btn{
  height: 38px;
}
.page-link:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 165, 0, 0.4) !important;
}
/* Responsive review badge + rating sizing (drop into your stylesheet) */
.responsive-review { display: inline-flex; align-items: center; gap: 0.2rem; }

.responsive-review .review_score.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  box-sizing: border-box;
  margin-left: 5px;
}
/* Rating box text + star sizing */
.responsive-review .listing-rating-box {
  display: inline-flex;
  align-items: center;
  gap: clamp(6px, 1.2vw, 10px);
  font-size: clamp(0.70rem, 1.6vw, 0.95rem);
  color: #6c757d; /* muted text color */
}

.premium-badge-listing-details-page {
  border-radius: 10px !important;
  top: 4px !important;
}
.premium-badge-listing-details-page::before {
  padding-left: 10px !important;
}

.sep {
  color: #aaa; /* subtle separator */
  margin: 0 4px;
}

#details-section .opening-hours-day{
    width: 110px;
    min-width: 110px;
}

textarea {
  resize: none !important;
}

.single-page .wrapper input {
  height: 53px !important;
}

.form-control {
  padding: 0.5rem 0.75rem !important;
}

.arrow-ribbon{
  padding: 2px 5px 2px 18px !important;
}

.location-details-navigation{
  white-space: nowrap;
}

.item-user span i {
  background-color: #f1eef7 !important;
}

.word-wrap-anywhere{
  word-wrap: anywhere !important;
}

.whitespace-normal{
  white-space: normal !important;
}

.contact-us-form-textarea{
  padding: 11px 0.75rem !important;
}

.btn {
  text-wrap: auto !important;
}
.padding-y{
  padding:0.50rem 0.5rem !important;
}
.btn-md{
  font-size: 0.875rem !important;
  line-height: 1.33333333 !important;
  border-radius: 3px !important;
}
/* Review section css */
.review-comments-avatar img,
.media img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.review-comment-body {
  background-color: rgba(130,128,128,0.2);
  padding: 20px 20px 15px;;
  border-radius: 10px;
  position: relative;
  flex: 1;
  min-width: 0;
}

.review-comment-body::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 22px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid rgba(130,128,128,0.2);
  z-index: 1;
}

.review-reply-section .media {
  position: relative;
  background-color: rgba(130,128,128,0.2) !important;
  padding: 15px 20px;
  border-radius: 8px;
  margin-left: 60px;
  min-width: 0;
}

@media (max-width: 575px) {
  .reviews-comments-item .d-flex.w-100 { flex-direction: column; gap: .5rem; align-items: stretch; }
  .review-comment-body::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid rgba(130,128,128,0.2);
  }
  /* .review-comment-body, */
  .review-reply-section {
    margin-left: 0px;
    padding: 12px;
    border-radius: 10px;
  }
}
.collapse-icon {
  transition: transform 0.3s ease;
}

[aria-expanded="false"] .collapse-icon {
  transform: rotate(-180deg);
}

[aria-expanded="true"] .collapse-icon {
  transform: rotate(0deg);
}

/* Only show collapse functionality on mobile */
@media (min-width: 768px) {
  #collapse-icon {
      display: none !important;
  }

  #filterCollapse {
      display: block !important;
  }
}

/* Make header clickable only on mobile */
@media (max-width: 767px) {
  .card-header[data-bs-toggle="collapse"] {
      cursor: pointer;
  }
  
  .card-header[data-bs-toggle="collapse"]:hover {
      background-color: rgba(0,0,0,0.02);
  }
}
#list-sorting-filter + .select2 .select2-selection--single {
  padding-left: 20px;
}
.sort-icon{
  position: relative;
  z-index: 1;
  left: 24px;
}

@media screen and (max-width: 1279px) {
  #details-section .card .card-header {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  #details-section .card.working-hours-card .card-header .arrow-ribbon {
    font-size: 11px;
    padding-right: 10px;
    top: 18px;
  }
}

.main-footer .view-all-link:hover {
  color: #fff !important;
}

.icon-w-18 {
  width: 18px !important;
  min-width: 18px !important;
}
.input-with-icon {
  padding-right: 42px !important;
}
.address-icon {
  padding-left: 3px;
}
/* Breadcrumb mobile view design */
@media (max-width: 576px) {
  .custom-breadcrumb {
    flex-direction: column !important;
    padding-left: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }
    
  .custom-breadcrumb-item1 {
    margin-bottom: 4px !important;
    display: flex !important;
  }
}
.product-tags a{
  text-align: center;
  padding:5px !important;
}
.custom-ml{
  margin-left: 1px;
}
@media (max-width: 575.98px) {
  .transactions th:nth-child(3), .transactions td:nth-child(3) {
      min-width: 200px;
  }
}
.popular-categories-section {
  row-gap: 1rem !important;

  .btn {
    color: #f97316 !important;

    &:hover {
      color: #000 !important;
    }
  }
}

.alphabet-filter {
  background-color: #f97316 !important;
  color: #fff !important;
  width: 30px !important;
}

.alphabet-filter:hover {
  background-color: #343A40 !important;
  color: #fff !important;
}

.google-map-icon {
  background: linear-gradient(135deg, #4285F4, #34A853, #FBBC05, #EA4335);
  background: conic-gradient(from 0deg, #4285F4 0%, #34A853 35%, #FBBC05 65%, #EA4335 85%, #4285F4 100%);
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

.google-map-bg {
  background: #f8f9fa;
  border: 1px solid #e6ebf1;
}

@media (max-width: 767px) {
  .tolt-multiline::after {
    width: 180px !important;
    font-size: 10px !important;
    padding: 8px 12px !important;
  }
}

.ml-1 {
  margin-left: 0.2rem !important;
}

/* Specific fix for centered bottom tooltips on small icons */
.tolt-bottom-fix {
  position: relative !important;
  display: inline-flex !important;
  width: fit-content !important;
  align-items: center;
}

.tolt-bottom-fix[data-microtip-position="bottom"]::after {
  left: 50% !important;
  top: 100% !important;
  transform: translate3d(-50%, 5px, 0) !important;
}

.tolt-bottom-fix[data-microtip-position="bottom"]::before {
  left: 50% !important;
  top: 100% !important;
  transform: translate3d(-50%, 0, 0) !important;
}

/* Custom Search Input for View All Pages */
.custom-search-container {
    width: 100%;
    float: left;
    padding: 0 15px;
    margin-bottom: 40px;
}
.custom-search-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}
.custom-search-input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    font-size: 16px;
    border: 1px solid #e5e7f2;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    outline: none;
    transition: all 0.3s ease;
    background-color: #fff;
    box-sizing: border-box;
    color: #333;
}
.custom-search-input:focus {
    border-color: #4DB7FE;
    box-shadow: 0 4px 20px rgba(77, 183, 254, 0.15);
}
.custom-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 18px;
    pointer-events: none;
}

/* Search Highlight Overrides */
mark, .mark,
.dark-theme mark, .dark-theme .mark {
    background-color: #ffc107 !important;
    color: #000 !important;
    padding: 0 2px !important;
    border-radius: 2px !important;
}

/* Overriding style.css high specificity display rule for empty cards */
.cities-state-section .grid-wrapper > div.d-none,
.cities-state-section .card-box.d-none {
    display: none !important;
}

/* How It Works & Timeline Custom Styling */
.process-item_time-line {
  float: left;
  width: 33.333%;
  position: relative;
  z-index: 2;
  padding: 0 15px;
}
.process-item_time-line:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  top: 20px;
  z-index: 1;
  background: linear-gradient(90deg, rgba(51, 51, 51, 0.1) 0%, var(--primary-bg-color) 50%, rgba(51, 51, 51, 0.1) 100%);
}
.process-item_time-line:first-child:before {
  left: 50%;
}
.process-item_time-line:last-child:before {
  right: 50%;
}
.pi_head {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  font-weight: 800;
  color: #fff;
  z-index: 20;
  position: relative;
  text-align: center;
  box-shadow: 0 0 0 6px rgba(51, 51, 51, 0.15);
}
.pi_head.color-bg {
  background: #4f46e5;
}
.section-title h2 {
  color: #0a1931;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  color: #64748b;
  font-size: 0.95rem;
}
.section-separator {
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #4f46e5, transparent);
  border-radius: 10px;
  margin: 12px auto 0;
}
.pi-text {
  background: #fff;
  border-radius: 16px;
  padding: 35px 25px;
  box-shadow: 0 12px 40px rgba(58, 87, 135, 0.05);
  border: 1px solid rgba(51, 51, 51, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin-top: 20px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.pi-text:hover {
  transform: translateY(-8px);
  border-color: rgba(51, 51, 51, 0.3);
  box-shadow: 0 20px 40px rgba(51, 51, 51, 0.12) !important;
}
.icon-wrapper {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 24px;
  transition: all 0.35s ease;
  background: linear-gradient(135deg, rgba(51, 51, 51, 0.05) 0%, rgba(51, 51, 51, 0.12) 100%);
  border: 1px solid rgba(51, 51, 51, 0.1);
}
.icon-wrapper i {
  color: var(--primary-bg-color);
  transition: all 0.35s ease;
}
.pi-text:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background: var(--primary-bg-color);
  border-color: var(--primary-bg-color);
  box-shadow: 0 8px 20px rgba(51, 51, 51, 0.3);
}
.pi-text:hover .icon-wrapper i {
  color: #ffffff;
}
.step-title {
  color: var(--primary-bg-color);
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 1.2rem;
  letter-spacing: -0.3px;
}
.step-desc {
  color: #7d93b2;
  font-size: 0.92rem;
  line-height: 1.6;
}
.featured-section {
  padding-bottom: 40px;
}
.how-it-works-section {
  padding-top: 40px;
}

@media only screen and (max-width: 768px) {
  .process-item_time-line {
    width: 100%;
    margin-bottom: 40px;
  }
  .process-item_time-line:before {
    display: none;
  }
}


/* Nearby Businesses Premium Refactoring */

.nearby-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nearby-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 8px;
  text-decoration: none !important;
  color: inherit !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.nearby-row:hover {
  background: #fafbfd !important;
  border-color: rgba(51, 51, 51, 0.25) !important;
  transform: translateY(-1.5px);
  box-shadow: 0 6px 16px -4px rgba(51, 51, 51, 0.12);
}

.nearby-logo-wrapper {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #f1f5f9;
  background-color: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nearby-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nearby-logo-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #3e4b5b;
  background: #f9faff;
}

.nearby-info {
  min-width: 0;
  flex: 1;
  padding-left: 10px;
  text-align: left;
}

.nearby-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #3e4b5b;
  margin-bottom: 2px;
  line-height: 1.3;
}

.nearby-row:hover .nearby-name {
  color: var(--primary-bg-color);
}

.nearby-address {
  font-size: 0.72rem;
  color: #747f93;
  display: flex;
  align-items: flex-start;
  gap: 4px;
  white-space: normal;
}

.nearby-address i {
  color: var(--primary-bg-color);
  font-size: 0.7rem;
  margin-top: 2px;
}

.nearby-meta {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  margin-left: 10px;
}

.nearby-distance-badge {
  background-color: rgba(51, 51, 51, 0.08);
  color: var(--primary-bg-color);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 4px;
  border: 1px solid rgba(51, 51, 51, 0.15);
  white-space: nowrap;
}

.nearby-rating-stars {
  font-size: 0.65rem !important;
}

/* Common/general utilities if not already defined */
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.min-w-0 {
  min-width: 0 !important;
}
