/** Shopify CDN: Minification failed

Line 1885:0 Unexpected "<"
Line 2275:0 Unexpected "<"
Line 2491:0 Unexpected "<"

**/
/* =========================
   ROAMPASS BUYBOX V6
========================= */

.rp-buybox-pro{
  max-width:1280px;
  margin:0 auto;
  padding:16px;

  font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;

  color:#020617;
}

.rp-buybox-pro *{
  box-sizing:border-box;
}

/* =========================
   LAYOUT
========================= */

.rp-buybox-pro__shell{
  display:grid;

  grid-template-columns:360px 620px;

  grid-template-areas:
    "visual panel"
    "details panel";

  justify-content:center;
  align-items:start;

  gap:18px;
}

/* =========================
   VISUAL
========================= */

.rp-buybox-pro__visual{
  grid-area:visual;

  overflow:hidden;

  border-radius:28px;

  background:#e5e7eb;

  border:1px solid #e2e8f0;
}

.rp-buybox-pro__image{
  display:block;

  width:100%;

  aspect-ratio:1/1;

  object-fit:cover;
}

.rp-buybox-pro__visual-badge{
  display:none !important;
}

/* =========================
   PANEL
========================= */

.rp-buybox-pro__panel{
  grid-area:panel;

  display:grid;

  gap:12px;

  padding:18px;

  border:1px solid #e2e8f0;
  border-radius:28px;

  background:#fff;

  box-shadow:
    0 10px 30px rgba(15,23,42,.04),
    0 2px 8px rgba(15,23,42,.03);
}

/* =========================
   HEADER
========================= */

.rp-buybox-pro__header{
  display:flex;

  align-items:flex-start;

  gap:10px;
}

.rp-buybox-pro__flag{
  width:38px;
  height:38px;

  flex:0 0 38px;

  overflow:hidden;

  border-radius:999px;

  border:1px solid #e5e7eb;
}

.rp-buybox-pro__flag img{
  width:100%;
  height:100%;

  object-fit:cover;
}

.rp-buybox-pro__heading{
  flex:1 1 auto;

  min-width:0;
}

.rp-buybox-pro__title{
  margin:0;

  color:#020617;

  font-size:42px;
  line-height:.94;

  letter-spacing:-.06em;

  font-weight:950;
}

.rp-buybox-pro__subtitle{
  margin:4px 0 0;

  color:#64748b;

  font-size:13px;
  line-height:1.4;

  font-weight:650;
}

/* =========================
   TRUST
========================= */

.rp-buybox-pro__trust{
  display:flex;

  flex-wrap:wrap;

  gap:7px;
}

.rp-buybox-pro__trust span{
  display:flex;

  align-items:center;

  gap:6px;

  min-height:32px;

  padding:0 11px;

  border:1px solid #e5e7eb;
  border-radius:999px;

  background:#fff;

  color:#334155;

  font-size:11.5px;

  font-weight:850;
}

.rp-buybox-pro__trust .material-symbols-outlined{
  font-size:15px;

  color:#0f172a;
}

.rp-buybox-pro__trust--mobile{
  display:none;
}

.rp-buybox-pro__trust--desktop{
  display:flex;
}

/* =========================
   FORM
========================= */

.rp-buybox-pro__form{
  display:grid;

  gap:12px;
}

/* =========================
   PLAN MODE
========================= */

.rp-plan-mode{
  display:grid;

  gap:10px;
}

.rp-plan-mode__tabs{
  display:grid;

  grid-template-columns:1fr 1fr;

  gap:5px;

  padding:5px;

  border-radius:18px;

  background:#f3f4f6;
}

.rp-plan-mode__tab{
  height:42px;

  border:0;
  border-radius:13px;

  background:transparent;

  color:#020617;

  font-size:13px;

  font-weight:900;

  cursor:pointer;

  transition:.18s ease;
}

.rp-plan-mode__tab.is-active{
  background:#86efac;

  color:#052e16;

  box-shadow:
    0 8px 20px rgba(16,185,129,.14),
    inset 0 1px 0 rgba(255,255,255,.5);
}

.rp-plan-mode__panel{
  display:none;
}

.rp-plan-mode__panel.is-active{
  display:grid;

  grid-template-columns:repeat(2,minmax(0,1fr));

  gap:10px;

  padding:10px;

  border-radius:22px;

  background:#f5f5fb;
}

/* =========================
   PLAN CARD
========================= */

.rp-plan-card{
  position:relative;

  display:grid;

  gap:7px;

  min-height:120px;

  padding:14px;

  border:1px solid #dbe1ea;
  border-radius:20px;

  background:#fff;

  cursor:pointer;

  transition:
    transform .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    background .18s ease;
}

