/* Main Custom Styles for The Puja Pandit */

/* Shared Puja List Item Styles */
.pooja-list-item {
  display: block;
  padding: 12px 18px;
  background: #fff;
  border: 1px solid #bcbaba;
  border-radius: 12px;
  color: #444;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 2px;
}

.pooja-list-item:hover {
  background: #fff8f0;
  border-color: #ff9933;
  color: #ff9933;
  transform: translateX(5px);
}

.pooja-list-item i {
  margin-right: 10px;
  font-size: 0.9rem;
  opacity: 0.6;
}

.pooja-list-item:hover i {
  opacity: 1;
  transform: scale(1.2);
}



.page-header-minimal {
  border-bottom: 1px solid #eee;
  padding-bottom: 25px;
  margin-bottom: 40px;
}

/* Contact Us Page Styles */
:root {
  --brand-saffron: #ff9933;
  --brand-saffron-rgb: 255, 153, 51;
  --brand-soft-bg: #fffbf7;

  /* Override Bootstrap Primary (if it was red) */
  --bs-primary: #ff9933;
  --bs-primary-rgb: 255, 153, 51;
  --bs-link-color: #ff9933;
  --bs-link-hover-color: #e68a2e;

  /* Override Danger to Branding Orange */

  --bs-danger: #ff9933;
  --bs-danger-rgb: 255, 153, 51;
}

/* Force Primary Buttons to Orange */
.btn-primary,
.btn-danger {
  --bs-btn-bg: #ff9933;
  --bs-btn-border-color: #ff9933;
  --bs-btn-hover-bg: #e68a2e;
  --bs-btn-hover-border-color: #e68a2e;
  --bs-btn-active-bg: #e68a2e;
  --bs-btn-active-border-color: #e68a2e;
  background-color: #ff9933 !important;
  border-color: #ff9933 !important;
}

.btn-primary:hover,
.btn-danger:hover {
  background-color: #e68a2e !important;
  border-color: #e68a2e !important;
}

.btn-outline-primary,
.btn-outline-danger {
  --bs-btn-color: #d33c3c;
  --bs-btn-border-color: #d33c3c;
  --bs-btn-hover-bg: #d33c3c;
  --bs-btn-hover-border-color: #d33c3c;
  --bs-btn-active-bg: #d33c3c;
  --bs-btn-active-border-color: #d33c3c;
  color: #d33c3c !important;
  border-color: #d33c3c !important;
}

.btn-outline-primary:hover,
.btn-outline-danger:hover {
  background-color: #d33c3c !important;
  border-color: #d33c3c !important;
  color: #fff !important;
}

.contact-page-header {
  background-color: var(--brand-soft-bg);
  padding: 100px 0 60px 0;
  text-align: center;
}

.minimal-card {
  border: 1px solid #eee;
  border-radius: 20px;
  transition: all 0.3s ease;
  background: #fff;
}

.minimal-card:hover {
  border-color: var(--brand-saffron);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--brand-soft-bg);
  color: var(--brand-saffron);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.form-minimal .form-control,
.form-minimal .form-select {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 15px 20px;
  background-color: #fcfcfc;
  transition: all 0.3s ease;
}

.form-minimal .form-control:focus {
  background-color: #fff;
  border-color: var(--brand-saffron);
  box-shadow: 0 0 0 4px rgba(255, 153, 51, 0.1);
}

.btn-minimal {
  background-color: var(--brand-saffron);
  color: #fff;
  border-radius: 12px;
  padding: 15px 40px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.btn-minimal:hover {
  background-color: #e68a2e;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 153, 51, 0.2);
  color: #fff;
}

.social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f8f8f8;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--brand-saffron);
  color: #fff;
}

/* Reverse Hover: Filled to Outline */
.btn-reverse-hover {
  transition: all 0.3s ease;
}

.btn-reverse-hover.btn-primary:hover {
  background-color: transparent !important;
  color: var(--bs-primary) !important;
  border-color: var(--bs-primary) !important;
}

.btn-reverse-hover.btn-success:hover {
  background-color: transparent !important;
  color: var(--bs-success) !important;
  border-color: var(--bs-success) !important;
}

