/* =========================================================================
   Pearl Island — Product / Offer Detail page widgets
   One shared stylesheet for: Product Header, Gallery, Subnav, Highlights,
   Included, Itinerary, Meeting Point, Reviews, Booking Box, Why Book
   Direct and Cross-Sell. All classes are prefixed .pip- and scoped under
   .pi-widget so nothing collides with the theme. Colors reuse the brand
   tokens from pearl-island-fonts.css (with safe fallbacks).
   ========================================================================= */
.pi-widget {
  --pip-muted: var(--hx-body, #5a6372);
  --pip-apricot: #F5B276;
  --pip-farn: #739582;
  --pip-palme: #A2B76E;
  --pip-sm: 0 4px 14px rgba(30, 36, 48, .06);
  --pip-md: 0 14px 40px rgba(59, 95, 95, .12);
  --pip-lg: 0 26px 60px rgba(59, 95, 95, .20);
}

.pi-widget .pip-star { fill: var(--pip-apricot, #F5B276); }

/* Generic photo placeholder cell (gradient + caption) */
.pi-widget .pip-ph {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}

/* =============================== HEADER ================================= */
.pip-crumb {
  padding: 18px 0 4px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--pip-muted);
}
.pip-crumb a:hover { color: var(--lobster, #EE7266); }
.pip-crumb span { color: var(--smaragd, #3B5F5F); }

.pip-titlebar { padding: 10px 0 22px; }
.pip-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--lobster, #EE7266);
  padding: 6px 13px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.pip-titlebar h1 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  max-width: 20ch;
  color: var(--pi-heading, var(--smaragd, #3B5F5F));
}
.pip-facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
  margin-top: 14px;
}
.pip-rate {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 800;
  color: var(--ink, #1e2430);
}
.pip-rate .pip-stars { display: flex; gap: 1px; }
.pip-rate .pip-stars svg { width: 16px; height: 16px; }
.pip-rate small { font-weight: 600; color: var(--pip-muted); }
.pip-tf {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: .86rem;
  color: var(--smaragd, #3B5F5F);
}
.pip-tf .pip-tf-ic { font-size: 1rem; line-height: 1; }
.pip-dotdiv { width: 4px; height: 4px; border-radius: 50%; background: rgba(59, 95, 95, .3); }

/* =============================== GALLERY =============================== */
.pip-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 440px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.pip-gcell { position: relative; overflow: hidden; cursor: pointer; }
.pip-gcell:hover .pip-ph { transform: scale(1.06); }
.pip-gcell.main { grid-row: 1 / span 2; }
.pip-gcell .pip-cap {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .85);
  background: rgba(30, 36, 48, .45);
  padding: 3px 8px;
  border-radius: 5px;
  z-index: 2;
  max-width: 88%;
}
.pip-gall-btn {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 5;
  background: rgba(253, 252, 248, .95);
  color: var(--smaragd, #3B5F5F);
  font-weight: 800;
  font-size: .78rem;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: var(--pip-sm);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}
.pip-gall-btn:hover { background: #fff; }
@media (max-width: 760px) {
  .pip-gallery {
    display: flex;
    height: 260px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 8px;
    scrollbar-width: none;
  }
  .pip-gallery::-webkit-scrollbar { display: none; }
  .pip-gcell, .pip-gcell.main { flex: 0 0 84%; scroll-snap-align: center; grid-row: auto; }
}

/* Lightbox */
.pip-lb {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(20, 26, 34, .93);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.pip-lb.open { display: flex; }
.pip-lb-img {
  width: min(920px, 92vw);
  height: min(600px, 74vh);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
  background-size: cover;
  background-position: center;
}
.pip-lb-cap {
  position: absolute;
  bottom: 22px;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255, 255, 255, .85);
  font-weight: 700;
  font-size: .86rem;
  padding: 0 24px;
}
.pip-lb-x {
  position: absolute;
  top: 18px;
  right: 24px;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
}
.pip-lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2.6rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 14px;
  opacity: .8;
}
.pip-lb-nav:hover { opacity: 1; }
.pip-lb-prev { left: 8px; }
.pip-lb-next { right: 8px; }

/* =============================== SUBNAV =============================== */
.pip-subnav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(253, 252, 248, .93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(59, 95, 95, .1);
}
.pip-subnav-in {
  display: flex;
  align-items: center;
  gap: 26px;
  overflow-x: auto;
  scrollbar-width: none;
}
.pip-subnav-in::-webkit-scrollbar { display: none; }
.pip-subnav a {
  white-space: nowrap;
  padding: 15px 2px;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .03em;
  color: var(--pip-muted);
  border-bottom: 2px solid transparent;
  transition: .2s;
}
.pip-subnav a:hover, .pip-subnav a.active {
  color: var(--smaragd, #3B5F5F);
  border-bottom-color: var(--lobster, #EE7266);
}
.pip-subnav .pip-sub-cta { margin-left: auto; align-self: center; flex: none; }
@media (max-width: 980px) { .pip-subnav .pip-sub-cta { display: none; } }

/* ============================ CONTENT BLOCKS ========================== */
.pip-block h2 {
  font-size: 1.7rem;
  margin-bottom: 6px;
  color: var(--pi-heading, var(--smaragd, #3B5F5F));
}
.pip-block .pip-lead {
  color: var(--pip-muted);
  font-size: 1.02rem;
  margin-bottom: 20px;
  max-width: 60ch;
}

/* Highlights */
.pip-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 26px;
}
@media (max-width: 560px) { .pip-highlights { grid-template-columns: 1fr; } }
.pip-hl { display: flex; gap: 12px; align-items: flex-start; }
.pip-hl .pip-hl-ic {
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(119, 195, 219, .18);
  font-size: 1.1rem;
}
.pip-hl b { font-weight: 800; font-size: .96rem; color: var(--ink, #1e2430); display: block; }
.pip-hl span { font-size: .85rem; color: var(--pip-muted); }

/* Included / not included */
.pip-incl2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
@media (max-width: 560px) { .pip-incl2 { grid-template-columns: 1fr; } }
.pip-incl2 h4 {
  font-family: var(--hx-sans, 'Nunito', sans-serif);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--smaragd, #3B5F5F);
  margin-bottom: 12px;
}
.pip-incl2 ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 0; padding: 0; }
.pip-incl2 li {
  position: relative;
  padding-left: 28px;
  font-size: .92rem;
  font-weight: 600;
  color: #33404a;
  line-height: 1.4;
}
.pip-incl2 li svg { position: absolute; left: 0; top: 2px; width: 18px; height: 18px; }

/* Timeline (vertical) */
.pip-timeline { position: relative; margin-top: 6px; }
.pip-timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--tuerkis, #77C3DB), var(--petrol, #609AAD));
}
.pip-tstep { position: relative; padding: 0 0 22px 48px; }
.pip-tstep:last-child { padding-bottom: 0; }
.pip-tstep .pip-dot {
  position: absolute;
  left: 6px;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--lobster, #EE7266);
  box-shadow: 0 0 0 4px rgba(238, 114, 102, .12);
}
.pip-tstep .pip-time {
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .04em;
  color: var(--petrol, #609AAD);
  text-transform: uppercase;
}
.pip-tstep b {
  display: block;
  font-family: var(--hx-serif, serif);
  font-size: 1.08rem;
  color: var(--smaragd, #3B5F5F);
  margin: 2px 0 3px;
}
.pip-tstep span { font-size: .9rem; color: var(--pip-muted); }

/* Meeting point / map */
.pip-meet { display: grid; grid-template-columns: 1.1fr 1fr; gap: 24px; align-items: stretch; }
@media (max-width: 640px) { .pip-meet { grid-template-columns: 1fr; } }
.pip-meet .pip-info { margin: 0; padding: 0; }
.pip-meet .pip-info li {
  list-style: none;
  position: relative;
  padding: 0 0 14px 30px;
  font-size: .92rem;
  color: #33404a;
}
.pip-meet .pip-info li .pip-info-ic { position: absolute; left: 0; top: 1px; font-size: 1.05rem; line-height: 1; }
.pip-meet .pip-info li b { color: var(--smaragd, #3B5F5F); }
.pip-mapbox {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 230px;
  background: linear-gradient(180deg, #bfe3ea, #7fbdcf);
}
.pip-mapbox iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.pip-route-pin {
  position: absolute;
  font-size: .7rem;
  font-weight: 800;
  color: #12414d;
  background: rgba(255, 255, 255, .9);
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, .12);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Reviews */
.pip-plat { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.pip-plat .pip-p {
  flex: 1;
  min-width: 150px;
  background: #fff;
  border: 1px solid rgba(59, 95, 95, .12);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: var(--pip-sm);
}
.pip-plat .pip-p .pip-n { font-weight: 800; font-size: .82rem; color: var(--smaragd, #3B5F5F); }
.pip-plat .pip-p .pip-r { display: flex; align-items: center; gap: 6px; margin-top: 4px; }
.pip-plat .pip-p .pip-r b { font-family: var(--hx-serif, serif); font-size: 1.3rem; color: var(--ink, #1e2430); }
.pip-plat .pip-p .pip-r svg { width: 14px; height: 14px; }
.pip-plat .pip-p small { color: var(--pip-muted); font-size: .74rem; font-weight: 600; }
.pip-rev-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
@media (max-width: 640px) { .pip-rev-grid { grid-template-columns: 1fr; } }
.pip-rev {
  background: var(--paper, #FDFCF8);
  border: 1px solid rgba(59, 95, 95, .1);
  border-radius: 16px;
  padding: 20px;
}
.pip-rev .pip-stars { display: flex; gap: 1px; margin-bottom: 8px; }
.pip-rev .pip-stars svg { width: 14px; height: 14px; }
.pip-rev p { font-size: .92rem; color: #33404a; font-style: italic; }
.pip-rev .pip-who { margin-top: 12px; font-weight: 800; font-size: .82rem; color: var(--smaragd, #3B5F5F); }
.pip-rev .pip-who small { display: block; font-weight: 600; color: var(--pip-muted); font-size: .72rem; font-style: normal; }
.pip-rev-all {
  display: inline-block;
  margin-top: 18px;
  font-weight: 800;
  font-size: .85rem;
  color: var(--lobster, #EE7266);
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ============================ BOOKING BOX ============================= */
.pip-book-col { position: sticky; top: 92px; }
.pip-bookbox {
  background: #fff;
  border: 1px solid rgba(59, 95, 95, .12);
  border-radius: 22px;
  box-shadow: var(--pip-md);
  overflow: hidden;
}
.pip-bb-top { padding: 20px 22px 0; }
.pip-bb-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #5a3a1e;
  background: var(--sand, #FFF7B2);
  padding: 5px 11px;
  border-radius: 999px;
}
.pip-bb-price { display: flex; align-items: baseline; gap: 8px; margin: 12px 0 2px; }
.pip-bb-price .pip-from { font-size: .78rem; font-weight: 700; color: var(--pip-muted); text-transform: uppercase; letter-spacing: .04em; }
.pip-bb-price b { font-family: var(--hx-serif, serif); font-weight: 700; font-size: 2.3rem; color: var(--smaragd, #3B5F5F); line-height: 1; }
.pip-bb-price .pip-per { font-size: .85rem; font-weight: 700; color: var(--pip-muted); }
.pip-bb-cancel { display: flex; align-items: center; gap: 6px; font-size: .8rem; font-weight: 700; color: var(--pip-farn); margin-bottom: 4px; }
.pip-bb-cancel svg { width: 15px; height: 15px; }
.pip-bb-body { padding: 16px 22px 22px; }
.pip-urgency {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(238, 114, 102, .10);
  color: #b8463b;
  font-weight: 800;
  font-size: .78rem;
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 14px;
  overflow: hidden;
}
.pip-urgency::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(55% 130% at 10% 50%, rgba(238, 114, 102, .30), transparent 70%);
  animation: pip-breathe 2.6s ease-in-out infinite;
  pointer-events: none;
}
.pip-urgency .pip-live-dot {
  position: relative;
  z-index: 1;
  width: 9px;
  height: 9px;
  flex: none;
  border-radius: 50%;
  background: #ee4d3f;
  box-shadow: 0 0 6px rgba(238, 77, 63, .8);
}
.pip-urgency .pip-live-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #ee4d3f;
  animation: pip-ping 2.6s ease-out infinite;
}
.pip-urgency .pip-utxt { position: relative; z-index: 1; }
@keyframes pip-breathe { 0%, 100% { opacity: .35; } 50% { opacity: 1; } }
@keyframes pip-ping { 0% { transform: scale(1); opacity: .7; } 70% { transform: scale(3.6); opacity: 0; } 100% { opacity: 0; } }

.pip-field { margin-bottom: 14px; }
.pip-field label,
.pip-guests-label {
  display: block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--smaragd, #3B5F5F);
  margin-bottom: 6px;
}
.pip-field input[type=date] {
  width: 100%;
  font-family: var(--hx-sans, sans-serif);
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink, #1e2430);
  padding: 13px 14px;
  border: 1.5px solid rgba(59, 95, 95, .2);
  border-radius: 12px;
  background: #fff;
}
.pip-field input[type=date]:focus { outline: none; border-color: var(--petrol, #609AAD); }
.pip-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border: 1.5px solid rgba(59, 95, 95, .2);
  border-radius: 12px;
  margin-bottom: 10px;
}
.pip-stepper .pip-lab b { display: block; font-weight: 800; font-size: .92rem; color: var(--ink, #1e2430); }
.pip-stepper .pip-lab small { font-size: .74rem; color: var(--pip-muted); font-weight: 600; }
.pip-stepper .pip-ctrl { display: flex; align-items: center; gap: 14px; }
.pip-stepper button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--petrol, #609AAD);
  background: #fff;
  color: var(--petrol, #609AAD);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  display: grid;
  place-items: center;
  line-height: 1;
  transition: .2s;
}
.pip-stepper button:hover:not(:disabled) { background: var(--petrol, #609AAD); color: #fff; }
.pip-stepper button:disabled { opacity: .35; cursor: not-allowed; }
.pip-stepper .pip-num { font-weight: 800; font-size: 1rem; min-width: 16px; text-align: center; }
.pip-addon-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1.5px dashed rgba(59, 95, 95, .22);
  border-radius: 12px;
  margin-bottom: 14px;
  cursor: pointer;
}
.pip-addon-row input { width: 18px; height: 18px; accent-color: var(--lobster, #EE7266); flex: none; }
.pip-addon-row .pip-lab { flex: 1; }
.pip-addon-row .pip-lab b { font-weight: 800; font-size: .88rem; color: var(--ink, #1e2430); }
.pip-addon-row .pip-lab small { display: block; font-size: .74rem; color: var(--pip-muted); font-weight: 600; }
.pip-addon-row .pip-ap { font-weight: 800; color: var(--smaragd, #3B5F5F); font-size: .9rem; }
.pip-bb-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0 4px;
  border-top: 1px dashed rgba(59, 95, 95, .25);
  margin-top: 4px;
}
.pip-bb-total .pip-tl { font-weight: 700; color: var(--pip-muted); font-size: .85rem; }
.pip-bb-total .pip-tv { font-family: var(--hx-serif, serif); font-weight: 700; font-size: 1.7rem; color: var(--smaragd, #3B5F5F); }
.pip-bb-note { text-align: center; font-size: .75rem; color: var(--pip-muted); font-weight: 600; margin: 8px 0 14px; }
.pip-bb-cta { width: 100%; }
.pip-bb-trust { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(59, 95, 95, .1); }
.pip-bb-trust .pip-t { display: flex; align-items: center; gap: 9px; font-size: .82rem; font-weight: 700; color: #33404a; }
.pip-bb-trust .pip-t .pip-t-ic { font-size: 1rem; line-height: 1; color: var(--lobster, #EE7266); }
.pip-ask { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 14px; font-size: .84rem; font-weight: 700; color: var(--petrol, #609AAD); }
.pip-ask a { color: var(--smaragd, #3B5F5F); text-decoration: underline; }

/* ========================= WHY BOOK DIRECT =========================== */
.pip-whyband {
  background:
    radial-gradient(80% 60% at 15% 0%, rgba(119, 195, 219, .16), transparent 60%),
    linear-gradient(180deg, #f3faf9, #eaf4f4);
  padding: 64px 0;
  border-radius: 24px;
}
.pip-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 820px) { .pip-why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .pip-why-grid { grid-template-columns: 1fr; } }
.pip-why { text-align: center; }
.pip-why .pip-why-ic {
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: #fff;
  box-shadow: var(--pip-sm);
}
.pip-why b { display: block; font-family: var(--hx-serif, serif); font-size: 1.05rem; color: var(--smaragd, #3B5F5F); margin-bottom: 4px; }
.pip-why span { font-size: .86rem; color: var(--pip-muted); }

/* ============================ CROSS-SELL ============================= */
.pip-sec-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.pip-sec-head .script { font-size: 2rem; display: block; line-height: 1; margin-bottom: 4px; }
.pip-sec-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); color: var(--pi-heading, var(--smaragd, #3B5F5F)); }
.pip-xgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 820px) { .pip-xgrid { grid-template-columns: 1fr; } }
.pip-x {
  display: block;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--pip-sm);
  border: 1px solid rgba(59, 95, 95, .07);
  transition: transform .3s, box-shadow .3s;
}
.pip-x:hover { transform: translateY(-6px); box-shadow: var(--pip-lg); }
.pip-x .pip-xm { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.pip-x:hover .pip-xm .pip-ph { transform: scale(1.05); }
.pip-x .pip-xm .pip-cap {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: .56rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .8);
  background: rgba(30, 36, 48, .45);
  padding: 3px 7px;
  border-radius: 5px;
  z-index: 2;
}
.pip-x .pip-xb { padding: 18px 20px 20px; }
.pip-x .pip-xb h3 { font-size: 1.15rem; color: var(--smaragd, #3B5F5F); }
.pip-x .pip-xb .pip-xdesc { margin-top: 7px; font-size: .9rem; line-height: 1.55; color: var(--pip-muted); }
.pip-x .pip-xp { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }
.pip-x .pip-xp b { font-family: var(--hx-serif, serif); font-size: 1.25rem; color: var(--smaragd, #3B5F5F); }
.pip-x .pip-xp .pip-go { font-weight: 800; font-size: .78rem; color: var(--lobster, #EE7266); text-transform: uppercase; letter-spacing: .04em; }

@media (prefers-reduced-motion: reduce) {
  .pip-urgency::before, .pip-urgency .pip-live-dot::after, .pip-ph, .pip-x { animation: none; transition: none; }
}


/* Client feedback — lightbox navigation, 2026-08-19 */
.pip-lb-nav {
  width: 44px;
  height: 44px;
  padding: 0;
  display: grid;
  place-items: center;
  color: #0E3A44 !important;
  background: rgba(255, 255, 255, .94) !important;
  border: 1px solid rgba(255, 255, 255, .9) !important;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .28);
  opacity: 1 !important;
  z-index: 4;
  line-height: 1;
  font-size: 2rem;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.pip-lb-nav:hover,
.pip-lb-nav:focus-visible {
  color: #0E3A44 !important;
  background: #F1BAD7 !important;
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 9px 24px rgba(0, 0, 0, .34);
  outline: none;
}
/* Keep both controls fully inside the displayed image. */
.pip-lb-prev { left: calc((100vw - min(920px, 92vw)) / 2 + 20px); }
.pip-lb-next { right: calc((100vw - min(920px, 92vw)) / 2 + 20px); }
@media (max-width: 600px) {
  .pip-lb { padding: 12px; }
  .pip-lb-img { width: 94vw; height: min(64vh, 520px); }
  .pip-lb-nav { width: 40px; height: 40px; font-size: 1.8rem; }
  .pip-lb-prev { left: 18px; }
  .pip-lb-next { right: 18px; }
}


/* CTA-only cross-sell cards: keep the card static as a link target and animate only the CTA. */
.pip-x .pip-xp a.pip-go { display: inline-flex; align-items: center; text-decoration: none; transition: transform .2s ease, color .2s ease; }
.pip-x .pip-xp a.pip-go:hover, .pip-x .pip-xp a.pip-go:focus-visible { transform: translateX(4px); color: var(--smaragd, #3B5F5F); }