.rp-plan-card:hover{
  transform:translateY(-3px);

  border-color:#60a5fa;

  box-shadow:
    0 14px 28px rgba(37,99,235,.10),
    0 4px 10px rgba(37,99,235,.06);
}

.rp-plan-card.is-active{
  border:2px solid #4ade80;

  background:#f0fff5;

  transform:translateY(-4px);

  box-shadow:
    0 18px 34px rgba(74,222,128,.18),
    0 6px 16px rgba(74,222,128,.10);
}

.rp-plan-card__top{
  display:flex;

  align-items:center;
  justify-content:space-between;

  gap:8px;
}

.rp-plan-card__top strong{
  color:#020617;

  font-size:14px;

  font-weight:950;
}

.rp-plan-card__top em{
  padding:4px 7px;

  border-radius:999px;

  background:#e2e8f0;

  color:#475569;

  font-size:9px;

  font-style:normal;

  font-weight:900;

  white-space:nowrap;
}

.rp-plan-card__top em.is-popular{
  background:#dbeafe;

  color:#2563eb;
}

.rp-plan-card__main{
  color:#020617;

  font-size:26px;
  line-height:1;

  letter-spacing:-.05em;

  font-weight:950;
}

.rp-plan-card__desc{
  color:#475569;

  font-size:12px;
  line-height:1.35;

  font-weight:700;
}

/* =========================
   OPTIONS
========================= */

.rp-buybox-pro__field{
  display:grid;

  gap:8px;
}

.rp-buybox-pro__label{
  color:#020617;

  font-size:13px;

  font-weight:900;
}

.rp-buybox-pro__options{
  display:flex;

  flex-wrap:wrap;

  gap:7px;
}

.rp-buybox-pro__option{
  min-height:36px;

  padding:0 13px;

  border:1px solid #d1d5db;
  border-radius:999px;

  background:#fff;

  color:#020617;

  font-size:12px;

  font-weight:900;

  cursor:pointer;
}

.rp-buybox-pro__option.is-active{
  border-color:#4ade80;

  background:#f0fff5;

  color:#166534;
}

/* =========================
   SUMMARY
========================= */