.btn-reverse-hover.btn-warning:hover {
  background-color: transparent !important;
  color: #ff9933 !important;
  border-color: #ff9933 !important;
}

.btn-reverse-hover.btn-danger:hover {
  background-color: transparent !important;
  color: var(--bs-danger) !important;
  border-color: var(--bs-danger) !important;
}

.btn-reverse-hover.btn-secondary:hover {
  background-color: transparent !important;
  color: var(--bs-secondary) !important;
  border-color: var(--bs-secondary) !important;
}





/*MOBILE VIEW*/
/* Premium Pandit Card & Verified Badge Styles */
.listing-card {
  transition: all 0.3s ease-in-out !important;
  border-top: 3px solid transparent !important;
  background-color: var(--brand-soft-bg) !important;
}

.listing-card:hover {
  border-top: 3px solid #ff9933 !important;
  transform: translateY(-5px);
}

.pooja-info-block {
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  padding: 6px 0;
  margin: 8px 0;
  width: 100%;
}

.verified-badge-custom {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer;
  z-index: 10;
}

.verified-badge-custom:hover {
  background-color: #fff !important;
  border-color: #198754 !important;
  padding-left: 12px !important;
  padding-right: 12px !important;
}

.verified-badge-custom .verified-text {
  display: none;
  font-size: 11px;
  font-weight: 700;
  color: #198754;
  white-space: nowrap;
}

.verified-badge-custom:hover .verified-text {
  display: inline-block !important;
  margin-right: 4px;
}

.verified-badge-custom:hover i {
  color: #198754 !important;
}

.pandit-avatar-size {
  width: 100px;
  height: 100px;
}




/* Selected Pooja box styling */
#pujaGrid .col>div {
  border: 1px solid #dee2e6;
  border-radius: 12px;
  /* little radius */
  background-color: #faf9f8;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* Hover effect */
#pujaGrid .col>div:hover {
  background-color: #fff8f0 !important;
  /* light orange */
  border-color: #ff9800 !important;
  /* orange border */
  color: #e65100;
  /* dark orange text */
  box-shadow: 0 4px 10px rgba(255, 152, 0, 0.2);
}

.editable-title:hover .edit-btn {
  display: inline-flex !important;
}

.title-text[contenteditable="true"] {
  outline: 2px dashed #0d6efd;
  padding: 2px 6px;
  border-radius: 4px;
}

.hover-effect-target span {
  pointer-events: none;
}


.contact-page-header {
  padding: 30px 0;
  /* Controls total height */
}

.contact-page-header h1 {
  font-size: 30px;
  /* Smaller heading */
}

@media (max-width: 576px) {
  .pandit-avatar {
    width: 56px !important;
  }
}

@media (max-width: 767px) {
  ul.row li {
    line-height: 1.3;
  }
}


/* ============================
   MOBILE SIMPLE LIST (NO GAP)
   ============================ */

@media (max-width: 767.98px) {

  /* Single column */
  .card-body .row.fs-sm>.col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Remove row spacing */
  .card-body .row.fs-sm {
    row-gap: 0 !important;
  }

  /* Simple list alignment */
  .card-body .row.fs-sm .col {
    display: flex;
    align-items: flex-start;
    padding: 4px 0;
    /* very minimal vertical spacing */
  }

  /* Icon spacing */
  .card-body .row.fs-sm .col i {
    margin-right: 8px;
    margin-top: 3px;
    font-size: 0.95rem;
    flex-shrink: 0;
  }

}

/* Mobile layout adjustments */
@media (max-width: 575.98px) {

  /* 1. Make Why Choose Us items stacked vertically */
  .row.row-cols-2.row-cols-sm-3>.col {
    flex: 0 0 100%;
    /* each col takes full width */
    max-width: 100%;
  }

  /* Keep icon and text in one row */
  .row .col.d-flex {
    flex-direction: row !important;
    /* force row, not column */
    align-items: center;
    /* vertical alignment */
    gap: 0.5rem;
    /* spacing between icon and text */
  }

  /* Reduce icon size for mobile */
  .row .col i {
    font-size: 1.2rem !important;
    /* smaller icon on mobile */
    margin-bottom: 0;
    /* no margin below icon */
  }

  /* Each service takes full width */
  .row.row-cols-2.row-cols-sm-3>.col {
    flex: 0 0 100%;
    /* full width per service */
    max-width: 100%;
    margin-bottom: 0.5rem;
    /* spacing between services */
  }

}

