/* ============================================================
   FP-CARD COMPONENT STYLES
   Auto-loaded via @once @push inside fp-card.blade.php
   ============================================================ */

/* ── Featured Profiles Slider section ── */
.featured-profiles-section {
  padding: 36px 0 40px;
  background: #fff;
}

/* ── Header row ── */
.featured-profiles-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 20px;
}

.featured-profiles-title {
  font-size: 34px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}

.featured-profiles-arrows {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* ← prev: plain white circle with light border */
.fp-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #d0d0d0;
  background: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  transition:
    border-color 0.2s,
    color 0.2s;
  line-height: 1;
}

.fp-arrow:hover {
  border-color: #aaa;
  color: #111;
}

/* → next: solid magenta filled circle */
.fp-arrow.fp-next {
  background: #e91e8c;
  border-color: #e91e8c;
  color: #fff;
  box-shadow: 0 4px 14px rgba(233, 30, 140, 0.4);
}

.fp-arrow.fp-next:hover {
  background: #d01880;
  border-color: #d01880;
}

/* ── Slider ── */
.fp-slider {
  padding: 0 8px;
  visibility: hidden;
}
.fp-slider.slick-initialized {
  visibility: visible;
}
.fp-slide {
  padding: 8px 8px 14px;
}

/* ── Card wrapper — provides the gradient border ── */
.fp-card-wrapper {
  border-radius: 21px;
  padding: 3px;
  background: linear-gradient(135deg, #f72585, #7b2ff7);
  box-shadow: 0 3px 6px rgba(247, 37, 133, 0.3);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.fp-card-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 7px rgba(247, 37, 133, 0.3);
}

.fp-card-wrapper.featured-card {
  background: linear-gradient(
    145deg,
    var(--warning) 6.17%,
    rgb(199, 24, 90) 45.62%,
    rgb(167 142 7) 71.91%,
    rgb(251, 191, 36) 93.83%
  );
}

/* ── Card ── */
.fp-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center top;
  cursor: pointer;
      height: 456px;
}

/* Bottom gradient overlay */
.fp-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 58%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.8) 35%,
    rgba(0, 0, 0, 0.35) 65%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* ── Top badges stack (column) ── */
.fp-badge-stack {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fp-badge {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0; /* hides text label */
}

.fp-badge i {
  font-size: 14px; /* restores icon size */
}

/* FEATURED — gem icon, fp-rate gold theme, white icon */
.fp-badge-featured {
  background: rgba(255, 215, 0, 0.31);
  color: #fff;
  border: 2px solid #ffd700;
}

/* POPULAR — teal circle */
.fp-badge-popular {
  background: #e91e63;
  color: #fff;
  border: 2px solid white;
}

/* STAR — purple circle (matches .star-badge in sideline profile) */
.fp-badge-star {
  background: #463ce5;
  color: #fff;
  border: 2px solid white;
}

/* SUPERSTAR — red circle with white border (matches .superstar-badge in sideline profile) */
.fp-badge-superstar {
  background: red;
  color: #fff;
  border: 2px solid #fff;
}

/* Verified — green circle with white border (matches .verified-model-badge in sideline profile) */
.fp-badge-verified {
  background: #4caf50;
  border: 2px solid #fff;
  border-radius: 13px;
}

.fp-badge-verified img {
  filter: brightness(100);
}

/* ── Card bottom content ── */
.fp-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 10px 14px 16px;
  color: #fff;
}

/* Name row: Name  Age  • online dot */
.fp-name-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
  min-width: 0;
  overflow: hidden;
}

.fp-name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.fp-age {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

.fp-online-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #00e096;
  box-shadow: 0 0 0 2px rgba(0, 224, 150, 0.3);
  flex-shrink: 0;
  align-self: center;
  position: relative;
}

.fp-online-dot::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(0, 224, 150, 0.4);
  animation: online-pulse 2s ease-out infinite;
}

@keyframes online-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Meta row: rate pill + location pill */
.fp-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 5px;
  margin-bottom: 8px;
}

/* HOURLY rate pill — dark bg, golden price text */
.fp-rate {
  padding: 4px 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
  border-radius: 10px;
  border: 0.606px solid #ffd700;
  background: rgba(255, 215, 0, 0.31);
  flex-shrink: 0;
  white-space: nowrap;
}

.fp-rate small {
  color: #ffd700;
  font-size: 8px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.fp-rate .fp-rate-price {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}

/* Location pill — frosted glass */
.fp-location {
  border-radius: 9999px;
  border: 0.606px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  padding: 4px 7px;
  align-items: center;
  gap: 3px;
  flex-shrink: 1;
  min-width: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

.fp-location-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.fp-bio {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Mobile ── */
@media (max-width: 639px) {
  .featured-profiles-title {
    font-size: 20px;
  }
  .featured-profiles-header {
    padding: 0 14px 16px;
  }
}

/* ============================================================
   SUGARBABY IN TOWN / SIT GRID
   ============================================================ */

.sit-section {
  padding: 40px 0 48px;
  background: #f8f8fb;
}

/* ── Shared card grid — 2 / 3 / 5 columns ── */
.sb-card-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}

@media (min-width: 768px) {
  .sb-card-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (min-width: 1200px) {
  .sb-card-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* fp-card fills its grid cell fully */
.sb-card-grid .fp-card-wrapper,
.sb-card-grid .fp-card {
  width: 100%;
  max-width: 290px;
}


@media(max-width:767px){
.sb-card-grid .fp-card-wrapper, .sb-card-grid .fp-card {
    width: 100%;
    max-width: calc(100vw - 30px);
    height: 550px;
}
}