.rp-buybox-pro__summary{
  display:grid;

  gap:10px;

  padding:14px;

  border:1px solid #dbeafe;
  border-radius:22px;

  background:linear-gradient(180deg,#f8fbff 0%,#fff 100%);
}

.rp-buybox-pro__summary-head{
  display:flex;

  align-items:flex-start;
  justify-content:space-between;

  gap:10px;
}

.rp-buybox-pro__summary-label{
  display:block;

  margin-bottom:5px;

  color:#2563eb;

  font-size:12px;

  font-weight:950;
}

.rp-buybox-pro__summary-main{
  display:flex;

  flex-wrap:wrap;

  align-items:center;

  gap:7px;

  color:#020617;

  font-size:24px;
  line-height:1;

  letter-spacing:-.05em;

  font-weight:950;
}

.rp-buybox-pro__summary-badge{
  padding:5px 8px;

  border-radius:999px;

  background:#2563eb;

  color:#fff;

  font-size:9px;

  font-weight:950;
}

.rp-buybox-pro__summary-copy{
  margin:0;

  color:#475569;

  font-size:12px;
  line-height:1.4;

  font-weight:700;
}

/* =========================
   PRICE
========================= */

.rp-buybox-pro__price-row{
  display:flex;

  align-items:center;
  justify-content:space-between;

  gap:10px;
}

.rp-buybox-pro__price-label{
  display:block;

  margin-bottom:3px;

  color:#64748b;

  font-size:10px;

  font-weight:900;

  text-transform:uppercase;

  letter-spacing:.08em;
}

.rp-buybox-pro__price{
  display:block;

  color:#020617;

  font-size:42px;
  line-height:.94;

  letter-spacing:-.07em;

  font-weight:950;
}

.rp-buybox-pro__price-note{
  display:grid;

  justify-items:center;

  gap:2px;

  min-width:82px;

  padding:8px 10px;

  border-radius:16px;

  background:#ecfdf5;
}

.rp-buybox-pro__price-note strong{
  color:#047857;

  font-size:15px;
  line-height:1;

  font-weight:950;
}

.rp-buybox-pro__price-note span{
  color:#047857;

  font-size:9px;

  font-weight:900;
}

/* =========================
   ACTIONS
========================= */

.rp-buybox-pro__actions{
  display:grid;

  grid-template-columns:1fr 132px;

  gap:8px;
}

.rp-buybox-pro__payment .shopify-payment-button,
.rp-buybox-pro__payment .shopify-payment-button__button{
  width:100%;
}

.rp-buybox-pro__payment .shopify-payment-button__button{
  min-height:48px !important;

  border-radius:16px !important;

  overflow:hidden !important;
}

.rp-buybox-pro__cart{
  min-height:48px;

  border:1px solid #d1d5db;
  border-radius:16px;

  background:#fff;

  color:#020617;

  font-size:13px;

  font-weight:950;

  cursor:pointer;
}

.rp-buybox-pro__note{
  margin:0;

  color:#64748b;

  font-size:11px;
  line-height:1.4;

  font-weight:700;
}

.rp-buybox-pro__pay-logos{
  display:flex;

  flex-wrap:wrap;

  gap:6px;
}

.rp-buybox-pro__pay-logos span{
  padding:5px 8px;

  border:1px solid #e5e7eb;
  border-radius:999px;

  background:#fff;

  color:#475569;

  font-size:10px;

  font-weight:850;
}

/* =========================
   DETAILS
========================= */

.rp-buybox-pro__details{
  grid-area:details;
}

.rp-buybox-pro__spec{
  padding:16px 20px 10px;

  border:1px solid #e2e8f0;
  border-radius:22px;

  background:#fff;

  box-shadow:
    0 10px 24px rgba(15,23,42,.05),
    0 2px 6px rgba(15,23,42,.03);
}

.rp-buybox-pro__spec h2{
  position:relative;

  margin:0 0 20px;

  color:#020617;

  text-align:center;

  font-size:28px;
  line-height:1.1;

  letter-spacing:-.04em;

  font-weight:950;
}

.rp-buybox-pro__spec h2::after{
  content:"";

  position:absolute;
  left:50%;
  bottom:-10px;

  width:42px;
  height:3px;

  transform:translateX(-50%);

  border-radius:999px;

  background:#020617;
}

.rp-buybox-pro__spec-grid{
  display:block;
}

.rp-buybox-pro__spec-row{
  display:flex;

  align-items:center;
  justify-content:space-between;

  gap:18px;

  padding:13px 0;

  border:0;
  border-bottom:1px solid #e5e7eb;
  border-radius:0;

  background:transparent;

  transition:none;
}

.rp-buybox-pro__spec-row:last-child{
  border-bottom:0;
}

.rp-buybox-pro__spec-row:hover{
  transform:none;

  border-color:#e5e7eb;

  background:transparent;

  box-shadow:none;
}

.rp-buybox-pro__spec-row span{
  flex:0 0 auto;

  color:#020617;

  font-size:14px;
  line-height:1.2;

  letter-spacing:0;
  text-transform:none;

  font-weight:900;
}

.rp-buybox-pro__spec-row span::after{
  content:":";
}

.rp-buybox-pro__spec-row strong{
  flex:1 1 auto;

  min-width:0;

  color:#020617;

  text-align:right;

  font-size:14px;
  line-height:1.35;

  font-weight:500;
}
/* =========================
   TABLET
========================= */

@media(max-width:900px){

  .rp-buybox-pro{
    padding:8px;
  }

  .rp-buybox-pro__shell{
    grid-template-columns:1fr;

    grid-template-areas:
      "panel"
      "details";

    gap:10px;
  }

  .rp-buybox-pro__visual{
    display:none !important;
  }

  .rp-buybox-pro__panel{
    width:100%;

    padding:14px;

    border-radius:22px;
  }

  .rp-buybox-pro__title{
    font-size:34px;
  }

  .rp-buybox-pro__trust{
    display:none;
  }

  .rp-buybox-pro__details{
    display:block !important;
  }

  .rp-buybox-pro__actions{
    grid-template-columns:1fr;
  }

  .rp-buybox-pro__spec{
    padding:14px;

    border-radius:22px;
  }

  .rp-buybox-pro__spec-grid{
    gap:8px;
  }

  .rp-buybox-pro__spec-row{
    padding:10px;

    border-radius:15px;
  }
}

/* =========================
   MOBILE
========================= */

@media(max-width:760px){

  .rp-buybox-pro{
    padding:6px;
  }

  .rp-buybox-pro__panel{
    padding:12px;

    border-radius:20px;

    gap:10px;
  }

  .rp-buybox-pro__header{
    gap:8px;
  }

  .rp-buybox-pro__flag{
    width:34px;
    height:34px;

    flex-basis:34px;
  }

  .rp-buybox-pro__title{
    font-size:30px;
  }

  .rp-buybox-pro__subtitle{
    font-size:11px;
  }

  .rp-buybox-pro__trust--mobile{
    display:flex !important;

    flex-wrap:wrap;

    gap:6px;

    width:100%;

    margin-top:10px;
  }

  .rp-buybox-pro__trust--mobile span{
    display:flex;

    align-items:center;

    width:calc(50% - 3px);

    min-height:30px;

    padding:6px 8px;

    border-radius:999px;

    border:1px solid #e2e8f0;

    background:#f8fafc;

    color:#334155;

    font-size:10px;
    line-height:1;

    font-weight:750;

    white-space:nowrap;
  }

  .rp-buybox-pro__trust--mobile .material-symbols-outlined{
    margin-right:4px;

    font-size:13px;

    color:#2563eb;
  }

  .rp-plan-mode__tabs{
    padding:4px;

    border-radius:14px;
  }

  .rp-plan-mode__tab{
    height:38px;

    border-radius:11px;

    font-size:12px;
  }

  .rp-plan-mode__panel.is-active{
    grid-template-columns:1fr;

    gap:9px;

    padding:8px;
  }

  .rp-plan-card{
    min-height:auto;

    padding:12px;

    border-radius:16px;

    gap:6px;
  }

  .rp-plan-card__top strong{
    font-size:12px;
  }

  .rp-plan-card__top em{
    font-size:8px;

    padding:3px 6px;
  }

  .rp-plan-card__main{
    font-size:21px;
  }

  .rp-plan-card__desc{
    font-size:10.5px;
  }

  .rp-buybox-pro__summary{
    padding:11px;

    border-radius:18px;
  }

  .rp-buybox-pro__summary-main{
    font-size:20px;
  }

  .rp-buybox-pro__summary-copy{
    font-size:10.5px;
  }

  .rp-buybox-pro__price{
    font-size:34px;
  }

  .rp-buybox-pro__payment .shopify-payment-button__button,
  .rp-buybox-pro__cart{
    min-height:44px !important;

    border-radius:14px !important;
  }

  .rp-buybox-pro__pay-logos{
    display:none;
  }

  .rp-buybox-pro__spec{
    padding:12px;

    border-radius:20px;
  }

  .rp-buybox-pro__spec h2{
    margin-bottom:10px;

    font-size:28px;
  }

  .rp-buybox-pro__spec-grid{
    grid-template-columns:1fr 1fr;

    gap:7px;
  }

  .rp-buybox-pro__spec-row{
    gap:4px;

    padding:9px;

    border-radius:14px;
  }

  .rp-buybox-pro__spec-row span{
    font-size:15px;
  }

  .rp-buybox-pro__spec-row strong{
    font-size:15px;

    line-height:1.3;
  }
}

/* ===== Modern Trip Moments ===== */

.rp-trip-moments{
  padding:56px 20px;
  border-radius:32px;
  background:
    radial-gradient(circle at top right, rgba(37,99,235,.10), transparent 32%),
    radial-gradient(circle at bottom left, rgba(16,185,129,.08), transparent 34%),
    linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
  color:#020617;
  overflow:hidden;
  border:1px solid #e5e7eb;
  box-shadow:0 18px 50px rgba(15,23,42,.07);
}

.rp-trip-moments__wrap{
  max-width:1180px;
  margin:0 auto;
}

.rp-trip-moments__eyebrow{
  display:inline-flex;
  padding:7px 13px;
  border-radius:999px;
  background:#eff6ff;
  border:1px solid #dbeafe;
  font-size:12px;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#2563eb;
  margin-bottom:18px;
}

.rp-trip-moments__title{
  margin:0;
  max-width:820px;
  font-size:clamp(34px,4.6vw,62px);
  line-height:1;
  letter-spacing:-.055em;
  font-weight:950;
  color:#020617;
}

.rp-trip-moments__sub{
  margin:18px 0 0;
  max-width:660px;
  font-size:16.5px;
  line-height:1.7;
  font-weight:500;
  color:#475569;
}

.rp-trip-moments__grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  margin-top:34px;
}