/* Make 2 cards per row square on mobile */
@media (max-width: 767.98px) {
  .square-card {
    aspect-ratio: 1 / 1;
    /* square shape */
  }

  .square-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
  }

  .square-card svg {
    width: 3rem;
    height: 3rem;
  }

  .square-card h4 {
    margin-top: 0.5rem;
    font-size: 0.85rem;
  }
}


@media (max-width: 767.98px) {

  /* Stack label and value */
  .general-info ul li {
    display: flex;
    flex-direction: column;
    /* stack vertically */
    margin-bottom: 0.6rem;
  }

  .general-info ul li .label {
    font-weight: 500;
    /* keep it emphasized */
  }

  .general-info ul li .value {
    margin-top: 0.2rem;
    font-weight: 600;
  }

  /* Optional: reduce card padding for mobile */
  .general-info {
    padding: 1.5rem;
  }

  .general-info h2 {
    font-size: 1.2rem;
  }
}


/* Mobile view adjustments */
@media (max-width: 991.98px) {

  /* Reduce card padding on mobile */
  .pandit-card-mobile {
    padding: 1rem !important;
  }

  /* Scale avatar for mobile */
  .pandit-avatar-size {
    width: 80px !important;
    height: 80px !important;
  }

  /* Badge adjustments */
  .verified-badge-custom {
    font-size: 0.6rem !important;
    padding: 0.25rem !important;
  }

  /* Button adjustments */
  .btn.w-100 {
    font-size: 0.9rem !important;
    padding: 0.5rem !important;
  }

  /* Avatar + name: column layout for mobile */
  .pandit-card-mobile .d-flex.align-items-center {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Remove left padding from name section */
  .pandit-card-mobile .ps-4 {
    padding-left: 0 !important;
    margin-top: 0.5rem;
  }

  /* Nav list alignment center */
  .pandit-card-mobile .nav.flex-column {
    align-items: center;
  }

  /* REVIEW + EXPERIENCE: horizontal row, logo + text inline */
  .pandit-card-mobile .d-flex.align-items-center.gap-2.mb-2 {
    flex-direction: row !important;
    /* horizontal row */
    justify-content: center;
    /* center under name */
    flex-wrap: nowrap;
    /* prevent wrapping */
    gap: 1rem;
    /* space between review and experience */
  }

  /* Inner items (logo + text) forced inline */
  .pandit-card-mobile .d-flex.align-items-center.gap-2.mb-2>div {
    flex-direction: row !important;
    /* logo + text inline */
    align-items: center;
    gap: 0.25rem;
    /* small space between logo and text */
  }

  /* CONTACT INFO: icon + text inline */
  .pandit-card-mobile .nav.flex-column.gap-2.mb-4 .nav-item {
    flex-direction: row !important;
    align-items: center;
    justify-content: flex-start;
    /* or center if you prefer */
    gap: 0.5rem;
  }

  /* Contact link font size */
  .pandit-card-mobile .nav.flex-column.gap-2.mb-4 .nav-item a {
    font-size: 0.9rem;
  }
}


/* MOBILE VIEW ONLY */
@media (max-width: 767.98px) {

  /* Stack main container vertically */
  .d-flex.align-items-start.align-items-sm-center.justify-content-between {
    flex-direction: column !important;
    align-items: center !important;
  }

  /* Inner container stack vertically */
  .d-sm-flex.align-items-center.me-4 {
    flex-direction: column !important;
    align-items: center !important;
    margin-bottom: 1rem !important;
  }

  /* Image size and center */
  .d-sm-flex .ratio.ratio-1x1 {
    width: 96px !important;
    margin-bottom: 0.5rem !important;

    /* Center the image horizontally */
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    /* override flex alignment */
  }

  /* Make img inside ratio perfectly centered and fit */
  .d-sm-flex .ratio.ratio-1x1 img {
    display: block;
    margin: 0 auto;
    object-fit: cover;
  }

  /* Move Verified badge below image and stack with name */
  .d-flex.align-items-center.pb-1.mb-2 {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.25rem;
  }

  /* Name below Verified badge */
  .d-flex.align-items-center.pb-1.mb-2 h1.h5 {
    order: 2;
    /* Name after badge */
    margin-bottom: 0 !important;
  }

  .d-flex.align-items-center.pb-1.mb-2 .badge {
    order: 1;
    /* Badge first */
  }

  /* Review and cost in one row below name */
  .ps-sm-3.ps-md-4 ul.list-inline {
    flex-direction: column !important;
    align-items: center;
    padding-left: 0;
    gap: 0.5rem;
  }

  .ps-sm-3.ps-md-4 ul.list-inline li:nth-child(1),
  .ps-sm-3.ps-md-4 ul.list-inline li:nth-child(2) {
    display: inline-flex !important;
    justify-content: center;
    gap: 0.5rem;
  }

  /* Experience & Most Booked below */
  .ps-sm-3.ps-md-4 ul.list-inline li:nth-child(3),
  .ps-sm-3.ps-md-4 ul.list-inline li:nth-child(4) {
    display: block !important;
    margin-top: 0.25rem;
    text-align: center;
  }

  /* Action icons below everything */
  .d-flex.align-items-center.gap-2.mt-3 {

    justify-content: center;
  }
}

@media (max-width: 767.98px) {

  /* Parent container: stack vertically and center everything */
  .d-flex.align-items-center.pb-1.mb-2 {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    /* horizontal centering */
    justify-content: center !important;
    width: auto !important;
    /* remove fixed widths if any */
    margin-left: auto !important;
    margin-right: auto !important;
    /* center the whole container */
    text-align: center;
    gap: 0.25rem;
    padding: 0;
    /* remove extra padding if needed */
  }

  /* Pandit name */
  .d-flex.align-items-center.pb-1.mb-2 h1.h5 {
    order: 2;
    margin: 0 !important;
    width: auto !important;
    /* allow it to shrink to content */
    text-align: center;
  }

  /* Verified badge */
  .d-flex.align-items-center.pb-1.mb-2 .badge {
    order: 1;
  }
}

@media (max-width: 767.98px) {

  /* Reduce spacing above and below the action icon row */
  .d-flex.align-items-center.gap-2.mt-3 {
    margin-top: 0.25rem !important;
    /* reduce top space */
    margin-bottom: 0 rem !important;
    /* reduce bottom space */
  }
}

/*MOBILE VIEW FINISH ALL DONE*/






/*1024 VIEW START*/
/* ===============================
   FIX ONLY FOR 1024px SCREENS
   (Bootstrap LG range)
   =============================== */

@media (min-width: 992px) and (max-width: 1199.98px) {

  /* Force exactly 2 columns */
  .card-body .row.fs-sm {
    --bs-columns: 2;
  }

  .card-body .row.fs-sm>.col {
    flex: 0 0 50%;
    max-width: 50%;
  }

  /* Keep icon + text in one line */
  .card-body .row.fs-sm .col {
    display: flex;
    align-items: center;
    white-space: nowrap;
    /* Prevent text break */
  }

  /* Proper icon spacing */
  .card-body .row.fs-sm .col i {
    margin-right: 8px;
    flex-shrink: 0;
  }

}

@media (min-width: 992px) and (max-width: 1199.98px) {

  /* Stack review on top and experience below */
  .d-flex.align-items-center.gap-2.mb-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* center horizontally */
    gap: 4px;
    /* space between review and experience */
  }

  /* Hide the separator "|" */
  .d-flex.align-items-center.gap-2.mb-2>.text-muted.fs-xs {
    display: none;
  }

  /* Experience: icon + text inline but centered below review */
  .d-flex.align-items-center.gap-2.mb-2>.d-flex.align-items-center.fs-xs.text-secondary {
    flex-direction: row;
    /* icon + text inline */
    align-items: center;
    justify-content: center;
    gap: 4px;
  }

  /* Adjust icon size if needed */
  .d-flex.align-items-center.gap-2.mb-2>.d-flex.align-items-center.fs-xs.text-secondary i {
    font-size: 1.2rem;
  }

}

