/* ZenHotels — Member rate (deal page v3 layout)
   Pill badge inside the booking aside + promo-style section above "Why we love it".
   Colors: Loyalty Violet #5C77CC (brandbook). */

:root {
  --zh-mr-violet:    #5C77CC;
  --zh-mr-violet-d:  #4a62b0;
  --zh-mr-violet-l:  #eef0fb;
  --zh-mr-violet-bg: #f3f5ff;
  --zh-mr-blue:      #004661;
  --zh-mr-pink:      #EC5A5B;
  --zh-mr-ink:       #20384a;
}

/* ============================================================
   1. Member-rate block inside the booking aside (hero overlay)
        Same Save-pill + old/new price layout as the big section,
        scaled down to fit the aside.
   ============================================================ */
.ee-booking .zh-mr-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  margin: 0;
  font-family: Montserrat, system-ui, -apple-system, "Segoe UI", sans-serif;
}
.ee-booking .zh-mr-aside__save {
  display: inline-block;
  background: var(--zh-mr-violet);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  line-height: 1;
  white-space: nowrap;
}
/* Color variants — same shape, different background to signal the savings source. */
.ee-booking .zh-mr-aside__save--member  { background: var(--zh-mr-violet); }
.ee-booking .zh-mr-aside__save--promo   { background: var(--zh-mr-pink); }
.ee-booking .zh-mr-aside__save--default { background: var(--zh-mr-pink); }

/* Default ("Travel Deals") state: centre only the pill, leave prices flush-left. */
.ee-booking .zh-mr-aside--default .zh-mr-aside__save { align-self: center; }
.ee-booking .zh-mr-aside__prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.ee-booking .zh-mr-aside__old {
  font-weight: 500;
  font-size: 14px;
  color: #4a5a63;
  text-decoration: line-through;
}
.ee-booking .zh-mr-aside__new {
  font-weight: 800;
  font-size: 25px;
  color: var(--zh-mr-blue);
  line-height: 1;
  letter-spacing: 0.2px;
}
/* "from" prefix — styled to match the .bk-row .k labels (Travel Dates / Guests / Room), italic. */
.ee-booking .zh-mr-aside__from,
.ee-booking .price .price__from {
  font-weight: 500;
  font-size: 12px;
  font-style: italic;
  text-transform: uppercase;
  color: #4a5a63;
  letter-spacing: 0.08em;
  margin-right: 2px;
  align-self: baseline;
}
.ee-booking--has-member .zh-mr-aside__from,
.ee-booking--has-member .price .price__from {
  font-size: 11px;
}
.ee-booking .zh-mr-aside__prices { line-height: 1; }

/* ============================================================
   BAIGE LAYOUT VARIANTS — preview via ?baige=1..4 on any deal URL.
        Goal: make the discount + best-offer pop on first glance.
        Each variant is a self-contained override of .ee-booking.
   ============================================================ */

/* ----- Variant 1 — SPOTLIGHT MEMBER (violet gradient card) -----
   Soft violet gradient background, 2px violet border, member trio
   enlarged and dominant, public price dimmed. CTA stays brand red. */