.rp-trip-moments__card{
  display:flex;
  gap:15px;
  padding:22px;
  border-radius:24px;
  background:rgba(255,255,255,.82);
  border:1px solid #e2e8f0;
  box-shadow:
    0 10px 28px rgba(15,23,42,.055),
    inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter:blur(10px);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.rp-trip-moments__card:hover{
  transform:translateY(-3px);
  border-color:#bfdbfe;
  box-shadow:0 18px 40px rgba(15,23,42,.08);
}

.rp-trip-moments__card .material-symbols-outlined{
  width:46px;
  height:46px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  background:#eff6ff;
  color:#2563eb;
  font-size:24px;
}

.rp-trip-moments__card h3{
  margin:0 0 7px;
  font-size:18px;
  line-height:1.2;
  font-weight:900;
  letter-spacing:-.025em;
  color:#020617;
}

.rp-trip-moments__card p{
  margin:0;
  font-size:14.5px;
  line-height:1.6;
  font-weight:500;
  color:#475569;
}

.rp-trip-moments__foot{
  margin-top:18px;
  font-size:13px;
  color:#64748b;
}

.rp-product-copy{
  max-width:900px;
  margin:44px auto 0;
  padding:34px;
  border-radius:28px;
  background:#ffffff;
  border:1px solid #e5e7eb;
  box-shadow:0 14px 38px rgba(15,23,42,.06);
}

.rp-product-copy h2{
  margin:0 0 16px;
  font-size:34px;
  line-height:1.08;
  letter-spacing:-.045em;
  font-weight:950;
  color:#020617;
}

.rp-product-copy p{
  margin:0 0 15px;
  font-size:16px;
  line-height:1.75;
  font-weight:500;
  color:#334155;
}

@media (max-width:900px){

  .rp-trip-moments{
    padding:26px 14px;
    border-radius:24px;
    box-shadow:0 12px 30px rgba(15,23,42,.06);
  }

  .rp-trip-moments__eyebrow{
    margin-bottom:12px;
    padding:6px 11px;
    font-size:10.5px;
  }

  .rp-trip-moments__title{
    font-size:30px;
    line-height:1.06;
    letter-spacing:-.045em;
  }

  .rp-trip-moments__sub{
    margin-top:10px;
    font-size:14px;
    line-height:1.5;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
  }

  .rp-trip-moments__grid{
    grid-template-columns:1fr;
    gap:10px;
    margin-top:18px;
  }

  .rp-trip-moments__card{
    padding:14px;
    border-radius:18px;
    gap:11px;
  }

  .rp-trip-moments__card .material-symbols-outlined{
    width:38px;
    height:38px;
    border-radius:13px;
    font-size:21px;
  }

  .rp-trip-moments__card h3{
    margin-bottom:4px;
    font-size:15.5px;
  }

  .rp-trip-moments__card p{
    font-size:13px;
    line-height:1.42;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
  }

  .rp-trip-moments__foot{
    margin-top:12px;
    font-size:12px;
  }

  .rp-product-copy{
    margin-top:26px;
    padding:20px 18px;
    border-radius:22px;
  }

  .rp-product-copy h2{
    font-size:25px;
    line-height:1.1;
    margin-bottom:10px;
  }

  .rp-product-copy p{
    font-size:14px;
    line-height:1.55;
    margin-bottom:10px;
  }
}
---------

.rp-compare {
  width: 100%;
  padding: 48px 16px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
}

.rp-compare * {
  box-sizing: border-box;
}

.rp-compare__box {
  max-width: 1100px;
  margin: 0 auto;
  padding: 34px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.rp-compare__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 30px;
}

.rp-compare__eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #6b7280;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.rp-compare__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.rp-compare__sub {
  margin: 14px 0 0;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.65;
}