@media (min-width: 992px) and (max-width: 1199.98px) {

  /* Center the whole link */
  .mb-1 a.stretched-link {
    display: inline-block;
    text-align: center;
    width: 100%;
  }

  /* Force first word onto a new line */
  .mb-1 a.stretched-link::first-letter {
    content: "";
  }

  /* Trick: insert line break before first space */
  .mb-1 a.stretched-link {
    white-space: pre-wrap;
    /* allow line breaks */
  }

  .mb-1 a.stretched-link::before {
    content: attr(data-text);
    display: block;
  }

}


/* default state */
.step-icon {
  background: transparent !important;
  border: 1px solid #fff;
  transition: all 0.3s ease;
}

/* active + completed = WHITE circle */
.step-item.active .step-icon,
.step-item.completed .step-icon {
  background: #fff !important;
  border-color: #fff !important;
}

/* icon color when white */
.step-item.active i,
.step-item.completed i {
  color: #0dcaf0 !important;
}

/* icon color default */
.step-icon i {
  color: #fff;
}

/* Packages card effect */
.pricing-card {
  border: 2px solid transparent;
  transition: 0.3s;
}

.pricing-card:hover {
  border-color: #3d7a81;
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}


.search-suggestions {
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 12px;
  margin-top: 6px;
  border: 1px solid #eee;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 260px;
  overflow-y: auto;
}

