/* =============================================================================
   SimTop eSIM Catalog — v4.0 "Clean Mono"
   Inspired by esim-israel.io — monochrome + single accent (SimTop gold)
   Ultra-clean, professional, trust-building
   ============================================================================= */

/* ── Design Tokens ── */
:root {
    --st-accent: #F5A623;
    --st-accent-hover: #E69516;
    --st-accent-soft: #FFF8EC;
    --st-black: #1A1A1A;
    --st-dark: #2D2D2D;
    --st-gray-900: #333333;
    --st-gray-700: #555555;
    --st-gray-500: #888888;
    --st-gray-400: #AAAAAA;
    --st-gray-200: #E5E5E5;
    --st-gray-100: #F2F2F2;
    --st-gray-50: #F8F8F8;
    --st-white: #FFFFFF;
    --st-green: #22C55E;
    --st-green-soft: #ECFDF5;
    --st-blue: #3B82F6;
    --st-blue-soft: #EFF6FF;
    --st-orange: #F97316;
    --st-purple: #8B5CF6;
    --st-purple-soft: #F5F3FF;
    --st-teal: #14B8A6;
    --st-accent-light: #FEF3D9;
    --st-font: 'Rubik', -apple-system, BlinkMacSystemFont, sans-serif;
    --st-radius: 14px;
    --st-radius-sm: 8px;
    --st-radius-pill: 100px;
    --st-transition: 200ms ease;

    /* Shorthand aliases for product page */
    --st-g50: var(--st-gray-50);
    --st-g100: var(--st-gray-100);
    --st-g200: var(--st-gray-200);
    --st-g300: #CCC;
    --st-g400: var(--st-gray-400);
    --st-g500: var(--st-gray-500);
    --st-g700: var(--st-gray-700);
    --st-g900: var(--st-gray-900);
}

/* ── Reset ── */
.xcom-esim-catalog *,
.xcom-esim-catalog *::before,
.xcom-esim-catalog *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.xcom-esim-catalog {
    font-family: var(--st-font);
    color: var(--st-black);
    direction: rtl;
    text-align: right;
    background: var(--st-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── Animations ── */
.xcom-esim-animate {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.xcom-esim-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* stagger for grid cards */
.xcom-esim-grid .xcom-esim-animate:nth-child(1) { transition-delay: 0ms; }
.xcom-esim-grid .xcom-esim-animate:nth-child(2) { transition-delay: 70ms; }
.xcom-esim-grid .xcom-esim-animate:nth-child(3) { transition-delay: 140ms; }
.xcom-esim-grid .xcom-esim-animate:nth-child(4) { transition-delay: 210ms; }
.xcom-esim-grid .xcom-esim-animate:nth-child(5) { transition-delay: 280ms; }
.xcom-esim-grid .xcom-esim-animate:nth-child(6) { transition-delay: 350ms; }

/* ══════════════════════════════════════════════════════════════
   BREADCRUMBS
   ══════════════════════════════════════════════════════════════ */
.xcom-esim-breadcrumbs {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.25rem 2rem 0;
    font-size: 0.8rem;
    color: var(--st-gray-500);
}

.xcom-esim-breadcrumbs a {
    color: var(--st-gray-700);
    text-decoration: none;
}

.xcom-esim-breadcrumbs a:hover {
    color: var(--st-accent);
}

.xcom-esim-breadcrumbs .sep {
    margin: 0 0.3rem;
    opacity: 0.4;
}

.xcom-esim-breadcrumbs .sep svg {
    width: 12px;
    height: 12px;
}

/* Prevent unstyled SVGs from rendering huge */
.xcom-esim-catalog svg {
    max-width: 48px;
    max-height: 48px;
}

/* ══════════════════════════════════════════════════════════════
   HERO — Clean, editorial
   ══════════════════════════════════════════════════════════════ */
.xcom-esim-hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2.5rem 2rem 2rem;
}

.xcom-esim-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--st-accent);
    color: var(--st-white);
    padding: 5px 14px;
    border-radius: var(--st-radius-pill);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
}

.xcom-esim-hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--st-white);
    border-radius: 50%;
    animation: st-pulse 2s ease-in-out infinite;
}

@keyframes st-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.xcom-esim-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--st-black);
    margin-bottom: 0.75rem;
}

.xcom-esim-hero h1 .highlight {
    color: var(--st-accent);
}

.xcom-esim-hero-sub {
    font-size: 1.05rem;
    color: var(--st-gray-700);
    max-width: 520px;
    margin-bottom: 0.6rem;
    line-height: 1.7;
}