.tours-v2-page .ee-booking--v1 {
  background: linear-gradient(180deg, #ffffff 0%, #eef0fb 100%);
  border: 2px solid var(--zh-mr-violet);
  box-shadow: 0 18px 44px rgba(92, 119, 204, 0.28);
}
.tours-v2-page .ee-booking--v1 .price {
  font-size: 18px;
  color: #6a7a83;
  text-decoration: line-through;
  margin-top: 4px;
}
.tours-v2-page .ee-booking--v1 .strike-row { display: none; } /* public discount strike is redundant when member rate is the hero */
.tours-v2-page .ee-booking--v1 .zh-mr-aside { margin: 0 0 6px; }
.tours-v2-page .ee-booking--v1 .zh-mr-aside__save {
  font-size: 12px;
  padding: 5px 14px;
  box-shadow: 0 4px 10px rgba(92, 119, 204, 0.35);
}
.tours-v2-page .ee-booking--v1 .zh-mr-aside__new {
  font-size: 32px;
  color: var(--zh-mr-violet-d);
}
.tours-v2-page .ee-booking--v1 .zh-mr-aside__old {
  font-size: 15px;
}

/* ----- Variant 2 — MEGA SAVE BANNER (top violet bar) -----
   Full-width violet bar across the top edge of the card,
   white "SAVE £N TOTAL" headline. The bar reads £N from the
   `data-save` attribute on the aside. Rest of the card normal. */
.tours-v2-page .ee-booking--v2 {
  position: relative;
  overflow: hidden;
  padding-top: 44px;
  border: 1px solid rgba(92, 119, 204, 0.35);
  box-shadow: 0 16px 40px rgba(92, 119, 204, 0.22);
}
.tours-v2-page .ee-booking--v2::before {
  content: "Save £" attr(data-save) " with member rate";
  position: absolute;
  top: 0; left: 0; right: 0;
  background: linear-gradient(90deg, var(--zh-mr-violet) 0%, var(--zh-mr-violet-d) 100%);
  color: #fff;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 12px;
  line-height: 1;
}
.tours-v2-page .ee-booking--v2 .zh-mr-aside__save { display: none; } /* deduped — banner already shows the save */
.tours-v2-page .ee-booking--v2 .zh-mr-aside__new {
  font-size: 28px;
  color: var(--zh-mr-violet-d);
}

/* ----- Variant 3 — TIER SPLIT (white-on-top / violet-on-bottom) -----
   Public price sits on the white half; the violet half holds the
   member rate trio in white text, then booking rows + CTA below. */
.tours-v2-page .ee-booking--v3 {
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(92, 119, 204, 0.3);
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 38%, var(--zh-mr-violet) 38%, var(--zh-mr-violet-d) 100%);
  box-shadow: 0 18px 44px rgba(92, 119, 204, 0.28);
}
.tours-v2-page .ee-booking--v3 .strike-row { padding: 14px 18px 0; margin: 0; }
.tours-v2-page .ee-booking--v3 .price { padding: 0 18px 14px; }
.tours-v2-page .ee-booking--v3 .zh-mr-aside {
  margin: 0;
  padding: 16px 18px 0;
  background: transparent;
  color: #fff;
}
.tours-v2-page .ee-booking--v3 .zh-mr-aside__save {
  background: #fff;
  color: var(--zh-mr-violet-d);
}
.tours-v2-page .ee-booking--v3 .zh-mr-aside__old {
  color: rgba(255, 255, 255, 0.7);
}
.tours-v2-page .ee-booking--v3 .zh-mr-aside__new {
  color: #fff;
  font-size: 30px;
}
.tours-v2-page .ee-booking--v3 .bk-rows {
  margin: 14px 0 0;
  padding: 0 18px;
  color: #fff;
}
.tours-v2-page .ee-booking--v3 .bk-row {
  border-bottom-color: rgba(255, 255, 255, 0.18);
}
.tours-v2-page .ee-booking--v3 .bk-row .k { color: rgba(255, 255, 255, 0.75); }
.tours-v2-page .ee-booking--v3 .bk-row .v { color: #fff; }
.tours-v2-page .ee-booking--v3 .btn-primary {
  margin: 14px 18px 18px;
  width: calc(100% - 36px);
  background: #fff;
  color: var(--zh-mr-violet-d);
}
.tours-v2-page .ee-booking--v3 .btn-primary:hover {
  background: #f3f5ff;
  color: var(--zh-mr-violet-d);
}

/* ----- Variant 4 — SAVE STICKER (rotated corner badge) -----
   Card stays light; a rotated violet sticker sits on the top-right
   corner with "SAVE £N", subtle pulse animation. Soft violet glow
   around the whole card. Layout otherwise unchanged. */
.tours-v2-page .ee-booking--v4 {
  position: relative;
  overflow: visible;
  box-shadow: 0 18px 44px rgba(92, 119, 204, 0.28), 0 0 0 1px rgba(92, 119, 204, 0.18);
}
.tours-v2-page .ee-booking--v4::before {
  content: "Save £" attr(data-save);
  position: absolute;
  top: -18px;
  right: -14px;
  background: linear-gradient(135deg, var(--zh-mr-violet) 0%, var(--zh-mr-violet-d) 100%);
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 16px;
  border-radius: 999px;
  transform: rotate(-8deg);
  box-shadow: 0 8px 18px rgba(92, 119, 204, 0.45);
  white-space: nowrap;
  z-index: 2;
  animation: zh-mr-pulse 2.4s ease-in-out infinite;
}
@keyframes zh-mr-pulse {
  0%, 100% { transform: rotate(-8deg) scale(1);   }
  50%      { transform: rotate(-8deg) scale(1.06); }
}
.tours-v2-page .ee-booking--v4 .zh-mr-aside__save { background: var(--zh-mr-violet); }

/* Compact-mode tightening for the booking aside whenever the deal has a Member rate. */
.tours-v2-page .ee-booking--has-member {
  padding: 8px 14px 14px;
}
.ee-booking--has-member .label {
  font-size: 10px;
  margin-bottom: 2px;
}
.ee-booking--has-member .strike-row { margin-bottom: 0; }
.ee-booking--has-member .strike { font-size: 12px; }
.ee-booking--has-member .save {
  font-size: 10px;
  padding: 2px 6px;
}
.ee-booking--has-member .price {
  font-size: 24px;
  margin-top: 2px;
}
.ee-booking--has-member .bk-rows { margin: 10px 0 2px; }
.ee-booking--has-member .bk-row {
  padding: 6px 0;
  font-size: 12px;
}
.ee-booking--has-member .bk-row:first-child { padding-top: 10px; }
.ee-booking--has-member .rows { margin-top: 0; }
.ee-booking--has-member .bk-row .k { font-size: 9px; }
.ee-booking--has-member .btn-primary {
  margin-top: 4px;
  padding: 6px 14px;
  font-size: 12px;
}
.ee-booking--has-member .bk-row:last-child { padding-bottom: 3px; }

/* ============================================================
   2. Member rate section — promo-style band above "Why we love it"
        Mirrors .v2-promo layout, recolored in Loyalty Violet.
   ============================================================ */
.tours-v2-page .v2-member-rate {
  padding: 12px 0;
  margin: 40px auto;
}
.tours-v2-page .v2-member-rate .v2-section-title {
  margin-bottom: 4px;
}
.tours-v2-page .v2-member-rate__lead {
  text-align: center;
  color: #4a5a63;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 auto 14px;
  max-width: 640px;
}
.tours-v2-page .v2-member-rate__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 70%;
  margin: 0 auto;
}
.tours-v2-page .v2-member-rate__card {
  position: relative;
  background: var(--zh-mr-violet-bg);
  border: 2px dashed var(--zh-mr-violet);
  border-radius: 12px;
  padding: 14px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-height: 64px;
}
.tours-v2-page .v2-member-rate__card::before,
.tours-v2-page .v2-member-rate__card::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 2px dashed var(--zh-mr-violet);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
}
.tours-v2-page .v2-member-rate__card::before { left: -9px; }
.tours-v2-page .v2-member-rate__card::after  { right: -9px; }

