/* Pearl Island — Experiences Catalog (uniform offer cards) */
.pic {
  background: var(--pi-catalog-bg, transparent);
}

.pic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px;
}

@media (max-width: 760px) {
  .pic-grid {
    grid-template-columns: 1fr !important;
    gap: 26px;
  }
}

/* Card shell */
.pic-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(30, 36, 48, .06);
  border: 1px solid rgba(59, 95, 95, .06);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}

.pic-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(59, 95, 95, .20);
}

/* Media */
.pic-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.pic-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #dfeaec;
  transition: transform .6s ease;
}

.pic-card:hover .pic-img {
  transform: scale(1.06);
}

.pic-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(30, 36, 48, .28) 0%, transparent 34%, transparent 66%, rgba(30, 36, 48, .30) 100%);
}

/* Eyebrow badge */
.pic-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  padding: 7px 13px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
}

.pic-badge--pop    { background: var(--lobster, #EE7266); }
.pic-badge--iconic { background: var(--apricot, #F5B276); color: #5a3a1e; }
.pic-badge--adv    { background: var(--tuerkis, #77C3DB); color: #0e3b48; }
.pic-badge--unique { background: var(--violet, #B68FC1); }
.pic-badge--fam    { background: var(--palme, #A2B76E); color: #1f3312; }
.pic-badge--value  { background: var(--petrol, #609AAD); }
.pic-badge--priv   { background: var(--smaragd, #3B5F5F); }
.pic-badge--prem   { background: #2b3a4a; }

/* Rating pill */
.pic-rpill {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(253, 252, 248, .94);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  padding: 6px 11px;
  font-weight: 800;
  font-size: .76rem;
  color: var(--ink, #1e2430);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .14);
}

.pic-rpill svg {
  width: 13px;
  height: 13px;
  fill: var(--apricot, #F5B276);
}

.pic-rpill small {
  font-weight: 600;
  color: var(--hx-body, #56606E);
  font-size: .68rem;
}

/* Body */
.pic-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pic-body h3 {
  font-size: 1.55rem;
  line-height: 1.14;
  color: var(--pi-heading, var(--smaragd, #3B5F5F));
}

/* Meta chips */
.pic-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.pic-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--smaragd, #3B5F5F);
  background: rgba(119, 195, 219, .16);
  padding: 5px 10px;
  border-radius: 8px;
}

/* Includes checklist */
.pic-incl {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.pic-incl li {
  position: relative;
  padding-left: 28px;
  font-size: .95rem;
  font-weight: 600;
  color: #33404a;
  line-height: 1.4;
}

.pic-incl li svg {
  position: absolute;
  left: 0;
  top: 2px;
  width: 17px;
  height: 17px;
  color: var(--lobster, #EE7266);
}

/* Footer / price bar */
.pic-foot {
  margin-top: auto;
  padding-top: 18px;
}

.pic-pricebar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px dashed rgba(59, 95, 95, .22);
  margin-bottom: 16px;
}

.pic-price small {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--hx-body, #56606E);
}

.pic-price b {
  font-family: var(--hx-serif, 'Miller Banner', serif);
  font-weight: 700;
  font-size: 2.05rem;
  color: var(--smaragd, #3B5F5F);
  line-height: 1;
}

.pic-price .pic-child {
  font-size: .8rem;
  font-weight: 700;
  color: var(--hx-body, #56606E);
}

.pic-btn {
  display: block;
  width: 100%;
}

.pic-reassure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 11px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--farn, #739582);
  text-align: center;
}

.pic-reassure svg {
  width: 14px;
  height: 14px;
  flex: none;
}

@media (prefers-reduced-motion: reduce) {
  .pic-card,
  .pic-img {
    transition: none;
  }
}


/* Make the complete experience card use its existing CTA link. */
.pic-card {
  position: relative;
  cursor: pointer;
}

.pic-card .pic-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
  border-radius: 22px;
}

.pic-card:has(.pic-btn:focus-visible) {
  outline: 3px solid #F1BBD7;
  outline-offset: 4px;
}