/* ══════════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════════ */
.xcom-esim-faq {
    max-width: 780px;
    margin: 0 auto;
    padding: 3rem 2rem 3.5rem;
}

.xcom-esim-faq-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--st-black);
    margin-bottom: 0.3rem;
}

.xcom-esim-faq-sub {
    font-size: 0.85rem;
    text-align: center;
    color: var(--st-gray-500);
    margin-bottom: 2rem;
}

.xcom-esim-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.xcom-esim-faq-item {
    border-bottom: 1px solid var(--st-gray-200);
}

.xcom-esim-faq-item:first-child {
    border-top: 1px solid var(--st-gray-200);
}

.xcom-esim-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 0;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--st-font);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--st-black);
    text-align: right;
    direction: rtl;
    line-height: 1.4;
    transition: color var(--st-transition);
}

.xcom-esim-faq-question:hover {
    color: var(--st-accent);
}

.xcom-esim-faq-chevron {
    width: 20px;
    height: 20px;
    fill: var(--st-gray-400);
    flex-shrink: 0;
    transition: transform 0.3s ease, fill var(--st-transition);
}

.xcom-esim-faq-item.is-open .xcom-esim-faq-question {
    color: var(--st-accent);
    font-weight: 600;
}

.xcom-esim-faq-item.is-open .xcom-esim-faq-chevron {
    transform: rotate(180deg);
    fill: var(--st-accent);
}

.xcom-esim-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.xcom-esim-faq-answer-inner {
    padding: 0 0 1.25rem;
    font-size: 0.85rem;
    color: var(--st-gray-700);
    line-height: 1.75;
}


/* ══════════════════════════════════════════════════════════════
   HERO — Provider Card
   ══════════════════════════════════════════════════════════════ */
.xcom-esim-hero-text { flex: 1; }

.xcom-esim-hero-provider {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--st-gray-50);
    border: 1px solid var(--st-gray-200);
    border-radius: var(--st-radius-sm);
    padding: 0.65rem 1rem;
    margin-top: 1rem;
}
.xcom-esim-hero-provider-logo {
    max-height: 36px;
    width: auto;
    object-fit: contain;
}
.xcom-esim-hero-provider-name {
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}
.xcom-esim-chip {
    background: var(--st-dark);
    color: var(--st-white);
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 0.6rem;
    font-weight: 700;
}
.xcom-esim-hero-provider-meta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    color: var(--st-gray-500);
}
.xcom-esim-badge-5g {
    background: #ECFDF5;
    color: var(--st-green);
    padding: 2px 6px;
    border-radius: var(--st-radius-pill);
    font-size: 0.58rem;
    font-weight: 700;
}

/* ══════════════════════════════════════════════════════════════
   STATS STRIP — scrollable on mobile
   ══════════════════════════════════════════════════════════════ */
.xcom-esim-stats-strip {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem 1rem;
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.xcom-esim-stats-strip::-webkit-scrollbar { display: none; }
.xcom-esim-stat {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--st-gray-50);
    border: 1px solid var(--st-gray-200);
    padding: 0.45rem 0.85rem;
    border-radius: var(--st-radius-pill);
    font-size: 0.72rem;
    color: var(--st-gray-700);
    white-space: nowrap;
    flex-shrink: 0;
}
.xcom-esim-stat svg { width: 13px; height: 13px; flex-shrink: 0; }
.xcom-esim-stat strong { font-weight: 700; color: var(--st-black); }
.sc-green svg { fill: var(--st-green); }
.sc-accent svg { fill: var(--st-accent); }
.sc-blue svg { fill: var(--st-blue); }

/* ══════════════════════════════════════════════════════════════
   ADVANTAGES
   ══════════════════════════════════════════════════════════════ */
