/* =============================================================================
   eSIM storefront styles (Trello #9669)
   Legacy-safe CSS (no CSS variables, no vh/vw). Mobile-first.
   ========================================================================== */

/* Content wrapper. Used together with Bootstrap's .container, which supplies
   the responsive max-width and horizontal padding. We only add vertical
   rhythm + colour here and intentionally do NOT set font-family so the page
   inherits 'Quicksand' from the global body rule (dist/css/main.css), matching
   the topup / gift-card verticals. #9669 */
.esim-wrap {
    padding-top: 24px;
    padding-bottom: 48px;
    color: #1f3554;
}

/* Filters ------------------------------------------------------------------*/
.esim-filters { margin-bottom: 20px; }
.esim-search {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    font-size: 16px;
    border: 1px solid #d4dae1;
    border-radius: 10px;
    margin-bottom: 12px;
}
.esim-filter-chips { text-align: center; }
.esim-chip {
    display: inline-block;
    border: 1px solid #c5ccd4;
    background: #ffffff;
    color: #41566b;
    padding: 8px 16px;
    margin: 4px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
}
.esim-chip-active {
    background: #197aa6;
    border-color: #197aa6;
    color: #ffffff;
}
.esim-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 16px;
    gap: 16px;
}
.esim-card {
    box-sizing: border-box;
    padding: 16px;
    border: 1px solid #e4e9ef;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 20px 34px rgba(17, 59, 104, 0.08);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.esim-card:hover {
    box-shadow: 0 26px 40px rgba(17, 59, 104, 0.14);
    transform: translateY(-4px);
}
.esim-card-head { margin-bottom: 12px; }
/* Flag + title row */
.esim-card-flagrow { display: flex; align-items: center; margin-top: 4px; }
.esim-card-flagrow .flag-icon {
    width: 1.7em;
    height: 1.25em;
    border-radius: 3px;
    margin-right: 8px;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.06);
    flex: 0 0 auto;
}
.esim-card-globe { font-size: 1.25em; margin-right: 8px; line-height: 1; }
.esim-card-cov {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
    color: #ffffff;
}
.esim-cov-country  { background: #2e7d32; }
.esim-cov-regional { background: #1565c0; }
.esim-cov-global   { background: #6a1b9a; }
.esim-card-title {
    font-size: 18px;
    margin: 4px 0 0;
    font-weight: 600;
}
.esim-card-specs {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
}
.esim-card-specs li {
    display: block;
    border-bottom: 1px solid #f0f3f6;
    padding: 6px 0;
    font-size: 14px;
}
.esim-card-specs li span { color: #7a8896; }
.esim-card-specs li b { float: right; color: #1f2d3d; }
.esim-card-foot {
    overflow: hidden;
    margin-top: 8px;
}
.esim-card-price { float: left; }
.esim-price-from {
    display: block;
    font-size: 11px;
    color: #7a8896;
    text-transform: uppercase;
}
.esim-price-amount {
    font-size: 22px;
    font-weight: 700;
    color: #197aa6;
}
.esim-buy-btn {
    float: right;
    display: inline-block;
    background: #197aa6;
    border: 2px solid #197aa6;
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    margin-top: 4px;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.15s ease;
}
.esim-buy-btn:hover,
.esim-buy-btn:focus,
.esim-buy-btn:active {
    background: #ffffff;
    color: #197aa6 !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(25, 122, 166, 0.25);
}
/* Shared loading-spinner affordance (class "loading" toggled on click). */
.esim-buy-btn.loading {
    pointer-events: none;
    opacity: 0.85;
    position: relative;
    color: transparent !important;
}
.esim-buy-btn.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-top-color: #ffffff;
    border-radius: 50%;
    -webkit-animation: esim-spin 0.6s linear infinite;
    animation: esim-spin 0.6s linear infinite;
}
@-webkit-keyframes esim-spin { to { -webkit-transform: rotate(360deg); } }
@keyframes esim-spin { to { transform: rotate(360deg); } }
.esim-empty {
    text-align: center;
    color: #7a8896;
    padding: 40px 20px;
    font-size: 16px;
}

/* Compatibility checker ----------------------------------------------------*/
.esim-compat {
    margin: 28px 0;
    padding: 22px;
    background: #f5f8fb;
    border-radius: 12px;
}
.esim-compat h2 { font-size: 20px; margin: 0 0 6px; }
.esim-compat p { color: #51606f; margin: 0 0 14px; }
.esim-compat-box { overflow: hidden; }
.esim-compat-input {
    width: 60%;
    box-sizing: border-box;
    padding: 11px 13px;
    font-size: 15px;
    border: 1px solid #d4dae1;
    border-radius: 8px;
    float: left;
}
.esim-compat-btn {
    float: right;
    width: 36%;
    padding: 11px 10px;
    font-size: 15px;
    background: #197aa6;
    color: #ffffff;
    border: 2px solid #197aa6;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}
.esim-compat-btn:hover {
    background: #ffffff;
    color: #197aa6;
}
.esim-compat-result {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 15px;
}
.esim-compat-ok { background: #e6f4ea; color: #1e6b32; }
.esim-compat-maybe { background: #fff4e0; color: #8a5a00; }

/* Guides -------------------------------------------------------------------*/
.esim-guide { margin: 40px 0; }
.esim-guide h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 22px;
    text-align: center;
    color: #1f3554;
}
.esim-guide-cols { margin: 0 -8px; }
.esim-guide-col {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    box-sizing: border-box;
    padding: 16px;
    border: 1px solid #e4e9ef;
    border-radius: 10px;
    margin-bottom: 14px;
}
.esim-guide-col h3 { margin: 0 0 10px; font-size: 16px; color: #197aa6; }
.esim-guide-col ol { margin: 0; padding-left: 18px; }
.esim-guide-col li { margin-bottom: 8px; font-size: 14px; color: #41566b; }

/* Tablet / desktop column counts ------------------------------------------*/
@media (min-width: 560px) {
    .esim-grid { grid-template-columns: repeat(2, 1fr); }
    .esim-guide-col { width: 48%; margin: 0 1% 14px; }
}
@media (min-width: 900px) {
    /* Results span 3 columns on desktop. #9669 */
    .esim-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =============================================================================
   Sticky search/filter toolbar (#9669)
   Lives above the catalog; sticks to the top while scrolling results so the
   destination search is never lost from view.
   ========================================================================== */
.esim-toolbar {
    /* clear+flow-root keep the toolbar clear of the hero's (Bootstrap grid)
       float bleed so its content isn't pushed down. #9669
       Stickiness is handled by JS (esim_home.php): the shared
       <main class="page-holder"> uses overflow:hidden which disables native
       position:sticky, so we pin with position:fixed on scroll instead. */
    clear: both;
    display: flow-root;
    position: relative;
    z-index: 30;
    background: #ffffff;
    border: 1px solid #e4e9ef;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(28, 116, 160, 0.10);
    padding: 14px 16px;
    margin: 0 0 22px;
    overflow: visible;
}
/* Pinned state (added by JS once the toolbar reaches the top of the viewport).
   Width/left are set inline by JS to match the toolbar's natural box. */
.esim-toolbar.esim-toolbar--fixed {
    position: fixed;
    top: 0;
    margin: 0;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 6px 20px rgba(28, 116, 160, 0.22);
}
/* Legacy-safe block layout (no flexbox): search full-width on top, then a row
   with filter chips on the left and the currency toggle floated right. */
.esim-toolbar-row { display: block; }
.esim-toolbar-row:after { content: ""; display: table; clear: both; }
/* Override the global full-width .esim-search inside the toolbar. */
.esim-toolbar .esim-search {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin: 0 0 12px;
}
.esim-toolbar .esim-filter-chips {
    display: inline-block;
    vertical-align: middle;
    text-align: left;
}
.esim-toolbar .esim-cur-toggle {
    float: right;
    margin-top: 2px;
}
@media (max-width: 560px) {
    .esim-toolbar .esim-cur-toggle { float: none; display: inline-flex; margin-top: 8px; }
}

/* Currency EUR/USD toggle (mirrors topup .currency-toggle). */
.esim-cur-toggle {
    display: inline-flex;
    align-items: center;
    border: 1px solid #c5ccd4;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    font-weight: 600;
    font-size: 14px;
    /* As a flex item (plans-head / toolbar) the overflow:hidden above would
       otherwise let it shrink to 0 width; pin it to its content size. */
    flex: 0 0 auto;
    white-space: nowrap;
    vertical-align: middle;
}
.esim-cur-opt { padding: 7px 14px; color: #41566b; background: #ffffff; white-space: nowrap; }
.esim-cur-opt.active { background: #197aa6; color: #ffffff; }


/* =============================================================================
   Checkout landing (#9669)
   ========================================================================== */
.esim-checkout { max-width: 560px; margin: 0 auto; }
.esim-co-title { font-size: 22px; margin: 0 0 18px; }
.esim-co-section-title { font-size: 16px; margin: 0 0 12px; color: #1f2d3d; }

.esim-co-summary,
.esim-co-block {
    border: 1px solid #e3e8ee;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    background: #ffffff;
}
.esim-co-product-name { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.esim-co-specs { list-style: none; margin: 0; padding: 0; }
.esim-co-specs li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    border-bottom: 1px solid #f1f4f7;
}
.esim-co-specs li span { color: #51606f; }
.esim-co-specs li b { color: #1f2d3d; }
.esim-co-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    font-size: 18px;
}
.esim-co-total b { color: #197aa6; font-size: 22px; }
.esim-co-vat { margin-top: 4px; font-size: 12px; color: #8a97a4; }

.esim-co-label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.esim-co-input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    font-size: 15px;
    border: 1px solid #c9d2db;
    border-radius: 8px;
}
.esim-co-input-error { border-color: #d23f3f; background: #fdf2f2; }
.esim-co-hint { margin: 8px 0 0; font-size: 12px; color: #8a97a4; }

.esim-co-methods { margin: 0; }
.esim-co-method {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    margin-bottom: 8px;
    border: 1px solid #c9d2db;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
}
.esim-co-method input { margin-right: 10px; }

.esim-co-pay-btn {
    display: block;
    width: 100%;
    padding: 15px 18px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    background: #197aa6;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
}
.esim-co-secure { text-align: center; margin: 12px 0 0; font-size: 12px; color: #8a97a4; }

/* =============================================================================
   Checkout replica of the topup look-and-feel (#9669)
   Reuses the topup `unlock-box` summary shell + PaymentButtons grid + the
   social-login embed. The .checkout-contact-actions grey enclosure + pill
   button styles are copied verbatim from the topup checkout below.
   ========================================================================== */
/* Compact spacing below the logo header; clearance lives in .esim-co-hero-spacer. */
.esim-co-hero-spacer.hero {
    padding: 88px 0 12px 0;
}
@media (max-width: 767px) {
    .esim-co-hero-spacer.hero {
        padding: 72px 0 8px 0;
    }
}
.esim-co-replica { padding-top: 16px; padding-bottom: 56px; color: #1f3554; }
@media (max-width: 767px) {
    .esim-co-replica { padding-top: 12px; }
}

/* Match the topup/gift-card checkout width: a full-width column compacted on
   desktop via the shared .px-md-16 responsive padding (same mechanism the topup
   checkout uses on its #stepsRows step-box). We only neutralise any stray
   max-width here so .px-md-16 alone drives the column width. #9669 */
.esim-co-replica .esim-co-main,
.esim-co-replica .esim-co-pay-wide { max-width: 100%; }

/* Email step label — smaller than default .h4.tu_correo_label from main.css */
.esim-co-replica #dataInfo .esim-co-email-label,
.esim-co-replica #dataInfo .tu_correo_label {
    display: block;
    width: 100%;
    float: none;
    margin: 0 0 8px;
    padding: 0;
    font-size: 11px;
    font-weight: 600;
    color: #197aa6;
    text-align: left;
    line-height: 1.25;
}
.esim-co-replica #dataInfo .h4.tu_correo_label {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.25;
}

/* Logged-in checkout: static email row (no editable field), topup parity. */
.esim-co-logged-email-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 12px;
    max-width: 520px;
    margin: 0 auto;
    padding: 0 4px;
    font-size: 14px;
    line-height: 1.35;
    color: #1f3554;
}
.esim-co-logged-label {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-weight: 600;
    color: #197aa6;
    text-transform: lowercase;
}
.esim-co-logged-val {
    font-weight: 700;
    color: #197aa6;
    text-align: right;
    word-break: break-word;
}
.esim-co-continue-logged {
    margin-top: 18px;
}

/* Clear floated unlock-box without clipping the card shadow (no overflow:hidden). */
.esim-co-replica #summary::after { content: ""; display: table; clear: both; }
.esim-co-replica #summary .unlock-box { overflow: visible; }

/* Slightly smaller summary text than the default unlock-box sizing. */
.esim-co-replica .h2-terminal { font-size: 16px; font-weight: 700; margin: 0; }
.esim-co-replica .checkout_price_span { font-size: 13px; margin: 0; color: #51606f; }
.esim-co-replica .info-p.precio { font-size: 13px; margin: 0; font-weight: 600; }
.esim-co-replica .total-unlock span { font-size: 14px; }
.esim-co-replica .summary_total_checkout { font-size: 18px; font-weight: 700; }

.esim-co-replica #dataInfo #e_email .form-control.esim-co-input-error,
.esim-co-replica #dataInfo #email.esim-co-input-error {
    border-color: #d23f3f;
    background: #fdf2f2;
}
.esim-co-error { color: #d23f3f; font-size: 13px; margin: 8px 0 0; text-align: center; }
.checkout-login-link { font-size: 13px; color: #1f6fb2; text-decoration: none; font-weight: 600; }

/* Standalone "Continuar" button — pill, ABOVE and clearly separated from the
   grey social-login enclosure. Top margin matches the gap below (22px btn +
   6px before .checkout-contact-actions) so spacing is even vs email + OR. */
.esim-co-continue {
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 520px;
    min-height: 56px;
    margin: 28px auto 22px;
    padding: 14px 22px;
    background: #197aa6;
    color: #ffffff;
    border: 0;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(25, 122, 166, 0.28);
    transition: background 0.15s ease, box-shadow 0.15s ease;
}
.esim-co-continue:hover,
.esim-co-continue:focus { background: #14688f; box-shadow: 0 8px 20px rgba(25, 122, 166, 0.35); }
.esim-co-continue .fa { font-size: 15px; }

/* The grey enclosure now holds only the social cluster; give it a clear gap
   from the standalone Continuar button above it. */
.esim-co-replica #login-social-other #e_email {
    margin-bottom: 10px;
}
.esim-co-replica #continue_but_container .esim-co-continue {
    margin-top: 38px;
}
/* The grey enclosure now holds only the social cluster; give it a clear gap
   from the standalone Continuar button above it. */
.esim-co-replica .checkout-contact-actions { margin-top: 6px; }

/* Wider payment enclosure — 2-col grid with proper gutters (topup parity). */
.esim-co-replica .esim-co-pay-grid > [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
}
.esim-co-replica .esim-co-pay-grid .btn,
.esim-co-replica .esim-co-pay-grid .btn-block {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
.esim-co-pay-wide { max-width: 100%; margin: 0 auto; }

/* ===========================================================================
   Topup contact-step CSS, reused verbatim for the eSIM checkout replica (#9669)
   Source: templates_flat_ui_mobile/recargas_checkout_elements.php (contact step)
   ========================================================================== */
      /* hotfix 9480 — Egypt checkout notice (mockup: pale blue info) */
      .topup-egypt-notice-checkout {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 11px 13px;
        border: 1px solid #b8d4ee;
        border-radius: 8px;
        background-color: #eef6fc;
        font-size: 13px;
        line-height: 1.45;
        color: #2a6d9e;
      }
      .topup-egypt-notice-checkout__icon {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        margin-top: 2px;
        margin-right: 10px;
        font-size: 16px;
      }
      .topup-egypt-notice-checkout__text {
        -ms-flex: 1;
        flex: 1;
      }

      /* Drop the 500px min-height that was creating a huge empty space
         between the CTA and the social cluster. */
      #continue_but_container.min-h-500 { min-height: 0 !important; }
      /* Tighten the social separator that ships inside the AJAX-loaded
         social cluster — the default 20px+20px margin made the gap too
         large after the round-8 social-cluster revert. */
      #continue_but_container .social_separator { margin: 8px 0 12px 0 !important; }
      /* Pull the social cluster up against the implicit-terms text
         (or the CTA when terms aren't shown). */
      #continue_but_container #social_container_login_alta { margin-top: 6px; }
      /* Remove the legacy "<br><br>" gap below the back-to-login link
         so the SSL footer sits right under it instead of floating
         halfway down the page. */
      #link_back_to_login_checkout > br { display: none; }
      .checkout-contact-ssl-footer {
        text-align: center;
        font-size: 12px;
        color: #6c7a89;
        line-height: 1.3;
        padding: 10px 0 4px;
      }
      .checkout-contact-ssl-footer img { vertical-align: middle; margin-right: 6px; }

      /* ============================================================
         Round 12 — grouped contact-step actions card
         (round 12.1 — desktop fix + uniform button sizing)
         ============================================================ */
      /* The grey-bg, bordered, rounded "actions" card that wraps the
         email submit button + AJAX-loaded social cluster.

         The card is a flex column with `align-items: stretch` so every
         direct child (email button, separator, social cluster) renders
         at full inner width on every viewport. We constrain the card
         itself with max-width 520px so long ES OAuth labels fit on one
         line, then center it with auto margins. */
      .checkout-contact-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        background: #f6f8fb;
        border: 1px solid #e2e7ee;
        border-radius: 18px;
        padding: 20px 18px 22px;
        /* Wide enough for ES “Continuar con Facebook” on one line with icon + padding */
        width: 100%;
        max-width: 520px;
        margin: 4px auto 12px;
        text-align: center;
        box-sizing: border-box;
      }
      /* Round 12.1 — neutralise the AJAX-loaded login.html fragment.
         `#social_container_login_alta` gets the entire `#homer`
         block stamped into it, which on desktop introduces a nested
         Bootstrap .container/.row/.col-12 with its own widths,
         margins and 15px gutters. That's what was making the social
         buttons collapse to ~250px on desktop and overflow with
         "Continu..." ellipsis. Force every wrapper inside the card
         to take the parent's full width and drop their gutters.
         Round 12.2 — dropped `max-width: 100%` for `max-width: none`
         so a Bootstrap-defined `max-width` on `.container` (540 /
         720 / 960 / 1140 at the responsive breakpoints) cannot win
         again, and tightened the override to also cover the row's
         negative gutter margins. */
      .checkout-contact-actions #social_container_login_alta {
        align-self: stretch !important;
      }
      .checkout-contact-actions #social_container_login_alta,
      .checkout-contact-actions #social_container_login_alta .container,
      .checkout-contact-actions #social_container_login_alta .container-fluid,
      .checkout-contact-actions #social_container_login_alta .row,
      .checkout-contact-actions #social_container_login_alta .col,
      .checkout-contact-actions #social_container_login_alta [class*="col-"],
      .checkout-contact-actions #social_container_login_alta .social_buttons_group,
      .checkout-contact-actions #social_container_login_alta #social_login_form {
        width: 100% !important;
        max-width: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        flex: 0 0 100% !important;
        box-sizing: border-box !important;
      }
      /* Round 12.2 — stack the Apple/Google/Facebook buttons as a
         flex column with explicit gap so they breathe a bit more.
         The round-18 main.css block already does this but targets
         `.social_login_form` (a CLASS that doesn't exist) instead
         of `#social_login_form` (the actual ID), so it never
         matched. Re-do it here, scoped to the contact card. */
      .checkout-contact-actions #social_login_form {
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important;
      }
      /* Strip the legacy .btn-block bottom margin so spacing comes
         exclusively from the gap above (otherwise the buttons get
         double-spaced and the card grows unevenly). */
      .checkout-contact-actions #social_login_form .btn,
      .checkout-contact-actions #social_login_form .btn-block,
      .checkout-contact-actions #social_login_form .btn-social {
        margin-bottom: 0 !important;
      }
      /* Round 12.2 — tighten the OR separator inside the card. The
         legacy / round-18 `.social_separator` ships
         `margin: 24px 0`, which leaves a ~60px void between the
         email button and the social trio. Bring it down to a
         symmetric 6px so the OR sits visually centered between the
         two groups, and matched the parent flex `gap: 10px`. */
      .checkout-contact-actions .social_separator,
      .checkout-contact-actions #social_or {
        margin: 6px 0 !important;
      }
      /* Round 12.2 — `#social_error` is an empty placeholder div that
         only fills with text when an OAuth call fails. Collapse its
         empty box so it doesn't add a spurious blank line between
         the OR rule and the social trio. */
      .checkout-contact-actions #social_error:empty {
        display: none !important;
      }
      /* Round 12 — terms checkbox is no longer shown to the user; the
         consent string moves to the SSL footer disclaimer below. The
         input element STAYS in the DOM (legal compliance, form-submit
         behaviour) but is rendered hidden. !important to defeat any
         JS that re-shows #cond on email-validate. */
      .checkout-contact-actions #cond,
      #continue_but_container #cond {
        display: none !important;
      }
      /* Round 12.1 — uniform pill-card styling for EVERY button inside
         the actions card (email + Apple + Google + Facebook). The
         legacy `.btn-social` rule absolute-positions an icon column
         on the left and forces text-align:left + padding-left:74px,
         which makes the icon and the label drift to the left edge
         on desktop. Here we re-cast every button as a flex row that
         centers the icon and label as a single inline cluster, so
         the four buttons line up perfectly regardless of label
         length, locale or viewport width. */
      .checkout-contact-actions .btn,
      .checkout-contact-actions .btn-block,
      .checkout-contact-actions .btn-social,
      .checkout-contact-actions .btn.btn-social,
      .checkout-contact-actions .btn.btn-social.btn-apple,
      .checkout-contact-actions .btn.btn-social.btn-google,
      .checkout-contact-actions .btn.btn-social.btn-facebook,
      .checkout-contact-actions .btn.btn-social.btn-email {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: 100% !important;
        min-height: 52px !important;
        margin: 0 !important;
        padding: 12px 16px !important;
        text-align: center !important;
        border-radius: 999px !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        box-sizing: border-box;
        font-weight: 600 !important;
        font-size: 15px;
        line-height: 1.2;
      }
      /* Round 12.1 — neutralise the absolute-positioned icon column
         that the legacy `.btn-social > :first-child` rule installs.
         With flex layout the icon becomes a normal flex child and
         sits next to the label with the 12px gap defined above. */
      .checkout-contact-actions .btn-social > :first-child,
      .checkout-contact-actions .btn.btn-social > :first-child {
        position: static !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        width: auto !important;
        height: auto !important;
        line-height: 1 !important;
        border-right: none !important;
        flex: 0 0 auto;
        font-size: 1.25em !important;
      }
      /* Email submit button — white card with brand-blue envelope icon,
         mirroring the Apple / Google / Facebook social buttons. Layout
         (flex centering, radius, padding) inherits from the block
         above; this rule only paints colours / borders / hover. */
      .checkout-contact-actions .btn.btn-social.btn-email {
        background-color: #ffffff !important;
        color: #1f2a37 !important;
        border: 1px solid #e2e7ee !important;
        box-shadow: 0 1px 0 rgba(20, 30, 50, 0.04);
        transition: background-color 0.15s ease-in-out,
                    border-color 0.15s ease-in-out,
                    box-shadow 0.15s ease-in-out;
      }
      .checkout-contact-actions .btn.btn-social.btn-email:hover,
      .checkout-contact-actions .btn.btn-social.btn-email:focus {
        background-color: #f6f8fb !important;
        border-color: #94a3b8 !important;
        box-shadow: 0 2px 4px rgba(20, 30, 50, 0.06);
        color: #1f2a37 !important;
      }
      .checkout-contact-actions .btn.btn-social.btn-email > :first-child {
        color: #197aa6 !important;
      }
      /* "¿Ya tienes cuenta? Inicia sesión." — round 12 makes this
         link prominent: brand-blue, semi-bold, 14px, with hover
         underline. Used to be 12px black low-contrast filler. */
      #link_back_to_login_checkout {
        margin: 6px auto 4px;
      }
      #link_back_to_login_checkout a.checkout-login-link {
        color: #197aa6 !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        text-decoration: none;
        line-height: 1.4;
      }
      #link_back_to_login_checkout a.checkout-login-link:hover,
      #link_back_to_login_checkout a.checkout-login-link:focus {
        color: #14638a !important;
        text-decoration: underline;
      }
      /* Round 12 — terms disclaimer rides under the SSL trust lockup
         in tiny grey text. Replaces the old visible terms checkbox. */
      .checkout-terms-disclaimer {
        margin-top: 4px;
        font-size: 11px;
        color: #94a3b8;
        line-height: 1.35;
      }
      /* ------------------------------------------------------------
         Round 12.2 — PRO + only-credits checkout variant
         ------------------------------------------------------------
         When the active checkout is fully covered by PRO credits
         (`bot_gratis` is the single payment option) we collapse the
         visual real estate dedicated to the "create-account / social
         login" cluster: the user is already authenticated and the
         CTA is now a true single-click finalisation. Hide the social
         block, the OR separator, the "¿Ya tienes cuenta?" link, and
         tighten the vertical breathing above the actions card. The
         CTA label itself is swapped server-side to "Proceed to
         checkout" via $is_credits_only_checkout. */
      #continue_but_container.is-credits-only-checkout {
        margin-top: 0 !important;
      }
      .is-credits-only-checkout .checkout-contact-actions {
        max-width: 520px;
        margin-top: 0 !important;
        padding-top: 14px;
        padding-bottom: 14px;
      }
      .is-credits-only-checkout #social_container_login_alta,
      .is-credits-only-checkout #link_back_to_login_checkout,
      .is-credits-only-checkout .checkout-contact-actions #cond {
        display: none !important;
      }
      /* Tighten the form ABOVE the actions card too: the legacy
         `dataInfo` block uses Bootstrap `my-5` (3rem top/bottom) by
         default which adds ~48px of dead grey above the credits-only
         CTA. Drop to ~12px in that case. */
      .is-credits-only-checkout-page #dataInfo.my-5 {
        margin-top: 12px !important;
        margin-bottom: 12px !important;
      }
      .is-credits-only-checkout-page #pay_button_show_mob.mb-5,
      .is-credits-only-checkout-page #pay_button_show_mob {
        margin-top: 0 !important;
        margin-bottom: 16px !important;
      }
      /* ============================================================
         Round 12.3 — equalise social-button width with the email
         button + reduce hero padding
         ============================================================
         (1) The legacy `main.css` line 7190 ships
             `#social_container_login_alta { max-width: 62%; margin:
             0 auto }` UNCONDITIONALLY on every viewport over 767px.
             That single rule constrains the entire social cluster
             (Apple/Google/Facebook + the OR separator) to 62% of
             its parent on desktop, which is what makes the social
             trio render visibly narrower than the email button
             above. The round-12.1 / 12.2 overrides above already
             carry higher specificity (.checkout-contact-actions
             #social_container_login_alta = 0,1,1) than the legacy
             rule (#social_container_login_alta = 0,1,0), so they
             SHOULD win in the cascade — but the production build
             keeps showing the narrowed cluster, so we double-down
             with an ID-anchored chain
             (#continue_but_container .checkout-contact-actions
             #social_container_login_alta = 0,2,1 = 210) that is
             unambiguously stronger than both the legacy rule AND
             the existing `#continue_but_container
             #social_container_login_alta { margin-top: 6px }`
             rule earlier in this same file (0,2,0 = 200).

         (2) Same chain re-asserts width:100% / max-width:none /
             zero margin & padding-x on every wrapper inside the
             AJAX-loaded `#homer` fragment so the social buttons
             reach the same edges as the email button. */
      #continue_but_container .checkout-contact-actions #social_container_login_alta {
        max-width: none !important;
        width: 100% !important;
        margin: 0 !important;
      }
      #continue_but_container .checkout-contact-actions #social_container_login_alta #homer,
      #continue_but_container .checkout-contact-actions #social_container_login_alta .container,
      #continue_but_container .checkout-contact-actions #social_container_login_alta .container-fluid,
      #continue_but_container .checkout-contact-actions #social_container_login_alta .row,
      #continue_but_container .checkout-contact-actions #social_container_login_alta .col,
      #continue_but_container .checkout-contact-actions #social_container_login_alta [class*="col-"],
      #continue_but_container .checkout-contact-actions #social_container_login_alta .social_buttons_group,
      #continue_but_container .checkout-contact-actions #social_container_login_alta #social_login_form {
        max-width: none !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        flex: 0 0 100% !important;
        box-sizing: border-box !important;
      }
      /* Round 12.3.1 — the round-12.3 zeroing of `#topAndOther.hero`
         padding was reverted. Killing the 135px top padding entirely
         pulled the order summary card up too tight against the page
         header (the empty `.hero` spacer was originally there to
         overlap the fixed-header gradient on landing pages, and
         checkout was inheriting that breathing room as a side
         effect). Leaving the legacy `.hero { padding: 135px 0 80px
         0 }` from `main.css` line 1167 in place. If we want to
         tighten the hero on checkout in the future, do it as a
         smaller delta (e.g. cut to 80/40 instead of 0/0) and
         re-test with both desktop and mobile viewports. */
      /* Round 12.4 — (Task 1) desktop override: ensure social button
         container reaches full width even after main.css ships
         `#social_container_login_alta { max-width:62% }` inside a
         @media (min-width:768px) block. This media-wrapped rule has
         the same specificity as the legacy one but appears later, so
         it wins cleanly. */
      @media (min-width: 768px) {
        #continue_but_container .checkout-contact-actions #social_container_login_alta,
        #continue_but_container .checkout-contact-actions #social_container_login_alta #homer,
        #continue_but_container .checkout-contact-actions #social_container_login_alta .container,
        #continue_but_container .checkout-contact-actions #social_container_login_alta .container-fluid,
        #continue_but_container .checkout-contact-actions #social_container_login_alta .row,
        #continue_but_container .checkout-contact-actions #social_container_login_alta .col,
        #continue_but_container .checkout-contact-actions #social_container_login_alta [class*="col-"],
        #continue_but_container .checkout-contact-actions #social_container_login_alta .social_buttons_group,
        #continue_but_container .checkout-contact-actions #social_container_login_alta #social_login_form {
          max-width: none !important;
          width: 100% !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
          padding-left: 0 !important;
          padding-right: 0 !important;
          flex: 0 0 100% !important;
          box-sizing: border-box !important;
        }
      }
      /* All viewports: OAuth pills — one line, no ellipsis clip */
      .checkout-contact-actions #social_login_form .btn.btn-social.btn-apple,
      .checkout-contact-actions #social_login_form .btn.btn-social.btn-google,
      .checkout-contact-actions #social_login_form .btn.btn-social.btn-facebook {
        white-space: nowrap !important;
        overflow: visible !important;
        text-overflow: clip !important;
      }
      /* Round 12.4 — (Task 2) give breathing room below the "Al
         continuar, aceptas..." disclaimer. */
      .checkout-terms-disclaimer {
        padding-bottom: 16px !important;
      }
      /* Round 12.4 — (Task 3) icon vertical alignment: pin icon font
         size to 22px so it doesn't inherit from the button's 15px
         and cause glyphs to float to the top of the button. */
      .checkout-contact-actions .btn-social > :first-child,
      .checkout-contact-actions .btn.btn-social > :first-child {
        font-size: 22px !important;
        height: 1.25em !important;
        margin-top: 0 !important;
      }
      /* Apple / Google / Facebook only — FA glyphs sit high inside a loose
         1.25em box on mobile; pin a 26px flex box + :before line-height so
         icons line up with “Continue with …”. Email keeps the rule above. */
      .checkout-contact-actions .btn.btn-social.btn-apple > :first-child,
      .checkout-contact-actions .btn.btn-social.btn-google > :first-child,
      .checkout-contact-actions .btn.btn-social.btn-facebook > :first-child {
        width: 26px !important;
        min-width: 26px !important;
        height: 26px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        line-height: 1 !important;
      }
      .checkout-contact-actions .btn.btn-social.btn-apple > :first-child:before,
      .checkout-contact-actions .btn.btn-social.btn-google > :first-child:before,
      .checkout-contact-actions .btn.btn-social.btn-facebook > :first-child:before {
        line-height: 1 !important;
      }