.rp-compare__body {
  width: 100%;
}

.rp-compare__grid {
  display: grid;
  width: 100%;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  background: #f9fafb;
}

.rp-compare__row {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  border-bottom: 1px solid #e5e7eb;
}

.rp-compare__row:last-child {
  border-bottom: 0;
}

.rp-compare__cell {
  min-height: 82px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #e5e7eb;
  background: #ffffff;
}

.rp-compare__cell:last-child {
  border-right: 0;
}

.rp-compare__cell--primary {
  background: #f8fbff;
}

.rp-compare__row--head .rp-compare__cell {
  min-height: 64px;
  background: #f9fafb;
}

.rp-compare__brand {
  font-size: 14px;
  font-weight: 850;
  color: #374151;
  text-align: center;
}

.rp-compare__brand--primary {
  color: #0f172a;
}

.rp-compare__feature {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}

.rp-compare__icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 14px;
  background: #f3f4f6;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rp-compare__icon .material-symbols-outlined {
  font-size: 21px;
}

.rp-compare__feature-text {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  color: #111827;
}

.rp-compare__mark {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rp-compare__badge {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rp-compare__mark--yes .rp-compare__badge {
  background: #dcfce7;
  color: #15803d;
}

.rp-compare__mark--no .rp-compare__badge {
  background: #fee2e2;
  color: #b91c1c;
}

.rp-compare__badge .material-symbols-outlined {
  font-size: 21px;
  font-weight: 700;
}

/* Mobile: no horizontal scroll */
@media (max-width: 700px) {
  .rp-compare {
    padding: 34px 12px;
  }

  .rp-compare__box {
    padding: 20px 12px;
    border-radius: 24px;
  }

  .rp-compare__head {
    margin-bottom: 22px;
  }

  .rp-compare__sub {
    font-size: 14px;
    line-height: 1.55;
  }

  .rp-compare__grid {
    border-radius: 18px;
  }

  .rp-compare__row {
    grid-template-columns: 1.25fr repeat(3, .75fr);
  }

  .rp-compare__cell {
    min-height: 64px;
    padding: 10px 6px;
  }

  .rp-compare__row--head .rp-compare__cell {
    min-height: 48px;
  }

  .rp-compare__brand {
    font-size: 11px;
    line-height: 1.15;
  }

  .rp-compare__feature {
    gap: 7px;
  }

  .rp-compare__icon {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
    border-radius: 10px;
  }

  .rp-compare__icon .material-symbols-outlined {
    font-size: 17px;
  }

  .rp-compare__feature-text {
    font-size: 12px;
    line-height: 1.15;
  }

  .rp-compare__badge {
    width: 26px;
    height: 26px;
  }

  .rp-compare__badge .material-symbols-outlined {
    font-size: 17px;
  }
}

@media (max-width: 390px) {
  .rp-compare__row {
    grid-template-columns: 1.15fr repeat(3, .7fr);
  }

  .rp-compare__cell {
    padding: 8px 4px;
  }

  .rp-compare__brand {
    font-size: 10px;
  }

  .rp-compare__feature-text {
    font-size: 11px;
  }

  .rp-compare__icon {
    display: none;
  }
}





.rp-esim-checker {
  width: 100%;
  padding: 30px 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
}

.rp-esim-checker *,
.rp-esim-checker *::before,
.rp-esim-checker *::after {
  box-sizing: border-box;
}

.rp-esim-checker__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.rp-esim-checker__wrap {
  padding: 30px;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 0%, rgba(37, 99, 235, .09), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 20px 48px rgba(15, 23, 42, .06);
}

.rp-esim-checker__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
}

.rp-esim-checker__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #eff6ff;
  color: #2563eb;
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .035em;
}