.xcom-esim-advantages {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem 1.5rem;
}
.xcom-esim-adv-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6rem;
}
.xcom-esim-adv-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: var(--st-gray-50);
    border: 1px solid var(--st-gray-100);
    border-radius: var(--st-radius-sm);
    padding: 0.85rem 1rem;
}
.xcom-esim-adv-icon {
    width: 36px; height: 36px;
    border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.xcom-esim-adv-icon svg { width: 18px; height: 18px; }
.adv-green { background: #ECFDF5; }
.adv-green svg { fill: var(--st-green); }
.adv-blue { background: #EFF6FF; }
.adv-blue svg { fill: var(--st-blue); }
.adv-accent { background: var(--st-accent-soft); }
.adv-accent svg { fill: var(--st-accent); }
.adv-purple { background: #F5F3FF; }
.adv-purple svg { fill: var(--st-purple); }
.xcom-esim-adv-text h4 { font-size: 0.82rem; font-weight: 600; margin-bottom: 2px; }
.xcom-esim-adv-text p { font-size: 0.72rem; color: var(--st-gray-500); line-height: 1.5; }

/* ══════════════════════════════════════════════════════════════
   PRODUCT CARDS — GB Hero layout (mobile-first)
   ══════════════════════════════════════════════════════════════ */
.xcom-esim-grid-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.5rem 1.25rem 1.5rem;
}
.xcom-esim-grid-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.85rem;
}
.xcom-esim-grid-title { font-size: 1.05rem; font-weight: 700; }
.xcom-esim-grid-count { font-size: 0.72rem; color: var(--st-gray-500); }
.xcom-esim-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

/* Card base — mobile: horizontal */
.xcom-esim-card {
    background: var(--st-white);
    border: 1px solid var(--st-gray-200);
    border-radius: var(--st-radius);
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: row;
    padding: 0;
}
.xcom-esim-card:hover {
    border-color: var(--st-gray-400);
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

/* GB Hero zone */
.xcom-esim-card-gb-hero {
    width: 100px; flex-shrink: 0;
    background: var(--st-gray-50);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 1rem 0.5rem;
    border-left: 1px solid var(--st-gray-100);
    position: relative;
}
.xcom-esim-card-gb-number {
    font-size: 2.2rem; font-weight: 800;
    color: var(--st-black); letter-spacing: -1px; line-height: 1;
}
.xcom-esim-card-gb-unit { font-size: 0.85rem; font-weight: 600; color: var(--st-gray-500); }
.xcom-esim-card-gb-label { font-size: 0.58rem; color: var(--st-gray-400); margin-top: 2px; }

/* Card badges */
.xcom-esim-card-badge {
    position: absolute; top: 6px; right: 50%;
    transform: translateX(50%);
    padding: 2px 8px; border-radius: var(--st-radius-pill);
    font-size: 0.55rem; font-weight: 700; white-space: nowrap;
}
.xcom-esim-card-badge--best { background: #FEF3D9; color: #B45309; }
.xcom-esim-card-badge--renew { background: #EFF6FF; color: var(--st-blue); }

/* Card content */
.xcom-esim-card-content { flex: 1; display: flex; flex-direction: column; }
.xcom-esim-card-body { padding: 0.75rem 0.85rem; flex: 1; }
.xcom-esim-card-provider {
    font-size: 0.58rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.03em;
    color: var(--st-gray-400);
}
.xcom-esim-card-name {
    font-size: 0.78rem; font-weight: 600;
    color: var(--st-black); line-height: 1.3; margin-bottom: 0.4rem;
}
.xcom-esim-card-specs {
    list-style: none; display: flex;
    flex-wrap: wrap; gap: 0.2rem 0.8rem;
}
.xcom-esim-card-specs li {
    display: flex; align-items: center; gap: 4px;
    font-size: 0.68rem; color: var(--st-gray-700);
}
.xcom-esim-card-specs li svg { width: 11px; height: 11px; fill: var(--st-green); flex-shrink: 0; }

/* Card footer */
.xcom-esim-card-footer {
    border-top: 1px solid var(--st-gray-100);
    padding: 0.6rem 0.85rem;
    display: flex; align-items: center;
    justify-content: space-between;
    margin-top: auto;
}
.xcom-esim-card-price-wrap { display: flex; flex-direction: column; }
.xcom-esim-card-price-label { font-size: 0.58rem; color: var(--st-gray-500); }
.xcom-esim-card-price {
    font-size: 1.15rem; font-weight: 700;
    color: var(--st-black); direction: ltr; unicode-bidi: embed;
}

/* CTA Button */
.xcom-esim-btn {
    display: inline-flex; align-items: center; gap: 4px;
    background: var(--st-dark); color: var(--st-white);
    padding: 0.5rem 0.9rem; border-radius: var(--st-radius-sm);
    font-family: var(--st-font); font-size: 0.72rem; font-weight: 600;
    text-decoration: none; border: none; cursor: pointer;
    transition: background 0.2s; min-height: 40px;
}
.xcom-esim-btn:hover { background: var(--st-black); }
.xcom-esim-btn svg { width: 13px; height: 13px; fill: var(--st-white); }
.xcom-esim-btn--accent { background: var(--st-accent); }
.xcom-esim-btn--accent:hover { background: var(--st-accent-hover); }

/* Featured Card — mobile: stacked */
.xcom-esim-card--featured {
    flex-direction: column;
    border: 2px solid var(--st-accent);
}
.xcom-esim-card--featured .xcom-esim-card-gb-hero {
    width: 100%; border-left: none;
    border-bottom: 1px solid var(--st-gray-100);
    padding: 1.5rem; flex-direction: row; gap: 0.5rem;
    background: linear-gradient(135deg, var(--st-accent-soft) 0%, var(--st-gray-50) 100%);
}
.xcom-esim-card--featured .xcom-esim-card-gb-number { font-size: 3rem; }
.xcom-esim-card--featured .xcom-esim-card-gb-unit { font-size: 1.2rem; }
.xcom-esim-card--featured .xcom-esim-card-body { padding: 1rem; }
.xcom-esim-card--featured .xcom-esim-card-name { font-size: 0.85rem; }
.xcom-esim-card--featured .xcom-esim-card-footer { padding: 0.75rem 1rem; }
.xcom-esim-card--featured .xcom-esim-btn {
    background: var(--st-accent); padding: 0.6rem 1.2rem; font-size: 0.78rem;
}
.xcom-esim-card--featured .xcom-esim-btn:hover { background: var(--st-accent-hover); }
.xcom-esim-featured-label {
    position: absolute; top: 0; left: 50%;
    transform: translateX(-50%);
    background: var(--st-accent); color: var(--st-white);
    padding: 2px 14px; border-radius: 0 0 6px 6px;
    font-size: 0.62rem; font-weight: 700; white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════════
   ISRAELI NUMBER HIGHLIGHT
   ══════════════════════════════════════════════════════════════ */
.xcom-esim-number-highlight {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.25rem;
}
.xcom-esim-number-card {
    background: linear-gradient(135deg, #F0FDF4 0%, #ECFDF5 50%, #F0F9FF 100%);
    border: 1px solid #BBF7D0;
    border-radius: var(--st-radius);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.xcom-esim-number-icon {
    width: 48px; height: 48px;
    background: var(--st-white); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.xcom-esim-number-content h3 {
    font-size: 0.95rem; font-weight: 700;
    margin-bottom: 0.3rem; color: #166534;
}
.xcom-esim-number-content p {
    font-size: 0.78rem; color: var(--st-gray-700); line-height: 1.7;
}
.xcom-esim-number-benefits {
    display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.6rem;
}
.xcom-esim-number-benefit {
    display: flex; align-items: center; gap: 4px;
    background: var(--st-white); padding: 4px 10px;
    border-radius: var(--st-radius-pill);
    font-size: 0.68rem; font-weight: 500; color: #166534;
    border: 1px solid #BBF7D0;
}
.xcom-esim-number-benefit svg { width: 12px; height: 12px; fill: var(--st-green); }

/* ══════════════════════════════════════════════════════════════
   STEPS — How to install
   ══════════════════════════════════════════════════════════════ */
.xcom-esim-steps {
    background: var(--st-gray-50);
    padding: 2rem 1.25rem;
}
.xcom-esim-steps-inner { max-width: 1100px; margin: 0 auto; }
.xcom-esim-section-title {
    font-size: 1.05rem; font-weight: 700;
    text-align: center; margin-bottom: 0.2rem;
}
.xcom-esim-section-sub {
    text-align: center; font-size: 0.78rem;
    color: var(--st-gray-500); margin-bottom: 1.25rem;
}
.xcom-esim-steps-grid {
    display: grid; grid-template-columns: 1fr; gap: 0.75rem;
}
.xcom-esim-step-card {
    background: var(--st-white);
    border: 1px solid var(--st-gray-200);
    border-radius: var(--st-radius);
    padding: 1.25rem 1rem;
    display: flex; align-items: flex-start; gap: 0.85rem;
}
.xcom-esim-step-num {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--st-accent); color: var(--st-white);
    font-weight: 800; font-size: 0.85rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.xcom-esim-step-text h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 0.2rem; }
.xcom-esim-step-text p { font-size: 0.75rem; color: var(--st-gray-500); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════
   WHY SIMTOP — Updated Layout
   ══════════════════════════════════════════════════════════════ */
.xcom-esim-why {
    background: var(--st-gray-50);
    padding: 2rem 1.25rem;
}
.xcom-esim-why-inner { max-width: 1100px; margin: 0 auto; }
.xcom-esim-why-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem;
}
.xcom-esim-why-card {
    background: var(--st-white);
    border: 1px solid var(--st-gray-100);
    border-radius: var(--st-radius-sm);
    padding: 1rem 0.85rem;
    display: flex; align-items: flex-start; gap: 0.65rem;
}
.xcom-esim-why-icon {
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--st-accent-soft);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.xcom-esim-why-icon svg {
    width: 16px; height: 16px;
    stroke: var(--st-accent); fill: none;
    stroke-width: 1.8;
}
.xcom-esim-why-card h4 { font-size: 0.78rem; font-weight: 600; margin-bottom: 2px; }
.xcom-esim-why-card p { font-size: 0.68rem; color: var(--st-gray-500); line-height: 1.5; }

/* ══════════════════════════════════════════════════════════════
   FAQ — Updated
   ══════════════════════════════════════════════════════════════ */
.xcom-esim-faq {
    max-width: 780px;
    margin: 0 auto;
    padding: 2rem 1.25rem;
}

/* ══════════════════════════════════════════════════════════════
   SEO Content
   ══════════════════════════════════════════════════════════════ */
.xcom-esim-seo {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.25rem;
    border-top: 1px solid var(--st-gray-200);
}
.xcom-esim-seo h2 {
    font-size: 0.95rem; font-weight: 600; margin-bottom: 0.5rem;
}
.xcom-esim-seo p {
    font-size: 0.78rem; color: var(--st-gray-500);
    line-height: 1.8; margin-bottom: 0.75rem;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — Desktop enhancements
   ══════════════════════════════════════════════════════════════ */
@media (min-width: 769px) {
    .xcom-esim-hero {
        display: flex; align-items: center;
        gap: 2.5rem; padding: 2rem 2rem 1.5rem;
    }
    .xcom-esim-hero-provider {
        width: 340px; flex-shrink: 0;
        flex-direction: column; padding: 1.5rem;
        text-align: center; border-radius: var(--st-radius);
    }
    .xcom-esim-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }
    .xcom-esim-stats-strip { padding: 0 2rem 1rem; }
    .xcom-esim-advantages { padding: 0 2rem 1.5rem; }
    .xcom-esim-adv-grid { grid-template-columns: 1fr 1fr; }
    .xcom-esim-grid-section { padding: 0.5rem 2rem 1.5rem; }
    .xcom-esim-grid { grid-template-columns: repeat(3, 1fr); }

    /* Desktop: card vertical layout */
    .xcom-esim-card { flex-direction: column; }
    .xcom-esim-card-gb-hero {
        width: 100%; border-left: none;
        border-bottom: 1px solid var(--st-gray-100);
        padding: 1.25rem;
    }
    .xcom-esim-card-gb-number { font-size: 3rem; }
    .xcom-esim-card-gb-unit { font-size: 1.2rem; }
    .xcom-esim-card-specs { flex-direction: column; gap: 0.3rem; }

    /* Featured: horizontal on desktop */
    .xcom-esim-card--featured { grid-column: 1 / -1; flex-direction: row; }
    .xcom-esim-card--featured .xcom-esim-card-gb-hero {
        width: 260px; border-bottom: none;
        border-left: 1px solid var(--st-gray-100);
        flex-direction: column;
    }
    .xcom-esim-card--featured .xcom-esim-card-gb-number { font-size: 4.5rem; }
    .xcom-esim-card--featured .xcom-esim-card-specs { flex-direction: row; flex-wrap: wrap; gap: 0.4rem 1.25rem; }

    .xcom-esim-steps { padding: 2rem 2rem; }
    .xcom-esim-steps-grid { grid-template-columns: repeat(3, 1fr); }
    .xcom-esim-number-highlight { padding: 2rem 2rem; }
    .xcom-esim-number-card { padding: 2rem; gap: 1.5rem; }
    .xcom-esim-why { padding: 2rem 2rem; }
    .xcom-esim-why-grid { grid-template-columns: repeat(3, 1fr); }
    .xcom-esim-faq { padding: 2rem 2rem; }
    .xcom-esim-seo { padding: 2rem 2rem; }
}

/* ── Hide WC defaults ── */
.xcom-esim-catalog .woocommerce-result-count,
.xcom-esim-catalog .woocommerce-ordering,
.xcom-esim-catalog .woocommerce-breadcrumb,
.xcom-esim-catalog ul.products {
    display: none !important;
}

/* ── Print ── */
@media print {
    .xcom-esim-animate { opacity: 1 !important; transform: none !important; }
    .xcom-esim-why { break-inside: avoid; }
}


/* =============================================================================
   SINGLE PRODUCT PAGE — "Clean Mono" v1.0
   Prefix: xp- (xcom-product)
   Reuses tokens from :root above
   ============================================================================= */

.xcom-esim-product {
    font-family: var(--st-font);
    color: var(--st-black);
    background: var(--st-white);
    direction: rtl;
    text-align: right;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 80px;
}

/* ── Breadcrumbs ── */
.xp-breadcrumbs {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 2rem 0;
    font-size: 0.78rem;
    color: var(--st-g500);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    direction: rtl;
    unicode-bidi: embed;
}
.xp-breadcrumbs a { color: var(--st-g700); text-decoration: none; white-space: nowrap; }
.xp-breadcrumbs a:hover { color: var(--st-accent); }
.xp-breadcrumbs span { white-space: nowrap; }
.xp-breadcrumbs bdi { unicode-bidi: isolate; }
.xp-sep-icon { flex-shrink: 0; opacity: 0.5; }

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.xp-hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1.5rem 2rem 2rem;
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}
.xp-hero-text { flex: 1; }

/* Visual card */
.xp-hero-visual {
    width: 400px;
    flex-shrink: 0;
    position: sticky;
    top: 1.5rem;
}
/* ── Provider Logo Strip (Option B) ── */
.xp-provider-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 0.75rem 2rem;
    background: var(--st-white);
    border: 1px solid var(--st-g200);
    border-radius: 16px 16px 0 0;
    border-bottom: none;
}
.xp-provider-logo {
    max-width: 110px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.xp-provider-name-strip {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--st-black);
}
.xp-strip-divider {
    width: 1px;
    height: 28px;
    background: var(--st-g200);
    flex-shrink: 0;
    margin: 0 0.5rem;
}
.xp-strip-label {
    font-size: 0.72rem;
    color: var(--st-g500);
    font-weight: 500;
}

.xp-visual-card {
    background: linear-gradient(135deg, var(--st-g50) 0%, var(--st-white) 100%);
    border: 1px solid var(--st-g200);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}
.xp-visual-card--with-strip {
    border-radius: 0 0 16px 16px;
}
.xp-visual-card img {
    width: 220px;
    height: auto;
    filter: drop-shadow(0 12px 32px rgba(0,0,0,0.08));
}
.xp-visual-net {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--st-g200);
    font-size: 0.75rem;
    color: var(--st-g500);
}

/* Badge */
.xp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--st-accent);
    color: white;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.xp-dot {
    width: 6px; height: 6px;
    background: white;
    border-radius: 50%;
    animation: xp-pulse 2s ease-in-out infinite;
}
@keyframes xp-pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.xp-h1 {
    font-size: clamp(1.5rem, 3.5vw, 2.1rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.4rem;
}
.xp-sub {
    font-size: 0.9rem;
    color: var(--st-g700);
    margin-bottom: 0.75rem;
}

/* Chips */
.xp-chips {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
    margin-bottom: 1.15rem;
}
.xp-chip {
    background: var(--st-g50);
    border: 1px solid var(--st-g200);
    padding: 4px 11px;
    border-radius: 100px;
    font-size: 0.73rem;
    color: var(--st-g700);
    font-weight: 500;
}

/* ── Spec Table ── */
.xp-spec-table {
    width: 100%;
    border: 1px solid var(--st-g200);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    font-size: 0.82rem;
}
.xp-spec-row {
    display: flex;
    align-items: center;
    padding: 0.6rem 0.9rem;
    border-bottom: 1px solid var(--st-g100);
}
.xp-spec-row:last-child { border-bottom: none; }
.xp-spec-alt { background: var(--st-g50); }
.xp-spec-label {
    width: 140px;
    flex-shrink: 0;
    color: var(--st-g500);
    font-weight: 500;
    display: flex;
    align-items: center;
}
.xp-spec-value {
    flex: 1;
    font-weight: 600;
    color: var(--st-black);
}

/* ── Price Block ── */
.xp-price-block {
    background: var(--st-g50);
    border: 1px solid var(--st-g200);
    border-radius: 10px;
    padding: 1rem 1.1rem;
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.xp-price-label {
    font-size: 0.72rem;
    color: var(--st-g500);
    margin-bottom: 1px;
}
.xp-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--st-black);
    direction: ltr;
    unicode-bidi: embed;
}
.xp-price-note {
    font-size: 0.72rem;
    color: var(--st-g500);
    display: flex;
    align-items: center;
    gap: 4px;
}

.xp-chip--5g {
    background: #22C55E;
    color: white;
    border-color: #22C55E;
    font-weight: 700;
}

/* ── Spec Table Icons (SVG) ── */
.xp-spec-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-left: 6px;
    flex-shrink: 0;
    vertical-align: middle;
}
.xp-spec-icon svg {
    width: 14px;
    height: 14px;
}

/* 5G mini badge */
.xp-5g-mini {
    background: #22C55E;
    color: white;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 700;
}

/* ── Quantity ── */
.xp-qty-row {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.85rem;
}
.xp-qty-label {
    font-size: 0.78rem;
    color: var(--st-g500);
}
.xp-qty {
    display: flex;
    align-items: center;
    border: 1px solid var(--st-g200);
    border-radius: 10px;
    overflow: hidden;
}
.xp-qty-btn {
    width: 34px;
    height: 34px;
    background: var(--st-g50);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: var(--st-font);
    color: var(--st-g700);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.xp-qty-btn:hover { background: var(--st-g200); }
.xp-qty-val {
    width: 38px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    border-right: 1px solid var(--st-g200);
    border-left: 1px solid var(--st-g200);
    background: white;
    height: 34px;
    font-family: var(--st-font);
    -moz-appearance: textfield;
}
.xp-qty-val::-webkit-inner-spin-button,
.xp-qty-val::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

/* ── CTA Button ── */
.xp-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--st-accent);
    color: white;
    padding: 0.85rem 2rem;
    border-radius: 10px;
    font-family: var(--st-font);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s, transform 0.1s;
    margin-bottom: 0.45rem;
}
.xp-cta:hover { background: var(--st-accent-hover); transform: translateY(-1px); }
.xp-cta:active { transform: translateY(0); }
.xp-cart-form { width: 100%; }

.xp-cta-sub {
    font-size: 0.7rem;
    color: var(--st-g500);
    text-align: center;
    margin-bottom: 1rem;
}

/* ── Trust ── */
.xp-trust {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 0.75rem;
    border-top: 1px solid var(--st-g200);
}
.xp-trust-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    color: var(--st-g700);
}
.xp-trust-item svg { flex-shrink: 0; }
.xp-t-green svg { fill: #22C55E; }
.xp-t-blue svg { fill: #3B82F6; }
.xp-t-accent svg { fill: var(--st-accent); }

/* ══════════════════════════════════════
   FEATURES — מה כלול בחבילה
   ══════════════════════════════════════ */
.xp-features {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 2rem 1.5rem;
    background: linear-gradient(to bottom, #f0fdf4 0%, var(--st-white) 100%);
    border-radius: 16px;
}
.xp-section-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.xp-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 2.5rem;
}
.xp-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.84rem;
    color: var(--st-g700);
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--st-g100);
}
.xp-feature-item:last-child { border-bottom: none; }
.xp-feature-item svg { flex-shrink: 0; margin-top: 3px; }
.xp-feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.xp-feature-text strong {
    font-weight: 600;
    color: var(--st-black);
    font-size: 0.85rem;
}
.xp-feature-text span {
    font-size: 0.73rem;
    color: var(--st-g500);
    line-height: 1.3;
}

/* ══════════════════════════════════════
   EXPANDABLE BLOCKS
   ══════════════════════════════════════ */
.xp-info-blocks {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.xp-info-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    font-family: var(--st-font);
    font-size: 0.84rem;
    font-weight: 600;
    transition: border-color 0.2s;
}
.xp-info-toggle svg {
    width: 18px; height: 18px;
    flex-shrink: 0;
    transition: transform 0.3s;
}
.xp-info-toggle.xp-open svg { transform: rotate(180deg); }
.xp-info--warn {
    background: #FEF2F2;
    color: #EF4444;
    border: 1px solid #FECACA;
}
.xp-info--warn svg { fill: #EF4444; }
.xp-info--info {
    background: #EFF6FF;
    color: #3B82F6;
    border: 1px solid #BFDBFE;
}
.xp-info--info svg { fill: #3B82F6; }
.xp-info-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.xp-info-inner {
    padding: 0.7rem 1rem 0.5rem;
    font-size: 0.8rem;
    color: var(--st-g700);
    line-height: 1.8;
}
.xp-info-inner li {
    margin-bottom: 0.3rem;
    list-style: disc inside;
}

/* ══════════════════════════════════════
   FAQ
   ══════════════════════════════════════ */
.xp-faq {
    max-width: 780px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
}
.xp-faq-title { font-size: 1.2rem; font-weight: 700; text-align: center; margin-bottom: 0.2rem; }
.xp-faq-sub { font-size: 0.8rem; text-align: center; color: var(--st-g500); margin-bottom: 1.5rem; }
.xp-faq-item { border-bottom: 1px solid var(--st-g200); }
.xp-faq-item:first-child { border-top: 1px solid var(--st-g200); }
.xp-faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--st-font);
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--st-black);
    text-align: right;
    direction: rtl;
    transition: color 0.2s;
}
.xp-faq-q:hover { color: var(--st-accent); }
.xp-faq-chevron {
    fill: var(--st-g400);
    flex-shrink: 0;
    transition: transform 0.3s, fill 0.2s;
}
.xp-faq-item.xp-open .xp-faq-q { color: var(--st-accent); font-weight: 600; }
.xp-faq-item.xp-open .xp-faq-chevron { transform: rotate(180deg); fill: var(--st-accent); }
.xp-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.xp-faq-a-inner {
    padding: 0 0 0.85rem;
    font-size: 0.8rem;
    color: var(--st-g700);
    line-height: 1.8;
}