/* =============================================================================
   eSIM storefront REDESIGN (Trello #9754) — dark navy hero + destination grid,
   homogenized with the doctorSIM Gift Cards / topup look & feel.
   Legacy-safe CSS (no CSS variables, no vh/vw). #9754
   ========================================================================== */

/* ---- Hero (dark navy corporate) ---------------------------------------- */
.esim-hero {
    background: #0e2a4e;
    background: linear-gradient(135deg, #0e2a4e 0%, #14457c 100%);
    color: #ffffff;
    padding: 48px 0 44px;
    margin-top: 0;
}
.esim-hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
    font-weight: 600;
    color: #7fc4ff;
    margin: 0 0 8px;
}
.esim-hero-title {
    font-weight: 700;
    font-size: 38px;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 12px;
}
.esim-hero-subtitle {
    font-size: 18px;
    color: #cfe0f2;
    margin: 0 0 18px;
    max-width: 32rem;
}
.esim-hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
}
.esim-hero-bullets li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 8px;
    color: #eaf2fb;
    font-weight: 500;
}
.esim-hero-bullets li:before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    font-size: 12px;
    border-radius: 50%;
    background: #29b57c;
    color: #fff;
}

/* Hero search card (white, sits in the right column) */
.esim-hero-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 18px 40px rgba(6, 26, 50, 0.35);
}
.esim-hero-card-label {
    display: block;
    font-weight: 600;
    color: #0e2a4e;
    margin: 0 0 10px;
    font-size: 16px;
}
.esim-hero-form {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #d4dae1;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}
.esim-hero-pin {
    padding: 0 6px 0 12px;
    color: #197aa6;
    font-size: 18px;
}
.esim-hero-search {
    flex: 1 1 auto;
    border: 0;
    outline: none;
    padding: 13px 8px;
    font-size: 16px;
    color: #1f3554;
    min-width: 0;
}
.esim-hero-btn {
    border: 0;
    background: #197aa6;
    color: #fff;
    font-weight: 700;
    padding: 13px 20px;
    cursor: pointer;
    white-space: nowrap;
}
.esim-hero-btn:hover { background: #1367b3; }

/* ---- Catalog header + pill selector ------------------------------------ */
.esim-catalog-head {
    text-align: center;
    margin: 0;
    height: 166px;
    padding-top: 33px;
    padding-bottom: 33px;
}
/* Currency toggle row above the destinations grid (top-right). #9754b
   Block + text-align:right (not flex) so the inline-flex toggle keeps its
   content width — a flex item with overflow:hidden collapses to 0. */
.esim-dest-toolbar { text-align: right; margin: 0 0 12px; }
.esim-catalog-title {
    font-weight: 700;
    font-size: 26px;
    color: #0e2a4e;
    margin: 0 0 10px;
}
.esim-pills {
    display: inline-flex;
    align-items: center;
    border: 1px solid #c5ccd4;
    border-radius: 20px;
    overflow: hidden;
    -webkit-user-select: none;
    user-select: none;
    font-weight: 600;
    font-size: 14px;
    flex: 0 0 auto;
    white-space: nowrap;
    vertical-align: middle;
}
.esim-pill {
    border: 0;
    background: #ffffff;
    color: #41566b;
    font-weight: 600;
    font-size: 14px;
    padding: 7px 14px;
    border-radius: 0;
    cursor: pointer;
    white-space: nowrap;
}
.esim-pill-active { background: #197aa6; color: #ffffff; }

/* ---- Destination grid (equal-width cards per breakpoint, #9754 A5) ------ */
.esim-dest-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 8px 0 22px;
    width: 100%;
    box-sizing: border-box;
}
.esim-dest-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 16px;
    min-height: 72px;
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #e6ebf1;
    border-radius: 20px;
    text-decoration: none;
    color: #1f3554;
    box-shadow: 0 20px 34px rgba(17, 59, 104, 0.08);
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.esim-dest-card:hover {
    border-color: #cfe0f2;
    box-shadow: 0 26px 40px rgba(17, 59, 104, 0.16);
    transform: translateY(-4px);
    text-decoration: none;
    color: #1367b3;
}
.esim-dest-card:hover .esim-dest-name { color: #1367b3; }
.esim-dest-flag .flag-icon {
    width: 46px;
    height: 34px;
    border-radius: 6px;
    background-size: cover;
    box-shadow: 0 1px 3px rgba(0,0,0,0.18);
}
.esim-dest-globe { font-size: 30px; line-height: 1; }
.esim-dest-info { display: flex; flex-direction: column; flex: 1 1 auto; min-width: 0; }
.esim-dest-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #8aa0b6;
}
.esim-dest-name {
    font-weight: 700;
    font-size: 15px;
    color: #0e2a4e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.esim-dest-from { font-size: 12px; color: #5b7790; margin-top: 2px; }
.esim-dest-from b { color: #0e2a4e; }
.esim-dest-chevron { color: #b7c5d4; font-size: 22px; font-weight: 700; }

/* See-all destinations */
.esim-seeall-wrap { text-align: center; margin: 6px 0 30px; }
.esim-seeall-btn {
    display: inline-block;
    background: #197aa6;
    border: 2px solid #197aa6;
    color: #fff;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}
.esim-seeall-btn:hover { background: #ffffff; color: #197aa6; text-decoration: none; }
.esim-seeall-sub { color: #7088a0; font-size: 13px; margin: 10px 0 0; }

/* ---- Plans mode header (filtered destination/coverage) ----------------- */
.esim-plans-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 18px 0 14px;
}
.esim-back-link { color: #14457c; font-weight: 600; text-decoration: none; }
.esim-back-link:hover { text-decoration: underline; }

/* ---- Compatibility banner ---------------------------------------------- */
.esim-compat-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff8ec;
    border: 1px solid #ffd99a;
    border-radius: 12px;
    padding: 16px 18px;
    margin: 26px 0;
}
.esim-compat-banner-icon { font-size: 24px; color: #e08a00; }
.esim-compat-banner-body { flex: 1 1 auto; }
.esim-compat-banner-title { display: block; color: #8a5a00; font-size: 15px; }
.esim-compat-banner-text { color: #6b5526; font-size: 14px; }
.esim-compat-banner-btn {
    flex: 0 0 auto;
    background: #197aa6;
    border: 2px solid #197aa6;
    color: #ffffff;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}
.esim-compat-banner-btn:hover {
    background: #ffffff;
    color: #197aa6;
    text-decoration: none;
}

/* ---- Section title (How / FAQ) ----------------------------------------- */
.esim-section-title {
    font-weight: 700;
    font-size: 24px;
    color: #0e2a4e;
    margin: 32px 0 18px;
}

/* ---- How it works (3 steps) -------------------------------------------- */
.esim-how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.esim-how-step { padding: 4px 6px; }
.esim-how-num { font-weight: 700; color: #197aa6; font-size: 20px; margin-right: 6px; }
.esim-how-ico { font-size: 22px; }
.esim-how-step-title { font-weight: 700; font-size: 17px; color: #0e2a4e; margin: 10px 0 6px; }
.esim-how-step-desc { color: #5b7790; font-size: 14px; margin: 0; }
.esim-how { margin-bottom: 0; }
/* ---- Hero → body divider (SIM icon centred on horizontal rule) ------------ */
.esim-hero-divider-wrap {
    margin: -6px 0 4px;
    position: relative;
    z-index: 1;
}
.esim-hero-divider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 560px;
    margin: 0 auto;
}
.esim-hero-divider__line {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 0;
    border-top: 1px solid #c5d4e3;
}
.esim-hero-divider__icon {
    display: inline-block;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    margin: 0 12px;
    padding: 5px 7px;
    background: #ffffff;
    border: 1px solid #c5d4e3;
    border-radius: 6px;
    line-height: 0;
}
.esim-hero-divider__sim {
    display: block;
    width: 22px;
    height: 22px;
}

/* ---- eSIM hero live search (#9754b) — sits in the dark .ds-topup-hero__form-card */
/* Match gift-cards hero spacing; do NOT raise z-index on the whole section (that
   overlaps the fixed nav). Allow overflow so the live-search dropdown can spill
   below the form card; only the right column stacks above following sections. */
.ds-topup-hero.esim-hero-sec { overflow: visible; }
.ds-topup-hero.esim-hero-sec .col-lg-6:last-child {
    position: relative;
    z-index: 2;
}
/* Desktop: ~57% copy / ~43% search (#9754). */
@media (min-width: 992px) {
    .ds-topup-hero.esim-hero-sec .row.align-items-center > .col-lg-6:first-child {
        flex: 0 0 57%;
        max-width: 57%;
        width: 57%;
    }
    .ds-topup-hero.esim-hero-sec .row.align-items-center > .col-lg-6:last-child {
        flex: 0 0 43%;
        max-width: 43%;
        width: 43%;
    }
    .ds-topup-hero.esim-hero-sec .ds-topup-hero__title {
        max-width: none;
    }
    .ds-topup-hero.esim-hero-sec .ds-topup-hero__subtitle {
        max-width: 38rem;
    }
    .ds-topup-hero.esim-hero-sec .esim-hero-card2 {
        padding: 14px 18px 16px;
    }
    .ds-topup-hero.esim-hero-sec .esim-hero-card2 .ds-topup-hero__form-title {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    .ds-topup-hero.esim-hero-sec .esim-hsearch-input {
        padding: 10px 14px 10px 38px;
        font-size: 15px;
    }
}
.esim-hero-card2 {
    /* ~30% tighter vertical padding vs prior 22/24px override */
    padding: 15px 24px 17px;
}
.ds-topup-hero__form-card .ds-topup-hero__form-title,
.esim-hero-card2 .ds-topup-hero__form-title {
    display: block;
    color: #eaf2fb;
    font-weight: 600;
    font-size: 1.02rem;
    margin: 0 0 8px;
}
.esim-hsearch { position: relative; }
.esim-hsearch-ico {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #197aa6;
    z-index: 2;
}
.esim-hsearch-input {
    width: 100%;
    box-sizing: border-box;
    border: 0;
    border-radius: 16px;
    padding: 11px 16px 11px 42px;
    font-size: 16px;
    color: #1f3554;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 32px rgba(13, 42, 90, 0.25);
    outline: none;
}
.esim-hsearch-results {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 24px 48px rgba(13, 42, 90, 0.30);
    overflow: hidden;
    max-height: 340px;
    overflow-y: auto;
    z-index: 60;
}
.esim-hsearch-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    text-decoration: none;
    color: #1f3554;
    border-bottom: 1px solid #eef2f7;
}
.esim-hsearch-item:last-child { border-bottom: 0; }
.esim-hsearch-item:hover { background: #f4f8fd; text-decoration: none; color: #0e2a4e; }
.esim-hsearch-flag { width: 30px; height: 22px; border-radius: 4px; background-size: cover; box-shadow: 0 1px 2px rgba(0,0,0,0.2); flex: 0 0 auto; }
.esim-hsearch-globe { font-size: 22px; flex: 0 0 auto; width: 30px; text-align: center; }
.esim-hsearch-label { flex: 1 1 auto; font-weight: 600; }
.esim-hsearch-chip {
    flex: 0 0 auto;
    font-size: 12px;
    color: #6b7c93;
    background: #eef2f7;
    border-radius: 999px;
    padding: 3px 10px;
}

/* ---- Per-destination page: hero card, info panel, tabs (#9754b) -------- */
.esim-pais-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 28px;
    box-shadow: 0 26px 42px rgba(17, 59, 104, 0.16);
    padding: 32px 24px;
    text-align: center;
    max-width: 360px;
    margin: 0 auto;
}
.esim-pais-card-flag {
    width: 96px;
    height: 72px;
    border-radius: 10px;
    background-size: cover;
    box-shadow: 0 6px 16px rgba(0,0,0,0.18);
    margin: 0 auto 14px;
}
.esim-pais-card-globe { font-size: 64px; display: block; margin-bottom: 10px; }
.esim-pais-card-name { font-weight: 700; font-size: 20px; color: #0e2a4e; }

.esim-info-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: nowrap;
    background: #f7f9fc;
    border: 1px solid #e6ebf1;
    border-radius: 14px;
    padding: 18px 20px;
    margin: 18px 0 8px;
}
.esim-info-panel--after-plans { margin: 28px 0 32px; }
.esim-info-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 22px;
    flex: 1 1 auto;
    min-width: 0;
}
.esim-info-item { display: flex; align-items: flex-start; gap: 10px; flex: 0 1 auto; min-width: 0; }
.esim-info-panel .esim-info-compat-btn {
    flex: 0 0 auto;
    align-self: center;
    white-space: nowrap;
}
.esim-info-ico { font-size: 20px; color: #14457c; }
.esim-info-item strong { display: block; color: #0e2a4e; font-size: 14px; }
.esim-info-item span { color: #5b7790; font-size: 13px; }

/* Plans toolbar: Países/Regiones tabs + EUR/USD on one row (desktop) */
.esim-plans-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 6px 0 18px;
    flex-wrap: nowrap;
}
.esim-plans-toolbar .esim-ctabs { margin: 0; flex: 0 0 auto; }
.esim-plans-toolbar .esim-cur-toggle { flex: 0 0 auto; margin-left: auto; }
.esim-plans-toolbar--solo-cur { justify-content: flex-end; }

/* ---- Country plan cards (#9754 Lidia v3) -------------------------------- */
.esim-grid--plans {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.esim-plan-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px 18px;
    border: 1px solid #e4e9ef;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 28px rgba(17, 59, 104, 0.07);
    min-height: 148px;
}
.esim-plan-card-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    min-width: 0;
}
.esim-plan-card-flag {
    display: inline-block;
    width: 28px;
    height: 21px;
    border-radius: 3px;
    background-size: cover;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}
.esim-plan-card-globe {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
}
.esim-plan-card-dest {
    font-size: 13px;
    font-weight: 700;
    color: #3d5873;
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.esim-plan-card-title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    color: #0e2a4e;
    line-height: 1.25;
}
.esim-plan-card-chips {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.esim-plan-card-chips li {
    font-size: 11px;
    font-weight: 600;
    color: #3d5873;
    background: #eef4fa;
    border-radius: 999px;
    padding: 4px 10px;
    white-space: nowrap;
}
.esim-plan-card-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #eef2f6;
}
.esim-plan-card-price {
    font-size: 22px;
    font-weight: 800;
    color: #163e5e;
    white-space: nowrap;
}
.esim-plan-buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: #197aa6;
    border: 2px solid #197aa6;
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    float: none;
    margin-top: 0;
}
.esim-plan-buy-btn:hover,
.esim-plan-buy-btn:focus {
    background: #ffffff;
    color: #197aa6 !important;
}
.esim-plan-buy-chevron {
    display: none;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
}

/* "Incluido en tu eSIM" feature grid */
.esim-included {
    margin: 32px 0 28px;
}
.esim-included-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.esim-included-item {
    background: #f7f9fc;
    border: 1px solid #e6ebf1;
    border-radius: 14px;
    padding: 14px 16px;
}
.esim-included-item strong {
    display: block;
    color: #0e2a4e;
    font-size: 14px;
    margin-bottom: 4px;
}
.esim-included-item span {
    display: block;
    color: #5b7790;
    font-size: 13px;
    line-height: 1.45;
}
@media (min-width: 992px) {
    .esim-included-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Países / Regiones tabs — same chrome as .esim-cur-toggle (#9754b). */
.esim-ctabs {
    display: inline-flex;
    align-items: center;
    border: 1px solid #c5ccd4;
    border-radius: 20px;
    overflow: hidden;
    -webkit-user-select: none;
    user-select: none;
    font-weight: 600;
    font-size: 14px;
    flex: 0 0 auto;
    white-space: nowrap;
    vertical-align: middle;
    margin: 6px 0 18px;
}
.esim-ctab {
    border: 0;
    background: #ffffff;
    color: #41566b;
    font-weight: 600;
    font-size: 14px;
    padding: 7px 14px;
    border-radius: 0;
    cursor: pointer;
    white-space: nowrap;
}
.esim-ctab-active { background: #197aa6; color: #ffffff; }

@media (max-width: 991px) {
    .esim-info-panel {
        flex-direction: column;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .esim-info-grid {
        flex-wrap: wrap;
        width: 100%;
    }
    .esim-info-item { max-width: 320px; }
    .esim-info-panel .esim-info-compat-btn {
        width: 100%;
        text-align: center;
        margin-top: 4px;
    }
    .esim-plans-toolbar {
        flex-wrap: wrap;
    }
    .esim-plans-toolbar .esim-cur-toggle {
        margin-left: 0;
    }
}

@media (min-width: 992px) {
    .esim-plans-toolbar .esim-cur-toggle {
        margin-left: auto;
    }
}

/* ---- Checkout trust / microcopy (#9754 Phase 2c) ----------------------- */
.esim-co-trust {
    margin: 22px auto 20px;
    max-width: 520px;
    text-align: left;
    border: 1px solid #dfe8f2;
    border-radius: 12px;
    padding: 16px 18px;
    background: #f4f8fd;
    box-sizing: border-box;
}
.esim-co-trust-item {
    color: #37526c;
    font-size: 13.5px;
    margin: 0 0 10px;
    line-height: 1.45;
}
.esim-co-trust-item:last-child { margin-bottom: 0; }
.esim-co-trust-item .fa {
    color: #0f9d58;
    margin-right: 8px;
}
.esim-co-compat-link { color: #14457c; font-weight: 600; text-decoration: none; white-space: nowrap; }
.esim-co-compat-link:hover { text-decoration: underline; }

/* Compatibility modal (home + checkout) */
.esim-compat-modal .modal-dialog { max-width: 480px; margin: 16px auto; }
.esim-compat-modal .modal-content {
    border: 0;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(14, 42, 78, 0.18);
    overflow: hidden;
}
.esim-compat-modal .modal-header {
    background: #f4f7fb;
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 18px 12px;
}
.esim-compat-modal .modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #0e2a4e;
    line-height: 1.35;
    padding-right: 28px;
}
.esim-compat-modal .modal-body { padding: 16px 18px 20px; }
.esim-compat-modal-hint {
    color: #5b7790;
    font-size: 14px;
    line-height: 1.45;
    margin: 0 0 14px;
}
.esim-compat-modal-search-wrap { margin: 0 0 12px; }
.esim-compat-modal-search-input { margin: 0; }
.esim-compat-modal-result {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.45;
}
.esim-compat-modal-result.esim-compat-ok { background: #e6f4ea; color: #1e6b32; }
.esim-compat-modal-result.esim-compat-maybe { background: #fff4e0; color: #8a5a00; }
.esim-compat-modal-result-msg { margin: 0; font-weight: 600; }
.esim-compat-modal-full-link {
    margin: 14px 0 0;
    text-align: center;
    font-size: 13px;
}
.esim-compat-modal-full-link a {
    color: #197aa6;
    font-weight: 600;
    text-decoration: none;
}
.esim-compat-modal-full-link a:hover { text-decoration: underline; }

.esim-co-flag { display: inline-block; width: 26px; height: 19px; border-radius: 3px; background-size: cover; box-shadow: 0 1px 2px rgba(0,0,0,0.2); vertical-align: middle; margin-right: 4px; }
.esim-co-flag-globe { font-size: 18px; vertical-align: middle; margin-right: 4px; }

/* Checkout payment trust strip (#9754 Phase 2c) — visible before email step */
.esim-co-pay-trust {
    margin: 16px 0 18px;
    padding: 14px 16px;
    background: #f6f8fb;
    border: 1px solid #e2e7ee;
    border-radius: 12px;
    text-align: center;
}
.esim-co-pay-trust-ssl {
    font-size: 13px;
    font-weight: 600;
    color: #1f3554;
    margin-bottom: 10px;
    line-height: 1.4;
}
.esim-co-pay-trust-ssl img { vertical-align: middle; margin-right: 6px; }
.esim-co-pay-icons {
    margin: 0 auto 8px;
    line-height: 1;
}
.esim-co-pay-icons img {
    vertical-align: middle;
    margin: 0 6px 6px;
    max-width: 100%;
    height: auto;
}
.esim-co-pay-trust-note {
    margin: 0;
    font-size: 12px;
    color: #6c7a89;
    line-height: 1.35;
}
.esim-co-replica .esim-co-ssl-footer {
    font-size: 13px;
    font-weight: 600;
    color: #51606f;
    padding-top: 12px;
}
.esim-co-replica .esim-co-ssl-footer img { vertical-align: middle; margin-right: 6px; }

/* Desktop: align summary, trust, pay-trust, contact and payment cards to one width. */
@media (min-width: 992px) {
    .esim-co-replica .esim-co-main > #summary .unlock-box,
    .esim-co-replica .esim-co-main > .esim-co-trust,
    .esim-co-replica .esim-co-main > .esim-co-pay-trust,
    .esim-co-replica .esim-co-main > #login-social-other,
    .esim-co-replica .esim-co-main > #continue_but_container,
    .esim-co-replica .esim-co-main > #continue_but_container .checkout-contact-actions,
    .esim-co-replica .esim-co-main > #continue_but_container .esim-co-continue,
    .esim-co-replica #pay_button_show_mob .unlock-box {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
    }
    .esim-co-replica .esim-co-main > .esim-co-trust {
        margin-top: 22px;
        margin-bottom: 20px;
    }
    .esim-co-replica .esim-co-main > #continue_but_container .esim-co-continue,
    .esim-co-replica .esim-co-main > #continue_but_container .checkout-contact-actions {
        margin-left: 0;
        margin-right: 0;
    }
}

/* ---- Breadcrumb -------------------------------------------------------- */
.esim-breadcrumb { font-size: 13px; color: #7088a0; margin: 14px 0 12px; }
.esim-breadcrumb a { color: #14457c; text-decoration: none; }
.esim-breadcrumb a:hover { text-decoration: underline; }
.esim-breadcrumb span { margin: 0 6px; color: #b7c5d4; }
.esim-breadcrumb .esim-breadcrumb-current { color: #5b7790; }

/* ---- Destinos catalog header + search ---------------------------------- */
.esim-destinos-head { text-align: center; margin: 6px 0 18px; }
.esim-destinos-intro { color: #5b7790; max-width: 640px; margin: 8px auto 16px; font-size: 15px; }
.esim-destinos-searchwrap { max-width: 420px; margin: 0 auto; }
.esim-destinos-search {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px;
    font-size: 16px;
    border: 1px solid #d4dae1;
    border-radius: 10px;
    color: #1f3554;
}
.esim-destinos-count { text-align: center; color: #9aa9bb; font-size: 13px; margin: 14px 0 0; }

/* ---- Compatibility page ------------------------------------------------ */
.esim-compat-hero .hero-inner ul { margin: 0; padding: 0; }
.esim-compat-hero.pb-lg-5 { padding-bottom: 1rem; }
.esim-compat-survey-sec {
    padding-top: 8px;
    padding-bottom: 24px;
    margin-top: -16px;
}
.esim-compat-survey-sec .Xbig-title { margin: 0; padding: 0; }
.esim-compat-survey-sec .Xbig-title h2 {
    color: #0e2a4e;
    margin: 0 0 6px;
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.25;
}
.esim-compat-survey-sec .Xbig-title > span {
    display: block;
    width: auto;
    max-width: 720px;
    color: #5b7790;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.45;
    margin: 0 0 12px;
}
.esim-compat-survey-sec .esim-survey-row { margin-top: 0; }
.esim-compat-content { padding-top: 28px; padding-bottom: 40px; }
.esim-compat-content .esim-breadcrumb { margin: 0 0 20px; }
.esim-survey {
    background: #ffffff;
    border: 1px solid #dde5ec;
    border-radius: 12px;
    padding: 22px 24px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 8px 24px rgba(17, 59, 104, 0.06);
}
.esim-compat-search-input {
    max-width: 100%;
    border: 1px solid #cfd8e3;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 15px;
}
.esim-survey-title { font-size: 19px; color: #0e2a4e; margin: 0 0 6px; }
.esim-survey-hint { color: #5b7790; font-size: 14px; margin: 0 0 16px; }
.esim-survey-search { max-width: 560px; margin: 0 0 18px; }
.esim-survey-or { font-weight: 600; color: #0e2a4e; margin: 0 0 10px; }
.esim-survey-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
}
.esim-survey-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #c5d4e3;
    background: #f7faff;
    color: #1f3554;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 16px;
    border-radius: 999px;
    cursor: pointer;
    white-space: nowrap;
}
.esim-survey-brand:hover { border-color: #197aa6; background: #eef6fb; }
.esim-survey-brand-active { border-color: #197aa6; background: #ffffff; box-shadow: 0 0 0 2px rgba(25,122,166,0.15); }
.esim-survey-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    min-width: 22px;
    max-width: 22px;
    flex: 0 0 22px;
    border-radius: 50%;
    background: #197aa6;
    color: #fff;
    font-size: 12px;
    line-height: 1;
    margin: 0;
    padding: 0;
}
/* main.css sets .bg-grey.analyze-holder span { width:100% } — reset for brand pills */
.esim-compat-survey-sec .esim-survey-brand .esim-survey-letter {
    display: inline-flex;
    width: 22px;
    min-width: 22px;
    max-width: 22px;
    margin-bottom: 0;
}
.esim-compat-result { margin: 12px 0 0; font-weight: 600; }
.esim-compat-result.esim-compat-ok { color: #0f9d58; }
.esim-compat-result.esim-compat-maybe { color: #b8860b; }
.esim-compat-result-msg { margin: 0 0 10px; }
.esim-compat-catalog-btn {
    display: inline-block;
    margin-top: 4px;
    background: #197aa6;
    border: 2px solid #197aa6;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}
.esim-compat-catalog-btn:hover { background: #ffffff; color: #197aa6; text-decoration: none; }

/* SEO / about callout (home — above "Cómo funciona") */
.esim-about-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f4f8fd;
    border: 1px solid #d6e6f2;
    border-radius: 16px;
    padding: 22px 24px;
    margin: 36px 0 8px;
    box-shadow: 0 12px 28px rgba(17, 59, 104, 0.06);
}
.esim-about-box-icon {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 50%;
    background: #197aa6;
    color: #ffffff;
    font-size: 22px;
}
.esim-about-box-body { flex: 1 1 auto; min-width: 0; }
.esim-about-box-title {
    display: block;
    color: #0e2a4e;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 8px;
}
.esim-about-box-body p {
    color: #5b7790;
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}

.esim-compat-brand {
    margin: 0 0 22px;
    scroll-margin-top: 108px;
}
@media (max-width: 550px) {
    .esim-compat-brand { scroll-margin-top: 72px; }
}
.esim-compat-brand-name { font-size: 18px; color: #0e2a4e; margin: 0 0 6px; }
.esim-compat-brand-note { color: #7088a0; font-size: 13px; margin: 0 0 10px; }
.esim-compat-models {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px 16px;
    width: 100%;
    box-sizing: border-box;
}
.esim-compat-models li { color: #37526c; font-size: 14px; padding: 3px 0; }
.esim-compat-laptop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    width: 100%;
    box-sizing: border-box;
}
.esim-compat-how p { color: #5b7790; max-width: 760px; }

/* ---- Responsive -------------------------------------------------------- */
@media (max-width: 991px) {
    .esim-compat-models { grid-template-columns: repeat(2, 1fr); }
    .esim-compat-laptop-grid { grid-template-columns: 1fr; }
    .esim-hero { text-align: center; padding: 36px 0 32px; }
    .esim-hero-subtitle { margin-left: auto; margin-right: auto; }
    .esim-hero-bullets { display: inline-block; text-align: left; }
    .esim-hero-card { margin-top: 22px; text-align: left; }
    .esim-how-steps { grid-template-columns: 1fr; gap: 16px; }
    .esim-dest-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
}
@media (max-width: 767px) {
    .esim-hero-title { font-size: 30px; }
    .esim-dest-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .esim-dest-card { padding: 10px 12px; gap: 10px; min-height: 64px; }
    .esim-dest-info {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        column-gap: 8px;
        row-gap: 0;
        align-content: center;
    }
    .esim-dest-tag { grid-column: 1; grid-row: 1; }
    .esim-dest-name { grid-column: 1; grid-row: 2; font-size: 15px; white-space: normal; }
    .esim-dest-from {
        grid-column: 2;
        grid-row: 1 / span 2;
        align-self: center;
        margin-top: 0;
        text-align: right;
        font-size: 11px;
        white-space: nowrap;
    }
    .esim-dest-flag .flag-icon { width: 46px; height: 34px; }
    .esim-compat-banner { flex-direction: column; align-items: flex-start; }
    .esim-compat-banner-btn { width: 100%; text-align: center; }
    .esim-about-box { flex-direction: column; align-items: flex-start; padding: 18px 16px; margin: 28px 0 4px; }
    .esim-about-box-icon { width: 42px; height: 42px; line-height: 42px; font-size: 20px; }
    .esim-compat-catalog-btn { display: block; text-align: center; }
    .esim-grid--plans { grid-template-columns: 1fr; gap: 8px; }
    .esim-plan-card {
        flex-direction: row;
        align-items: center;
        min-height: 0;
        padding: 12px 14px;
        border-radius: 14px;
        box-shadow: 0 8px 18px rgba(17, 59, 104, 0.06);
    }
    .esim-plan-card-main { flex: 1 1 auto; min-width: 0; }
    .esim-plan-card-head { margin-bottom: 2px; gap: 6px; }
    .esim-plan-card-flag { width: 22px; height: 16px; }
    .esim-plan-card-globe { font-size: 16px; }
    .esim-plan-card-dest { font-size: 11px; }
    .esim-plan-card-title { font-size: 16px; margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .esim-plan-card-chips { display: none; }
    .esim-plan-card-action {
        flex: 0 0 auto;
        margin-top: 0;
        padding-top: 0;
        border-top: 0;
        gap: 8px;
    }
    .esim-plan-card-price { font-size: 16px; font-weight: 800; }
    .esim-plan-buy-btn { padding: 6px 10px; min-width: 32px; }
    .esim-plan-buy-label { display: none; }
    .esim-plan-buy-chevron { display: inline; }
    .esim-included-grid { grid-template-columns: 1fr; gap: 10px; }
}

/* Mi Cuenta top-up landing (/esim/recargar/) -------------------------------- */
.esim-topup-mode { padding-top: 16px; }
.esim-topup-head { margin-bottom: 18px; }
.esim-topup-title {
    font-size: 24px;
    font-weight: 700;
    color: #163e5e;
    margin: 10px 0 6px;
}
.esim-topup-sub { color: #51606f; margin: 0 0 10px; }
.esim-topup-iccid {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}
.esim-topup-iccid code {
    font-size: 12px;
    color: #1f3554;
    word-break: break-all;
}
.esim-buy-form { margin: 0; display: inline-block; }
.esim-topup-mode .esim-buy-btn {
    border: 0;
    cursor: pointer;
}