.search-suggestions a {
  padding: 12px 16px;
  font-size: 14px;
  border: none;
  border-bottom: 1px solid #f1f1f1;
}

.search-suggestions a:hover {
  background: #f8f9fa;
}

/* Pandit listing image fix */
.listing-card .card-img-top img {
  object-fit: contain !important;
  object-position: center center !important;
  background: #f8f8f8;
}

/* Small round profile image */
.listing-card .rounded-circle img {
  object-fit: cover !important;
  object-position: center top !important;
}

@media (max-width: 360px) {

  /* same padding */
  .general-info,
  .working-hours {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  /* remove row effect */
  .working-hours .row {
    display: block !important;
    margin: 0 !important;
  }

  /* each line same as li */
  .working-hours .working-item {
    display: block;
    margin-bottom: 0.6rem;
    padding-left: 0;
  }

}

/* Class to enforce 2-line descriptions */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wishlist-bg {
    background-color: #f1f3f5;
}

.email-otp-group #sendEmailOtpBtn,
.email-otp-group #verifyEmailOtpBtn {
    position: relative;
    z-index: 5;
    pointer-events: auto;
}

.email-otp-group .btn {
    white-space: nowrap;
}

.email-otp-group .form-control {
    min-width: 0;
}


.page-skeleton {
    display: block;
}

.page-content {
    display: none;
}

.skeleton-loading {
    position: relative;
    overflow: hidden;
    background: #f2f2f2;
    border-radius: 10px;
}

.skeleton-loading::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150px;
    width: 150px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
    animation: skeletonShimmer 1.2s infinite;
}

@keyframes skeletonShimmer {
    0% {
        left: -150px;
    }
    100% {
        left: 100%;
    }
}

.sk-hero-title {
    height: 52px;
    width: 75%;
    margin: 0 auto 18px;
    border-radius: 12px;
}

.sk-search-box {
    height: 72px;
    width: 100%;
    border-radius: 18px;
}

.sk-section-title {
    height: 34px;
    width: 260px;
    margin: 0 auto 12px;
    border-radius: 10px;
}

.sk-section-subtitle {
    height: 16px;
    width: 360px;
    max-width: 90%;
    margin: 0 auto 28px;
    border-radius: 8px;
}

.sk-puja-item {
    height: 48px;
    border-radius: 12px;
}

.sk-card {
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 18px;
    padding: 16px;
    height: 100%;
}

.sk-avatar {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    flex-shrink: 0;
}

.sk-line-lg {
    height: 18px;
    width: 65%;
    margin-bottom: 10px;
    border-radius: 8px;
}

.sk-line-md {
    height: 14px;
    width: 48%;
    margin-bottom: 10px;
    border-radius: 8px;
}