/* ══════════════════════════════════════
   RELATED PRODUCTS
   ══════════════════════════════════════ */
.xp-related {
    background: var(--st-g50);
    padding: 2.5rem 2rem;
}
.xp-related-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.xp-related-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; }
.xp-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}
.xp-related-card {
    background: white;
    border-radius: 16px;
    padding: 1.1rem;
    border: 1px solid var(--st-g100);
    transition: border-color 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.xp-related-card:hover {
    border-color: var(--st-g200);
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.xp-related-provider {
    font-size: 0.63rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--st-g500);
    margin-bottom: 0.1rem;
}
.xp-related-name { font-size: 0.8rem; font-weight: 600; margin-bottom: 0.3rem; }
.xp-related-gb { text-align: center; padding: 0.4rem 0; }
.xp-related-gb strong { font-size: 2.2rem; font-weight: 700; letter-spacing: -1px; }
.xp-related-gb span { font-size: 0.85rem; color: var(--st-g500); }
.xp-related-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.6rem;
    border-top: 1px solid var(--st-g100);
    margin-top: 0.25rem;
}
.xp-related-price { font-size: 1rem; font-weight: 700; direction: ltr; unicode-bidi: embed; }
.xp-related-btn {
    background: var(--st-dark);
    color: white;
    padding: 0.38rem 0.8rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* ══════════════════════════════════════
   STICKY CTA BAR
   ══════════════════════════════════════ */
.xp-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--st-white);
    border-top: 1px solid var(--st-g200);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
    padding: 0.6rem 2rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}