.rp-esim-checker__title {
  margin: 0;
  color: #080f22;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.rp-esim-checker__sub {
  max-width: 620px;
  margin: 12px 0 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.5;
}

.rp-esim-checker__tabs {
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
  background: #e5e7eb;
}

.rp-esim-checker__tab {
  appearance: none;
  min-width: 92px;
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #64748b;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
}

.rp-esim-checker__tab.is-active {
  background: #ffffff;
  color: #2563eb;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .08);
}

.rp-esim-checker__panel {
  display: none;
  margin-top: 20px;
}

.rp-esim-checker__panel.is-active {
  display: block;
}

.rp-esim-checker__card {
  padding: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  background: rgba(255,255,255,.86);
}

.rp-esim-checker__panel-head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
}

.rp-esim-checker__icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  background: #eff6ff;
  color: #2563eb;
}

.rp-esim-checker__icon span {
  font-size: 24px;
}

.rp-esim-checker__panel-title {
  color: #0f172a;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 900;
}

.rp-esim-checker__panel-sub {
  margin-top: 3px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 650;
}

.rp-esim-checker__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.rp-esim-checker__step {
  min-height: 76px;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #f8fafc;
}

.rp-esim-checker__step span {
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 9px;
  border-radius: 999px;
  background: #0f172a;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.rp-esim-checker__step p {
  margin: 0;
  color: #334155;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 850;
}

.rp-esim-checker__foot {
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: rgba(255,255,255,.74);
  color: #64748b;
  font-size: 13px;
  line-height: 1.4;
}

@media (max-width: 820px) {
  .rp-esim-checker {
    padding: 20px 0;
  }

  .rp-esim-checker__inner {
    width: calc(100% - 18px);
  }

  .rp-esim-checker__wrap {
    padding: 18px 14px 14px;
    border-radius: 22px;
  }

  .rp-esim-checker__head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .rp-esim-checker__eyebrow {
    margin-bottom: 8px;
    padding: 6px 9px;
    font-size: 10px;
  }

  .rp-esim-checker__title {
    font-size: 28px;
  }

  .rp-esim-checker__sub {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.42;
  }

  .rp-esim-checker__tabs {
    width: 100%;
  }

  .rp-esim-checker__tab {
    flex: 1;
    min-width: 0;
    min-height: 36px;
    font-size: 12px;
  }

  .rp-esim-checker__panel {
    margin-top: 12px;
  }

  .rp-esim-checker__card {
    padding: 13px;
    border-radius: 18px;
  }

  .rp-esim-checker__panel-head {
    gap: 10px;
    margin-bottom: 12px;
  }

  .rp-esim-checker__icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .rp-esim-checker__icon span {
    font-size: 21px;
  }

  .rp-esim-checker__panel-title {
    font-size: 15px;
  }

  .rp-esim-checker__panel-sub {
    font-size: 11.5px;
  }

  .rp-esim-checker__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .rp-esim-checker__step {
    min-height: 66px;
    padding: 9px;
    border-radius: 14px;
  }

  .rp-esim-checker__step span {
    width: 21px;
    height: 21px;
    margin-bottom: 6px;
    font-size: 10.5px;
  }

  .rp-esim-checker__step p {
    font-size: 11.5px;
    line-height: 1.25;
  }

  .rp-esim-checker__foot {
    margin-top: 10px;
    padding: 10px 11px;
    border-radius: 14px;
    font-size: 11.5px;
  }
}
</style>