.sk-line-sm {
    height: 12px;
    width: 90%;
    margin-bottom: 8px;
    border-radius: 8px;
}

.sk-line-xs {
    height: 12px;
    width: 70%;
    border-radius: 8px;
}

.sk-btn-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
}

.sk-view-more {
    width: 180px;
    height: 46px;
    border-radius: 30px;
    margin: 0 auto;
}

.sk-flex {
    display: flex;
    gap: 14px;
}

.sk-btn-row {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

@media (max-width: 767.98px) {
    .sk-hero-title {
        height: 38px;
        width: 90%;
    }

    .sk-search-box {
        height: 62px;
    }

    .sk-section-title {
        width: 200px;
        height: 28px;
    }

    .sk-section-subtitle {
        width: 260px;
    }

    .sk-avatar {
        width: 70px;
        height: 70px;
    }
}

/* Skeleton Loader */
.skeleton-loading *{
    color: transparent !important;
}

.skeleton-loading img,
.skeleton-loading svg,
.skeleton-loading i{
    opacity: 0 !important;
}

.skeleton-loading .skeleton-box{
    position: relative;
    overflow: hidden;
    background: #e9ecef !important;
    border-radius: 10px;
}

.skeleton-loading .skeleton-box::after{
    content: "";
    position: absolute;
    top: 0;
    left: -150px;
    width: 120px;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.6),
        transparent
    );
    animation: skeletonMove 1.2s infinite;
}

@keyframes skeletonMove{
    100%{
        left: 100%;
    }
}

/* Common skeleton heights */
.sk-text{
    height: 14px;
    width: 100%;
    margin-bottom: 10px;
}

.sk-title{
    height: 24px;
    width: 180px;
    margin-bottom: 15px;
}

.sk-circle{
    width: 72px;
    height: 72px;
    border-radius: 50%;
}

.sk-card{
    height: 220px;
    border-radius: 20px;
}

.sk-gallery{
    height: 420px;
    border-radius: 20px;
}


/* =========================
   LISTING SKELETON
========================= */

.listing-card.skeleton-loading img,
.listing-card.skeleton-loading h1,
.listing-card.skeleton-loading h2,
.listing-card.skeleton-loading h3,
.listing-card.skeleton-loading h4,
.listing-card.skeleton-loading h5,
.listing-card.skeleton-loading h6,
.listing-card.skeleton-loading p,
.listing-card.skeleton-loading span,
.listing-card.skeleton-loading a,
.listing-card.skeleton-loading button,
#filterSidebar.skeleton-loading input,
#filterSidebar.skeleton-loading select,
#filterSidebar.skeleton-loading label{
    visibility: hidden !important;
}

.skeleton-box{
    position: relative;
    overflow: hidden;
    background: #e9ecef;
    border-radius: 10px;
}

.skeleton-box::after{
    content: "";
    position: absolute;
    top: 0;
    left: -150px;
    width: 120px;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.6),
        transparent
    );
    animation: skeleton-loading 1.2s infinite;
}

@keyframes skeleton-loading{
    100%{
        left: 100%;
    }
}

.sk-gallery{
    width: 100%;
    height: 220px;
    border-radius: 18px;
}

.sk-avatar{
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.sk-title{
    width: 140px;
    height: 18px;
    margin-bottom: 12px;
}

.sk-text{
    width: 100%;
    height: 14px;
    margin-bottom: 10px;
    border-radius: 6px;
}

.sk-btn{
    width: 100%;
    height: 36px;
    border-radius: 50px;
}

#filterSidebar .sk-text{
    height: 38px;
    margin-bottom: 12px;
}






.skeleton-box{
    background: #e9e9e9;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.skeleton-box::after{
    content: "";
    position: absolute;
    top: 0;
    left: -150px;
    width: 100px;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.7),
        transparent
    );
    animation: shimmer 1.2s infinite;
}

@keyframes shimmer{
    100%{
        left: 100%;
    }
}

.sk-input{
    width: 100%;
    height: 52px;
}

.sk-textarea{
    width: 100%;
    height: 120px;
}

.sk-btn{
    width: 100%;
    height: 52px;
    border-radius: 50px;
}