/* ===========================================================================
   Customer shop (book. subdomain) — `.shop-*` namespace.
   Brand tokens (--escape-green, --royal-blue, --accent-red, --font-display
   = Cormorant Garamond, --font-ui = Outfit) are defined in
   public_itinerary_luxury.css, which the shop layout loads first.
   Mobile-first; desktop refinements via min-width queries.
   =========================================================================== */
.shop-body {
  margin: 0; min-height: 100dvh; background: #f9f9f9; color: #1e1e1e;
  font-family: var(--font-ui); -webkit-font-smoothing: antialiased;
}
/* Scoped reset — without border-box, width:100% inputs/buttons overflow their
   container (the layout looked "off"). Also zero default heading/form margins. */
.shop-body *, .shop-body *::before, .shop-body *::after { box-sizing: border-box; }
.shop-body h1, .shop-body h2, .shop-body h3, .shop-body p, .shop-body form { margin: 0; }
.shop-body button { font-family: inherit; }

/* ---- Flash ---- */
.shop-flash { max-width: 460px; margin: 12px auto 0; padding: 0 20px; }
.shop-flash__msg { padding: 12px 16px; border-radius: 14px; font-size: 14px; font-weight: 600; }
.shop-flash__msg + .shop-flash__msg { margin-top: 8px; }
.shop-flash__msg--notice { background: #e6f4ec; color: #008440; }
.shop-flash__msg--alert  { background: #fde7e8; color: #c8141b; }

/* ---- Logo ---- */
.shop-logo { height: 44px; width: auto; object-fit: contain; }

/* ---- Auth screens ---- */
.shop-auth {
  min-height: 100dvh; display: flex; flex-direction: column; justify-content: center;
  max-width: 460px; margin: 0 auto;
  padding: 28px 24px calc(28px + env(safe-area-inset-bottom));
}
.shop-auth .shop-logo { align-self: center; margin-bottom: 14px; }
.shop-auth__sub { text-align: center; align-self: center; max-width: 34ch; color: #64748b; margin: 0 0 26px; line-height: 1.45; }

/* ---- Fields ---- */
.shop-field { margin-bottom: 14px; }
.shop-field label { display: block; font-size: 13px; font-weight: 600; color: #323a46; margin-bottom: 7px; }
.shop-input {
  width: 100%; height: 50px; padding: 0 15px; border: 1.5px solid #d9d9d9; border-radius: 16px;
  font-size: 15px; color: #1e1e1e; background: #fff; font-family: var(--font-ui);
}
.shop-input:focus { outline: none; border-color: var(--escape-green); box-shadow: 0 0 0 3px #e6f4ec; }
.shop-grid-2 { display: grid; grid-template-columns: 1fr; gap: 0 12px; }
@media (min-width: 480px) { .shop-grid-2 { grid-template-columns: 1fr 1fr; } }

/* ---- Buttons ---- */
.shop-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 50px; padding: 0 22px; border: none; border-radius: 9999px;
  font-family: var(--font-ui); font-weight: 700; font-size: 15px; cursor: pointer;
  text-decoration: none; transition: background .2s, box-shadow .2s, transform .2s;
}
.shop-btn:active { transform: scale(.98); }
.shop-btn--block { display: flex; width: 100%; }
.shop-btn--red { background: var(--accent-red); color: #fff; box-shadow: 0 8px 20px rgba(237, 28, 36, .26); }
.shop-btn--red:hover { background: #c8141b; }
.shop-btn--green { background: var(--escape-green); color: #fff; }
.shop-btn--google, .shop-btn--outline { background: #fff; color: #1e1e1e; border: 1.5px solid #d9d9d9; }
.shop-btn--outline { border-color: #b8c0cc; }

/* ---- Divider / links / meta ---- */
.shop-divider { display: flex; align-items: center; gap: 12px; color: #64748b; font-size: 12px; margin: 18px 0; }
.shop-divider::before, .shop-divider::after { content: ""; flex: 1; height: 1px; background: #f1f5f9; }
.shop-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 2px 0 18px; }
.shop-checkbox { display: flex; gap: 8px; align-items: center; font-size: 13px; color: #64748b; }
.shop-link { color: var(--royal-blue); font-weight: 700; font-size: 13px; text-decoration: none; }
.shop-foot { text-align: center; color: #64748b; font-size: 13px; margin-top: 18px; }
.shop-errors { background: #fde7e8; color: #c8141b; border-radius: 14px; padding: 12px 16px; font-size: 13px; margin-bottom: 16px; }
.shop-errors ul { margin: 6px 0 0; padding-left: 18px; }

/* =====================  App shell (storefront / account)  ===================== */
.shop-appbar { position: sticky; top: 0; z-index: 30; height: calc(56px + env(safe-area-inset-top)); padding: env(safe-area-inset-top) 16px 0; display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.94); backdrop-filter: blur(10px); border-bottom: 1px solid #f1f5f9; }
.shop-appbar__brand { display: flex; align-items: center; }
.shop-appbar .shop-logo { height: 26px; }
.shop-appbar__spacer { flex: 1; }
.shop-topnav { display: none; }
.shop-topnav__link { padding: 8px 13px; border-radius: 9999px; font-weight: 600; font-size: 14px; color: #323a46; text-decoration: none; }
.shop-topnav__link:hover { background: #f5f6f7; }
.shop-topnav__link.is-active { color: var(--escape-green); background: #e6f4ec; }
.shop-avatar { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--escape-green), var(--royal-blue)); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; font-size: 24px; text-decoration: none; flex: none; }
.shop-avatar--sm { width: 38px; height: 38px; font-size: 15px; }

.shop-tabbar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 30; height: calc(60px + env(safe-area-inset-bottom)); padding-bottom: env(safe-area-inset-bottom); display: flex; background: rgba(255,255,255,.96); backdrop-filter: blur(12px); border-top: 1px solid #f1f5f9; }
.shop-tabbar__item { flex: 1; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; color: #64748b; text-decoration: none; }
.shop-tabbar__item.is-active { color: var(--escape-green); }
.shop-main { min-height: 60vh; }
.shop-has-tabbar .shop-main { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }

.shop-wrap { max-width: 1080px; margin: 0 auto; padding: 16px; }
/* Storefront uses far more of the screen than the reading-width pages do. */
.shop-wrap--wide { max-width: 1600px; }
.shop-stack > * + * { margin-top: 14px; }
.shop-muted { color: #64748b; }
.shop-sm { font-size: 13px; } .shop-xs { font-size: 12px; }
.shop-display { font-family: var(--font-display); font-weight: 600; letter-spacing: -.01em; color: #0d0f11; line-height: 1.05; }
.shop-page-head { padding: 4px 0 14px; }
.shop-page-title { font-size: 30px; margin: 0; }
.shop-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--escape-green); }
.shop-eyebrow::before { content: ""; width: 16px; height: 2px; background: currentColor; border-radius: 2px; }
.shop-eyebrow--blue { color: var(--royal-blue); }
.shop-eyebrow--on-dark { color: #fff; }
.shop-section-head { display: flex; align-items: center; justify-content: space-between; margin: 16px 0 12px; }
.shop-card { background: #fff; border: 1px solid #f1f5f9; border-radius: 20px; box-shadow: 0 1px 2px rgba(0,0,0,.06); padding: 18px; }

/* ---- Cover (real image via inline style, else brand gradient) ---- */
.shop-cover { position: relative; border-radius: 20px; overflow: hidden; background: linear-gradient(160deg, #2c5d8f 0%, #5f8fb5 45%, #cfe0ec 100%); background-size: cover; background-position: center; }

/* ---- Badges ---- */
.shop-badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 9999px; font-size: 11px; font-weight: 700; letter-spacing: .02em; }
.shop-badge--glass { background: rgba(255,255,255,.22); color: #fff; backdrop-filter: blur(4px); }
.shop-badge--green { background: #e6f4ec; color: #008440; }
.shop-badge--blue  { background: #e6eef6; color: #00468a; }
.shop-badge--amber { background: #fff4d6; color: #9a6b00; }
.shop-badge--red   { background: #fde7e8; color: #c8141b; }
.shop-badge--gray  { background: #f5f6f7; color: #64748b; }

/* ---- Hero ---- */
.shop-hero { position: relative; margin: 4px 0 22px; border-radius: 26px; overflow: hidden; min-height: 190px; display: flex; align-items: flex-end; padding: 28px 24px; color: #fff; background: linear-gradient(135deg, #0057a8 0%, #2f6aa0 46%, #5f8fb5 100%); }
.shop-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,15,17,0) 35%, rgba(13,15,17,.5) 100%); }
.shop-hero__inner { position: relative; z-index: 2; }
.shop-hero h1 { font-family: var(--font-display); font-weight: 600; font-size: 34px; line-height: 1.04; margin: 10px 0 6px; }
.shop-hero p { font-size: 14px; opacity: .92; max-width: 38ch; margin: 0; }

/* ---- Trip grid + cards ---- */
.shop-trip-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 18px; }
.shop-trip-card { display: block; background: #fff; border: 1px solid #f1f5f9; border-radius: 26px; overflow: hidden; box-shadow: 0 1px 2px rgba(0,0,0,.06); text-decoration: none; color: inherit; transition: transform .2s, box-shadow .2s; }
.shop-trip-card:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(15,23,42,.08); }
.shop-trip-card__cover { border-radius: 0; height: 180px; display: flex; align-items: flex-start; padding: 12px; }
.shop-trip-card__body { padding: 14px 16px 16px; }
.shop-trip-card__row { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.shop-trip-card__title { font-family: var(--font-display); font-weight: 600; font-size: 22px; line-height: 1.1; color: #0d0f11; margin: 0; }
.shop-trip-card__meta { color: #64748b; font-size: 13px; display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
.shop-trip-card__price { text-align: right; flex: none; }
.shop-trip-card__amt { font-weight: 800; font-size: 18px; color: var(--escape-green); }
.shop-trip-card__lbl { font-size: 11px; color: #64748b; }

/* ---- Pager ---- */
.shop-pager { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 22px 0 8px; }
.shop-pager__count { font-size: 13px; color: #64748b; }
.shop-btn--sm { height: 38px; padding: 0 16px; font-size: 13px; }

/* ---- Empty state ---- */
.shop-empty { text-align: center; padding: 48px 24px; }
.shop-empty h3 { font-family: var(--font-display); font-weight: 600; font-size: 24px; color: #0d0f11; margin: 0 0 6px; }
.shop-empty p { color: #64748b; margin: 0 auto 18px; max-width: 30ch; font-size: 14px; }

/* ---- PDP (read-only trip + order detail) ---- */
.shop-pdp__cover { height: 200px; border-radius: 0; margin: 0; display: flex; align-items: flex-end; }
.shop-pdp__cover-label { padding: 14px 16px; }
.shop-pdp__cover-title { color: #fff; font-size: 28px; margin-top: 8px; }
.shop-pdp__cols { display: grid; grid-template-columns: 1fr; gap: 18px; }
.shop-pdp__title { font-size: 32px; margin: 8px 0 8px; }
.shop-pdp__pricecard { position: sticky; top: 84px; }
.shop-pdp__amt { font-weight: 800; font-size: 26px; color: var(--escape-green); }
.shop-pdp__amt--due { color: var(--accent-red); }
.shop-pdp__soon { margin-top: 12px; }
.shop-pdp__cta { margin-top: 14px; }
.shop-pdp__back { display: block; margin-top: 14px; }

/* ---- Day-by-day ---- */
.shop-day { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid #f1f5f9; }
.shop-day:last-child { border-bottom: none; }
.shop-day__num { width: 44px; flex: none; text-align: center; }
.shop-day__n { font-family: var(--font-display); font-weight: 600; font-size: 26px; color: var(--escape-green); line-height: 1; display: block; }
.shop-day__l { font-size: 10px; letter-spacing: .1em; color: #64748b; text-transform: uppercase; }
.shop-day__title { font-weight: 700; }
.shop-day__desc { font-size: 13.5px; color: #64748b; margin-top: 4px; line-height: 1.5; }

/* ---- Inclusions / exclusions ---- */
.shop-inex { display: grid; gap: 10px; margin-top: 12px; }
.shop-ix { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: #323a46; }
.shop-ix__tick { width: 20px; height: 20px; border-radius: 50%; flex: none; display: grid; place-items: center; font-size: 11px; font-weight: 800; }
.shop-ix--inc .shop-ix__tick { background: #e6f4ec; color: #008440; }
.shop-ix--exc .shop-ix__tick { background: #fde7e8; color: #c8141b; }

/* ---- Order card (My Trips) ---- */
.shop-order-card { display: flex; background: #fff; border: 1px solid #f1f5f9; border-radius: 20px; overflow: hidden; box-shadow: 0 1px 2px rgba(0,0,0,.06); text-decoration: none; color: inherit; }
.shop-order-card__cover { width: 104px; flex: none; border-radius: 0; align-self: stretch; min-height: 116px; }
.shop-order-card__body { padding: 14px 16px; flex: 1; min-width: 0; }
.shop-order-card__row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.shop-order-card__title { font-weight: 700; font-size: 16px; margin: 7px 0 2px; }
.shop-order-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.shop-order-card__paid { margin-top: 10px; }

/* ---- Key/value rows ---- */
.shop-kv { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px solid #f1f5f9; font-size: 14px; }
.shop-kv:last-child { border-bottom: none; }
.shop-kv__k { color: #64748b; } .shop-kv__v { font-weight: 600; text-align: right; }

/* ---- Payment timeline ---- */
.shop-timeline { margin-top: 14px; }
.shop-ti { display: flex; gap: 14px; padding-bottom: 18px; position: relative; }
.shop-ti:last-child { padding-bottom: 0; }
.shop-ti__node { width: 16px; height: 16px; border-radius: 50%; border: 3px solid #b8c0cc; background: #fff; flex: none; margin-top: 2px; z-index: 2; }
.shop-ti--paid .shop-ti__node { border-color: var(--escape-green); background: var(--escape-green); }
.shop-ti--overdue .shop-ti__node { border-color: var(--accent-red); }
.shop-ti::before { content: ""; position: absolute; left: 7px; top: 16px; bottom: -2px; width: 2px; background: #f1f5f9; }
.shop-ti:last-child::before { display: none; }
.shop-ti__body { flex: 1; }
.shop-ti__top { display: flex; justify-content: space-between; gap: 8px; }
.shop-ti__label { font-weight: 700; } .shop-ti__amt { font-weight: 800; }
.shop-ti__date { font-size: 12.5px; color: #64748b; }

/* ---- Account ---- */
.shop-account-head { display: flex; gap: 16px; align-items: center; }
.shop-account-head__name { font-weight: 700; font-size: 19px; }
.shop-account-head__linked { margin-top: 6px; }

/* ---- Notice ---- */
.shop-notice { display: flex; gap: 10px; padding: 12px 14px; border-radius: 16px; font-size: 13px; line-height: 1.45; }
.shop-notice--green { background: #e6f4ec; color: #008440; }
.shop-notice--amber { background: #fef3e2; color: #9a6700; }
.shop-disclosure { margin-top: 12px; }
.shop-disclosure[hidden] { display: none; }

/* =====================  Desktop  ===================== */
@media (min-width: 900px) {
  .shop-appbar { padding: 0 32px; height: 64px; }
  .shop-appbar .shop-logo { height: 32px; }
  .shop-topnav { display: flex; align-items: center; gap: 4px; margin-left: 16px; }
  .shop-tabbar { display: none; }
  .shop-has-tabbar .shop-main { padding-bottom: 40px; }
  .shop-hero { min-height: 230px; padding: 42px 40px; }
  .shop-hero h1 { font-size: 46px; }
  .shop-hero p { font-size: 16px; }
  .shop-wrap { padding: 22px 32px; }
  .shop-trip-grid { gap: 22px; }
  .shop-pdp__cols { grid-template-columns: 1.6fr 1fr; gap: 30px; align-items: start; }
  .shop-pdp__cover { height: 340px; }
}

/* =====================  Checkout + pay  ===================== */
.shop-checkout { max-width: 620px; }
.shop-checkout .shop-card + .shop-card { margin-top: 14px; }
.shop-hint { font-size: 12.5px; color: #64748b; margin: 8px 0 0; line-height: 1.5; }

.shop-stepper { display: inline-flex; align-items: center; border: 1.5px solid #d9d9d9; border-radius: 9999px; overflow: hidden; height: 50px; }
.shop-stepper button { width: 48px; height: 100%; font-size: 20px; color: #1e1e1e; background: #fff; border: none; cursor: pointer; }
.shop-stepper button:hover { background: #f5f6f7; }
.shop-stepper__val { width: 56px; height: 100%; text-align: center; font-weight: 700; font-size: 16px; border: none; outline: none; background: #fff; -moz-appearance: textfield; }
.shop-stepper__val::-webkit-outer-spin-button, .shop-stepper__val::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.shop-summary { background: #f7f8f9; border: 1px solid #f1f5f9; border-radius: 16px; padding: 16px; margin-top: 12px; }
.shop-summary__row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 6px 0; font-size: 14px; color: #323a46; }
.shop-summary__row span:last-child { font-weight: 600; color: #1e1e1e; font-variant-numeric: tabular-nums; }
.shop-summary__row--total { border-top: 1px dashed #b8c0cc; margin-top: 6px; padding-top: 12px; font-size: 16px; font-weight: 800; }
.shop-summary__row--total span:last-child { font-weight: 800; }
.shop-summary__due { display: flex; justify-content: space-between; align-items: center; background: #e6f4ec; margin: 12px -16px -16px; padding: 14px 16px; border-radius: 0 0 16px 16px; }
.shop-summary__due span { color: #008440; font-weight: 700; font-size: 13px; }
.shop-summary__due span:last-child { font-size: 20px; font-weight: 800; }
.shop-summary__balance { margin-top: 10px; }
.shop-checkout__pay { margin-top: 16px; }
.shop-checkout__secure { text-align: center; margin-top: 12px; }

.shop-btn--dark { background: #0d0f11; color: #fff; }
.shop-voucher { display: flex; gap: 10px; align-items: center; }
.shop-voucher .shop-input { flex: 1; }
.shop-voucher .shop-btn { flex: none; }
.shop-voucher__msg { font-size: 12.5px; margin: 8px 0 0; min-height: 1em; }
.shop-voucher__msg--ok { color: #008440; font-weight: 600; }
.shop-voucher__msg--err { color: #c8141b; font-weight: 600; }
.shop-summary__row--discount span:last-child { color: #008440; }

.shop-voucher__applied { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.shop-chip { display: inline-flex; align-items: center; gap: 8px; padding: 6px 10px; border-radius: 9999px; background: #e6f4ec; color: #008440; font-size: 12.5px; font-weight: 600; }
.shop-chip__x { background: none; border: none; color: #008440; font-size: 16px; line-height: 1; cursor: pointer; padding: 0; }
.shop-offers { margin-top: 14px; }
.shop-offers__head { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #64748b; margin: 0 0 8px; }
.shop-offer { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; margin: 0 8px 8px 0; border: 1.5px dashed #b8c0cc; border-radius: 12px; background: #fff; cursor: pointer; font-size: 13px; }
.shop-offer:hover { border-color: var(--escape-green); background: #e6f4ec; }
.shop-offer__code { font-weight: 800; color: #0d0f11; }
.shop-offer__disc { color: var(--escape-green); font-weight: 700; }
.shop-offer__exp { color: #64748b; font-size: 11.5px; }

.shop-pay { text-align: center; max-width: 460px; margin: 24px auto; }
.shop-pay__amt { font-family: var(--font-display); font-weight: 600; font-size: 30px; color: var(--escape-green); margin: 8px 0 12px; }
.shop-pay__note { margin-top: 12px; }

/* ---- Support (list rows + thread) ---- */
.shop-rows { background: #fff; border: 1px solid #f1f5f9; border-radius: 20px; overflow: hidden; }
.shop-lrow { display: flex; align-items: center; gap: 12px; padding: 15px 16px; border-bottom: 1px solid #f1f5f9; text-decoration: none; color: inherit; }
.shop-lrow:last-child { border-bottom: none; }
.shop-lrow:hover { background: #f7f8f9; }
.shop-lrow__main { flex: 1; min-width: 0; }
.shop-lrow__title { font-weight: 600; font-size: 15px; }
.shop-support__new { margin-bottom: 16px; }
.shop-textarea { height: auto; min-height: 110px; padding: 12px 15px; line-height: 1.5; resize: vertical; }
.shop-support__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.shop-support__actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.shop-support__resolve { font-size: 13px; white-space: nowrap; }
.shop-support__subject { font-weight: 700; }
.shop-support__composer { margin-top: 14px; }
.shop-thread { display: flex; flex-direction: column; gap: 12px; }
.shop-msg { max-width: 84%; padding: 11px 14px; border-radius: 16px; font-size: 14px; line-height: 1.45; }
.shop-msg p { margin: 0; }
.shop-msg__who { font-size: 11px; font-weight: 700; letter-spacing: .04em; opacity: .7; margin-bottom: 3px; text-transform: uppercase; }
.shop-msg--them { align-self: flex-start; background: #fff; border: 1px solid #f1f5f9; border-bottom-left-radius: 6px; }
.shop-msg--me { align-self: flex-end; background: var(--escape-green); color: #fff; border-bottom-right-radius: 6px; }
.shop-msg--me .shop-msg__who { color: #fff; }
.shop-msg__time { font-size: 10.5px; opacity: .6; margin-top: 4px; text-align: right; }

/* ---- Toggle switch (notification prefs) ---- */
.shop-toggle { display: flex; align-items: center; gap: 12px; min-height: 44px; cursor: pointer; user-select: none; }
.shop-toggle__input { position: absolute; opacity: 0; width: 0; height: 0; }
.shop-toggle__track { position: relative; flex: none; width: 46px; height: 28px; border-radius: 9999px; background: #d7dbe0; transition: background .2s ease; }
.shop-toggle__track::after { content: ""; position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 9999px; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.25); transition: transform .2s ease; }
.shop-toggle__input:checked + .shop-toggle__track { background: var(--escape-green); }
.shop-toggle__input:checked + .shop-toggle__track::after { transform: translateX(18px); }
.shop-toggle__input:focus-visible + .shop-toggle__track { outline: 2px solid var(--royal-blue); outline-offset: 2px; }
.shop-toggle__label { font-size: 14px; font-weight: 500; }
.shop-toggle + .shop-toggle { margin-top: 4px; }
.shop-toggle + .shop-btn, .shop-toggle + .shop-toggle + .shop-btn { margin-top: 14px; }

/* ---- Document downloads (order detail) ---- */
.shop-doc-actions { display: flex; flex-direction: column; gap: 10px; }
.shop-doc-actions__help { display: inline-block; margin-top: 12px; font-size: 13px; }
.shop-ti__receipt { display: inline-block; margin-top: 6px; font-size: 12px; }

/* ---- Saved travellers + manifest ---- */
.shop-checks { display: flex; flex-direction: column; gap: 8px; margin: 6px 0 10px; }
.shop-check { display: flex; align-items: center; gap: 10px; min-height: 44px; font-size: 14px; cursor: pointer; }
.shop-link--danger { color: var(--accent-red); }
.shop-inline-form { display: inline; }
.shop-manifest { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.shop-manifest li { display: flex; flex-direction: column; }
.shop-manifest__name { font-weight: 600; }
.shop-manifest__meta { font-size: 12px; color: #6b7280; }

/* ---- Wishlist (save for later) ---- */
.shop-pdp__save { margin-top: 8px; }
.shop-pdp__save.is-saved { border-color: var(--escape-green); color: var(--escape-green); font-weight: 600; }

/* ---- Support attachments ---- */
.shop-file { display: block; width: 100%; font-size: 13px; padding: 8px 0; }
.shop-attachments { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0 2px; }
.shop-attach__thumb { width: 72px; height: 72px; object-fit: cover; border-radius: 10px; display: block; }
.shop-attach__file { display: inline-block; padding: 6px 10px; background: rgba(0, 0, 0, .06); border-radius: 9999px; font-size: 12px; text-decoration: none; color: inherit; }
.shop-msg--me .shop-attach__file { background: rgba(255, 255, 255, .22); color: #fff; }

/* ---- Reviews ---- */
.shop-reviews { margin-top: 24px; padding-bottom: 24px; }
.shop-reviews__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.shop-reviews__title { font-size: 24px; }
.shop-reviews__avg { font-weight: 600; color: var(--escape-green); white-space: nowrap; }
.shop-reviews__form { margin-bottom: 16px; }
.shop-reviews__list { display: flex; flex-direction: column; gap: 12px; }
.shop-review { background: #fff; border: 1px solid #f1f5f9; border-radius: 16px; padding: 14px 16px; }
.shop-review__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 6px; }
.shop-review__name { font-weight: 600; }
.shop-review__stars { color: #f5a623; letter-spacing: 1px; }
.shop-review__dim { color: #d7dbe0; }
.shop-review__body { margin: 0 0 6px; line-height: 1.5; }
.shop-reviews__empty { padding: 8px 0; }

/* ---- Notifications (bell + list) ---- */
.shop-bell { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; color: inherit; }
.shop-bell svg { width: 22px; height: 22px; }
.shop-bell__badge { position: absolute; top: 3px; right: 3px; min-width: 16px; height: 16px; padding: 0 4px; border-radius: 9999px; background: var(--accent-red); color: #fff; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.shop-notes { display: flex; flex-direction: column; gap: 8px; }
.shop-note { display: block; background: #fff; border: 1px solid #f1f5f9; border-radius: 14px; padding: 12px 14px; text-decoration: none; color: inherit; }
.shop-note.is-unread { border-left: 3px solid var(--escape-green); background: #f4fbf7; }
.shop-note__title { font-weight: 600; font-size: 14px; }
.shop-note__body { font-size: 13px; color: #4b5563; margin-top: 2px; }
.shop-note__time { font-size: 11px; color: #9ca3af; margin-top: 4px; }