.xp-sticky-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.xp-sticky-name { font-size: 0.82rem; font-weight: 600; }
.xp-sticky-price {
    font-size: 1.2rem;
    font-weight: 700;
    direction: ltr;
    unicode-bidi: embed;
}
.xp-sticky-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--st-accent);
    color: white;
    padding: 0.65rem 2.5rem;
    border-radius: 10px;
    font-family: var(--st-font);
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    white-space: nowrap;
}
.xp-sticky-cta:hover { background: var(--st-accent-hover); transform: translateY(-1px); }
.xp-sticky-form { display: inline; }

/* ══════════════════════════════════════
   HIDE DEFAULT WOOCOMMERCE ELEMENTS
   ══════════════════════════════════════ */
.xcom-esim-product .woocommerce-breadcrumb,
.xcom-esim-product .related.products,
.xcom-esim-product .woocommerce-tabs,
.xcom-esim-product .product_meta,
.xcom-esim-product .up-sells {
    display: none !important;
}

/* ══════════════════════════════════════
   RESPONSIVE — Product Page
   ══════════════════════════════════════ */
@media (max-width: 768px) {
    .xp-hero {
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.25rem 1.25rem;
    }
    .xp-hero-visual {
        width: 100%;
        position: static;
        order: -1;
    }
    .xp-visual-card { padding: 1.5rem; }
    .xp-visual-card img { width: 160px; }
    .xp-h1 { font-size: 1.35rem; }
    .xp-price { font-size: 1.75rem; }
    .xp-spec-label { width: 105px; }
    .xp-spec-table { font-size: 0.78rem; }
    .xp-features-grid { grid-template-columns: 1fr; }
    .xp-related-grid { grid-template-columns: 1fr; }
    .xp-cta { min-height: 52px; font-size: 1.05rem; }
    .xp-breadcrumbs,
    .xp-features,
    .xp-info-blocks,
    .xp-faq,
    .xp-related { padding-left: 1.25rem; padding-right: 1.25rem; }
    .xp-sticky-bar { padding: 0.5rem 1rem; gap: 0.6rem; }
    .xp-sticky-name { display: none; }
    .xp-sticky-cta { flex: 1; justify-content: center; padding: 0.7rem; }
}

@media print {
    .xp-sticky-bar { display: none !important; }
    .xp-info-content { max-height: none !important; }
    .xp-faq-a { max-height: none !important; }
}