.rp-travel-warning-card {
  position: relative;
  width: 100%;
  margin: 34px 0;
  padding: 26px;
  border-radius: 28px;
  overflow: hidden;

  display: flex;
  align-items: flex-start;
  gap: 20px;

  background:
    radial-gradient(circle at top right, rgba(59,130,246,.08), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);

  border: 1px solid #e5e7eb;
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255,255,255,.7);

  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.rp-travel-warning-card * {
  box-sizing: border-box;
}

.rp-travel-warning-card__icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;

  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #111827;
  color: #ffffff;

  box-shadow:
    0 8px 20px rgba(17, 24, 39, 0.18);
}

.rp-travel-warning-card__icon .material-symbols-outlined {
  font-size: 30px;
}

.rp-travel-warning-card__content {
  flex: 1;
  min-width: 0;
}

.rp-travel-warning-card__eyebrow {
  margin: 0 0 8px;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;

  color: #64748b;
}

.rp-travel-warning-card__title {
  margin: 0;

  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 900;

  color: #0f172a;
}

.rp-travel-warning-card__text {
  max-width: 680px;
  margin: 14px 0 0;

  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

.rp-travel-warning-card__button {
  margin-top: 22px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 18px;

  border-radius: 999px;

  background: #111827;
  color: #ffffff;

  text-decoration: none;
  font-size: 14px;
  font-weight: 750;

  transition:
    transform .18s ease,
    background .18s ease,
    box-shadow .18s ease;

  box-shadow:
    0 10px 22px rgba(17,24,39,.14);
}

.rp-travel-warning-card__button:hover {
  transform: translateY(-2px);
  background: #000000;
  box-shadow:
    0 14px 28px rgba(17,24,39,.18);
}

.rp-travel-warning-card__button .material-symbols-outlined {
  font-size: 19px;
  transition: transform .18s ease;
}

.rp-travel-warning-card__button:hover .material-symbols-outlined {
  transform: translateX(2px);
}

/* Tablet */
@media (max-width: 768px) {

  .rp-travel-warning-card {
    padding: 22px 18px;
    gap: 16px;
    border-radius: 24px;
  }

  .rp-travel-warning-card__icon {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    border-radius: 16px;
  }

  .rp-travel-warning-card__icon .material-symbols-outlined {
    font-size: 25px;
  }

  .rp-travel-warning-card__title {
    font-size: 28px;
  }

  .rp-travel-warning-card__text {
    font-size: 14px;
    line-height: 1.6;
  }

  .rp-travel-warning-card__button {
    width: 100%;
    justify-content: center;
  }
}

/* Small mobile */
@media (max-width: 480px) {

  .rp-travel-warning-card {
    flex-direction: column;
    align-items: flex-start;

    padding: 20px 16px;
    border-radius: 22px;
  }

  .rp-travel-warning-card__title {
    font-size: 24px;
    line-height: 1.1;
  }

  .rp-travel-warning-card__eyebrow {
    font-size: 11px;
  }

  .rp-travel-warning-card__button {
    margin-top: 18px;
    padding: 13px 16px;
    font-size: 13px;
  }
}





.rp-refund{
  padding:56px 18px;
  background:#fff;
  font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:#020617;
}

.rp-refund *{box-sizing:border-box;}

.rp-refund__inner{
  position:relative;
  max-width:1120px;
  margin:0 auto;
  overflow:hidden;
  border-radius:32px;
  border:1px solid #e5e7eb;
  background:
    radial-gradient(circle at top left, rgba(15,23,42,.07), transparent 34%),
    linear-gradient(180deg,#fff 0%,#f8fafc 100%);
  box-shadow:0 20px 50px rgba(15,23,42,.08), inset 0 1px 0 rgba(255,255,255,.8);
}

.rp-refund__inner::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(135deg,rgba(255,255,255,.4),transparent 35%);
}

.rp-refund__wrap{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:96px 1fr;
  gap:30px;
  padding:38px;
  align-items:start;
}

.rp-refund__icon{
  width:82px;
  height:82px;
  border-radius:26px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#020617;
  color:#fff;
  box-shadow:0 18px 35px rgba(2,6,23,.22), inset 0 1px 0 rgba(255,255,255,.12);
}

.rp-refund__icon .material-symbols-outlined{font-size:38px;}

.rp-refund__eyebrow{
  margin-bottom:9px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#64748b;
}

.rp-refund__title{
  margin:0;
  max-width:760px;
  font-size:clamp(32px,4vw,50px);
  line-height:1.03;
  letter-spacing:-.055em;
  font-weight:950;
  color:#020617;
}

.rp-refund__text{
  margin:16px 0 0;
  max-width:760px;
  font-size:16px;
  line-height:1.65;
  font-weight:500;
  color:#475569;
}

.rp-refund__list{
  margin:24px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}

.rp-refund__list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:16px;
  border-radius:20px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(226,232,240,.9);
  backdrop-filter:blur(8px);
  box-shadow:0 10px 24px rgba(15,23,42,.05), inset 0 1px 0 rgba(255,255,255,.9);
  font-size:13.5px;
  line-height:1.45;
  font-weight:750;
  color:#0f172a;
}