.tours-v2-page .v2-member-rate__card-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.tours-v2-page .v2-member-rate__eyebrow {
  align-self: flex-start;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--zh-mr-violet);
  padding: 4px 10px;
  border-radius: 999px;
  line-height: 1;
}
.tours-v2-page .v2-member-rate__prices {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: Montserrat, sans-serif;
}
.tours-v2-page .v2-member-rate__price-old {
  font-weight: 500;
  font-size: 16px;
  color: #4a5a63;
  text-decoration: line-through;
}
.tours-v2-page .v2-member-rate__price-new {
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.2px;
  color: var(--zh-mr-blue);
  line-height: 1.1;
}
.tours-v2-page .v2-member-rate__note {
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--zh-mr-violet-d);
  text-align: right;
  flex-shrink: 0;
  max-width: 220px;
}
.tours-v2-page .v2-member-rate__fine {
  text-align: center;
  color: #4a5a63;
  font-size: 12px;
  font-style: italic;
  margin: 12px auto 0;
}

/* ============================================================
   Member-rate section — simple layout: title + lead +
   clickable screenshot + "See this rate on ZenHotels" CTA.
   ============================================================ */
.tours-v2-page .v2-mr-shot {
  display: block;
  max-width: 900px;
  margin: 24px auto 16px;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(92, 119, 204, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.tours-v2-page a.v2-mr-shot:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(92, 119, 204, 0.28);
}
.tours-v2-page .v2-mr-shot__img {
  display: block;
  width: 100%;
  height: auto;
}
.tours-v2-page .v2-mr-cta {
  display: block;
  margin: 16px auto 0;
  background: #eaecf7;
  color: #4a7bc8;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 12px;
  transition: background 0.15s ease, color 0.15s ease;
}
.tours-v2-page .v2-mr-cta:hover { background: #d8dbef; color: #355a96; }

/* ============================================================
   Legacy 3-column Member-rate styles — kept inert below (unused
   by current markup, harmless if browsers parse them).
   ============================================================ */
.tours-v2-page .v2-member-rate {
  background: #f6f8ff;
  border-radius: 18px;
  padding: 28px 32px 40px;
  margin: 40px auto;
}
.tours-v2-page .v2-mr-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr) minmax(200px, 1fr) minmax(200px, 1fr);
  gap: 16px;
  align-items: stretch;
  margin: 20px 0 8px;
}
@media (max-width: 980px) {
  .tours-v2-page .v2-mr-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .tours-v2-page .v2-mr-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Left column: room info ===== */
.tours-v2-page .v2-mr-room {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: transparent;
}
.tours-v2-page .v2-mr-room__alert {
  background: #fde2e3;
  color: #c93b3d;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-align: center;
  border-radius: 12px;
  padding: 10px 14px;
}
/* Baige width override — moved into the mu-plugin so deploys don't need to
   edit the theme's single-tours-v3.css. Specificity (0,2,0) beats the theme's
   (0,1,0) base rule. */
.tours-v2-page .ee-booking { width: 264px; }

/* Image container — show the uploaded screenshot at its natural aspect ratio,
   capped to a reasonable width. No cropping, no forced dimensions. */
.tours-v2-page .v2-mr-room__image {
  width: 240px !important;
  max-width: 100% !important;
  flex: 0 0 auto !important;
  align-self: flex-start !important;
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
}
.tours-v2-page .v2-mr-room__image img {
  display: block;
  width: 100%;
  height: auto;
}
.tours-v2-page .v2-mr-room__photos {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(20, 28, 36, 0.85);
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 8px;
  letter-spacing: 0.02em;
}
.tours-v2-page .v2-mr-room__title {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #0e1f2c;
  margin: 4px 0 0;
}
.tours-v2-page .v2-mr-room__bed {
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  color: #0e1f2c;
  margin: 0;
}
.tours-v2-page .v2-mr-room__amenities {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tours-v2-page .v2-mr-room__amenity {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f1ede5;
  color: #2a3a47;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  font-size: 13px;
  padding: 7px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.tours-v2-page .v2-mr-room__amenity-icon {
  font-size: 14px;
  line-height: 1;
}
.tours-v2-page .v2-mr-room__more {
  align-self: flex-start;
  background: none;
  border: 0;
  padding: 0;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #4a7bc8;
  cursor: pointer;
  text-decoration: none;
}
.tours-v2-page .v2-mr-room__more:hover { text-decoration: underline; }
.tours-v2-page .v2-mr-room__see {
  align-self: flex-start;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--zh-mr-pink);
  text-decoration: none;
  margin-top: 4px;
}
.tours-v2-page .v2-mr-room__see:hover { color: #c93b3d; text-decoration: underline; }

/* Footer "See this rate on ZenHotels" — full-width centred band below the 3-column grid. */
.tours-v2-page .v2-mr-footer {
  background: #eaecf7;
  border-radius: 12px;
  text-align: center;
  padding: 14px 16px;
  margin-top: 16px;
}
.tours-v2-page .v2-mr-footer__link {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #4a7bc8;
  text-decoration: none;
}
.tours-v2-page .v2-mr-footer__link:hover { color: #355a96; text-decoration: underline; }

/* ===== Centre column: dark-blue Member Price ticket ===== */
.tours-v2-page .v2-mr-ticket {
  position: relative;
  background: #07394e;
  color: #fff;
  border-radius: 14px;
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  font-family: Montserrat, sans-serif;
  overflow: hidden;
  isolation: isolate;
}
.tours-v2-page .v2-mr-ticket__tag {
  align-self: flex-start;
  background: var(--zh-mr-pink);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border-radius: 8px;
  margin-bottom: 16px;
}
.tours-v2-page .v2-mr-ticket__hero {
  flex: 1;
  min-height: 220px;
}
.tours-v2-page .v2-mr-ticket__heading {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 10px;
}
.tours-v2-page .v2-mr-ticket__amount {
  color: var(--zh-mr-pink);
  font-weight: 800;
}
.tours-v2-page .v2-mr-ticket__sub {
  color: #cfd9e0;
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
  max-width: 24ch;
}
/* Perforated divider — circular cutouts pinned to the card edges, then a
   row of dots in the middle to suggest a tear line. */
.tours-v2-page .v2-mr-ticket__perforation {
  position: relative;
  height: 22px;
  margin: 18px -20px 14px;
}
.tours-v2-page .v2-mr-ticket__perforation::before,
.tours-v2-page .v2-mr-ticket__perforation::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: #f6f8ff; /* matches section background */
  border-radius: 50%;
}
.tours-v2-page .v2-mr-ticket__perforation::before { left: -11px; }
.tours-v2-page .v2-mr-ticket__perforation::after  { right: -11px; }
/* Dot row between the two semicircles. */
.tours-v2-page .v2-mr-ticket__perforation {
  background-image: radial-gradient(circle, #fff 1.5px, transparent 2px);
  background-size: 14px 22px;
  background-position: center;
  background-repeat: repeat-x;
}
.tours-v2-page .v2-mr-ticket__bottom {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tours-v2-page .v2-mr-ticket__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}
.tours-v2-page .v2-mr-ticket__price-new {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #fff;
  letter-spacing: 0.2px;
}
.tours-v2-page .v2-mr-ticket__price-old {
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #cfd9e0;
  text-decoration: line-through;
}
.tours-v2-page .v2-mr-ticket__meta {
  font-size: 13px;
  color: #d8dde2;
  margin: 0;
  line-height: 1.35;
}
.tours-v2-page .v2-mr-ticket__meta--muted { color: #aab4bd; }
.tours-v2-page .v2-mr-ticket__cta {
  display: block;
  margin-top: 14px;
  background: var(--zh-mr-pink);
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  padding: 13px 16px;
  border-radius: 12px;
  transition: background .15s ease;
}
.tours-v2-page .v2-mr-ticket__cta:hover { background: #d8484a; }

/* ===== Right column: two regular rate cards stacked ===== */
.tours-v2-page .v2-mr-rates {
  display: contents;
}
@media (max-width: 980px) {
  .tours-v2-page .v2-mr-rates { display: contents; }
}
.tours-v2-page .v2-mr-rate {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  font-family: Montserrat, sans-serif;
}
.tours-v2-page .v2-mr-rate__list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tours-v2-page .v2-mr-rate__row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #e8e8e8;
  font-size: 13px;
  color: #0e1f2c;
  line-height: 1.35;
}
.tours-v2-page .v2-mr-rate__row:last-child { border-bottom: 0; }
.tours-v2-page .v2-mr-rate__row--good { color: #2e8d57; font-weight: 600; }
.tours-v2-page .v2-mr-rate__icon {
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
  color: inherit;
}
.tours-v2-page .v2-mr-rate__row--good .v2-mr-rate__icon { color: #2e8d57; }
.tours-v2-page .v2-mr-rate__body {
  margin-top: auto;
  display: flex;
  flex-direction: column;
}
.tours-v2-page .v2-mr-rate__best {
  align-self: flex-start;
  background: #d6f0d8;
  color: #2e8d57;
  font-weight: 700;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 8px;
  margin-bottom: 8px;
}
.tours-v2-page .v2-mr-rate__price {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #0e1f2c;
  letter-spacing: 0.2px;
}
.tours-v2-page .v2-mr-rate__meta {
  font-size: 13px;
  color: #4a5a63;
  margin: 0;
  line-height: 1.35;
}
.tours-v2-page .v2-mr-rate__meta--muted { color: #8b969f; }
.tours-v2-page .v2-mr-rate__cta {
  display: block;
  margin-top: 14px;
  background: var(--zh-mr-pink);
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  padding: 13px 16px;
  border-radius: 12px;
  transition: background .15s ease;
}
.tours-v2-page .v2-mr-rate__cta:hover { background: #d8484a; }

.tours-v2-page .v2-member-rate__proof {
  margin: 18px auto 0;
  max-width: 70%;
  text-align: center;
}
.tours-v2-page .v2-member-rate__proof-link {
  display: inline-block;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(92, 119, 204, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  border: 1px solid rgba(92, 119, 204, 0.25);
  background: #fff;
}
.tours-v2-page .v2-member-rate__proof-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(92, 119, 204, 0.28);
}
.tours-v2-page .v2-member-rate__proof-img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}
.tours-v2-page .v2-member-rate__proof-caption {
  display: block;
  padding: 10px 16px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--zh-mr-violet-d);
  background: var(--zh-mr-violet-l);
  border-top: 1px solid rgba(92, 119, 204, 0.2);
}
.tours-v2-page .v2-member-rate__proof-link:hover .v2-member-rate__proof-caption {
  background: var(--zh-mr-violet);
  color: #fff;
  border-top-color: var(--zh-mr-violet);
}

@media (max-width: 720px) {
  .tours-v2-page .v2-member-rate__proof { max-width: 100%; }
}

@media (max-width: 720px) {
  .tours-v2-page .v2-member-rate__list { max-width: 100%; }
  .tours-v2-page .v2-member-rate__card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 18px;
    min-height: 0;
  }
  .tours-v2-page .v2-member-rate__card::before,
  .tours-v2-page .v2-member-rate__card::after { display: none; }
  .tours-v2-page .v2-member-rate__price-new { font-size: 22px; }
  .tours-v2-page .v2-member-rate__note { text-align: left; max-width: 100%; }
}