.rp-refund__list .material-symbols-outlined{
  flex:0 0 auto;
  margin-top:1px;
  font-size:21px;
  color:#020617;
}

@media(max-width:940px){
  .rp-refund__list{grid-template-columns:1fr;}
}

@media(max-width:760px){
  .rp-refund{
    padding:22px 12px;
  }

  .rp-refund__inner{
    border-radius:24px;
    box-shadow:0 14px 34px rgba(15,23,42,.07);
  }

  .rp-refund__wrap{
    display:block;
    padding:20px 18px;
  }

  .rp-refund__icon{
    width:48px;
    height:48px;
    border-radius:16px;
    margin-bottom:14px;
  }

  .rp-refund__icon .material-symbols-outlined{
    font-size:26px;
  }

  .rp-refund__eyebrow{
    display:none;
  }

  .rp-refund__title{
    font-size:26px;
    line-height:1.08;
    letter-spacing:-.045em;
    max-width:100%;
  }

  .rp-refund__text{
    margin-top:10px;
    font-size:14px;
    line-height:1.55;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
  }

  .rp-refund__list{
    margin-top:16px;
    gap:9px;
  }

  .rp-refund__list li{
    padding:12px 13px;
    border-radius:16px;
    font-size:13px;
    line-height:1.35;
  }

  .rp-refund__list .material-symbols-outlined{
    font-size:19px;
  }
}





<style>
  .rp-recommend-flags {
    width: 100%;
    padding: 34px 0 18px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  }

  .rp-recommend-flags * {
    box-sizing: border-box;
  }

  .rp-recommend-flags__inner {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 14px;
  }

  .rp-recommend-flags__head {
    margin-bottom: 18px;
  }

  .rp-recommend-flags__title {
    margin: 0 0 6px;
    font-size: 26px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #111827;
  }

  .rp-recommend-flags__sub {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #6b7280;
  }

  .rp-recommend-flags__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .rp-recommend-flags__card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 92px;
    padding: 18px 16px;
    border-radius: 18px;
    background: #f5f5f6;
    border: 1px solid rgba(15, 23, 42, 0.07);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  }

  .rp-recommend-flags__card:hover {
    background: #fafafa;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  }

  .rp-recommend-flags__card::after {
    content: "";
    position: absolute;
    right: -18px;
    bottom: -18px;
    width: 120px;
    height: 42px;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.03);
    transform: rotate(-8deg);
    pointer-events: none;
  }

  .rp-recommend-flags__flag {
    position: relative;
    z-index: 1;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 999px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.06);
  }

  .rp-recommend-flags__flag img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  /* UAE 单独修正，露出左边红条 */
  .rp-recommend-flags__flag--uae img {
    width: 145%;
    max-width: none;
    transform: translateX(18%);
  }

  .rp-recommend-flags__body {
    position: relative;
    z-index: 1;
    min-width: 0;
    flex: 1 1 auto;
  }

  .rp-recommend-flags__name {
    margin: 0 0 4px;
    font-size: 16px;
    line-height: 1.22;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .rp-recommend-flags__price {
    margin: 0;
    font-size: 13px;
    line-height: 1.35;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .rp-recommend-flags__arrow {
    position: relative;
    z-index: 1;
    width: 18px;
    height: 18px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.18s ease, color 0.18s ease;
  }

  .rp-recommend-flags__arrow svg {
    width: 18px;
    height: 18px;
    display: block;
  }

  .rp-recommend-flags__card:hover .rp-recommend-flags__arrow {
    transform: translateX(3px);
    color: #4b5563;
  }

  @media (max-width: 1080px) {
    .rp-recommend-flags__grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

  @media (max-width: 768px) {
    .rp-recommend-flags {
      padding: 26px 0 10px;
    }

    .rp-recommend-flags__inner {
      padding: 0 12px;
    }

    .rp-recommend-flags__title {
      font-size: 22px;
    }

    .rp-recommend-flags__sub {
      font-size: 14px;
    }

    .rp-recommend-flags__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .rp-recommend-flags__card {
      min-height: 82px;
      padding: 14px 12px;
      gap: 12px;
      border-radius: 16px;
    }

    .rp-recommend-flags__flag {
      width: 36px;
      height: 36px;
      flex-basis: 36px;
    }

    .rp-recommend-flags__name {
      font-size: 15px;
    }

    .rp-recommend-flags__price {
      font-size: 12px;
    }

    .rp-recommend-flags__arrow {
      width: 16px;
      height: 16px;
    }

    .rp-recommend-flags__arrow svg {
      width: 16px;
      height: 16px;
    }
  }
</style>
