        /* Card: horizontal layout like homestay result cards */
        .esim-result-card {
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            background: #fff;
            margin-bottom: 18px;
            overflow: hidden;
            transition: box-shadow .2s;
            cursor: pointer;
        }

        .esim-result-card:hover {
            box-shadow: 0 4px 18px rgba(0, 0, 0, .10);
        }

        .esim-result-card-inner {
            display: flex;
            align-items: stretch;
        }

        .esim-card-img-col {
            width: 180px;
            min-height: 140px;
            flex-shrink: 0;
            background: linear-gradient(135deg, #1a9be6, #0dd3c5);
            overflow: hidden;
            position: relative;
        }

        .esim-card-img-col img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .esim-card-img-placeholder {
            width: 100%;
            height: 140px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, .65);
            font-size: 36px;
        }

        .esim-card-body-col {
            flex: 1;
            padding: 14px 18px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .esim-card-title {
            font-size: 16px;
            font-weight: 700;
            color: #222;
            margin-bottom: 3px;
        }

        .esim-card-location {
            font-size: 12px;
            color: #888;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .esim-card-location img {
            width: 22px;
            height: 15px;
            object-fit: cover;
            border-radius: 2px;
        }

        .esim-card-specs {
            display: flex;
            gap: 24px;
            margin-bottom: 12px;
        }

        .esim-spec-block {
            text-align: center;
        }

        .esim-spec-label {
            font-size: 10px;
            color: #aaa;
            text-transform: uppercase;
            letter-spacing: .5px;
            display: block;
            margin-bottom: 2px;
        }

        .esim-spec-val {
            font-size: 14px;
            font-weight: 700;
            color: #333;
        }

        .esim-card-price-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid #f0f0f0;
            padding-top: 12px;
            margin-top: auto;
        }

        .esim-card-price-row>div:last-child {
            display: flex !important;
            gap: 8px;
            opacity: 1 !important;
            visibility: visible !important;
        }

        .esim-btn-view,
        .esim-btn-enquire {
            display: inline-block;
            padding: 8px 14px;
            border-radius: 4px;
            font-size: 13px;
            font-weight: 600;
            text-align: center;
            transition: all 0.2s ease;
        }

        .esim-price-starting {
            font-size: 11px;
            color: #aaa;
        }

        .esim-price-amount {
            font-size: 22px;
            font-weight: 700;
            color: #333;
            line-height: 1.1;
        }

        .esim-price-currency {
            font-size: 11px;
            color: #aaa;
            font-weight: 400;
        }

        .esim-btn-view {
            background: #f59e00;
            color: #fff;
            border: none;
            border-radius: 4px;
            padding: 8px 18px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: background .2s;
            white-space: nowrap;
        }

        .esim-btn-view:hover {
            background: #d98c00;
            color: #fff;
            text-decoration: none;
        }

        .esim-btn-enquire {
            background: #fff;
            color: #333;
            border: 1.5px solid #ccc;
            border-radius: 4px;
            padding: 7px 14px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            margin-left: 8px;
            transition: all .2s;
            white-space: nowrap;
        }

        .esim-btn-enquire:hover {
            border-color: #1a9be6;
            color: #1a9be6;
            text-decoration: none;
        }

        /* Pagination */
        .esim-pagination {
            margin-top: 20px;
            text-align: center;
        }

        .esim-page-btn {
            background: #fff;
            border: 1.5px solid #ddd;
            border-radius: 4px;
            padding: 5px 12px;
            margin: 0 2px;
            cursor: pointer;
            font-size: 13px;
            transition: all .2s;
        }

        .esim-page-btn:hover,
        .esim-page-btn.active {
            background: #1a9be6;
            border-color: #1a9be6;
            color: #fff;
        }

        /* Duration chips inside sidebar */
        .esim-dur-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            padding: 4px 0 6px;
        }

        .esim-dur-chip {
            border: 1.5px solid #ddd;
            border-radius: 20px;
            padding: 3px 11px;
            font-size: 12px;
            font-weight: 500;
            color: #666;
            cursor: pointer;
            background: #fff;
            transition: all .2s;
        }

        .esim-dur-chip:hover {
            border-color: #1a9be6;
            color: #1a9be6;
        }

        .esim-dur-chip.active {
            background: #1a9be6;
            border-color: #1a9be6;
            color: #fff;
        }

        /* State boxes */
        .esim-state-box {
            background: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            padding: 50px 20px;
            text-align: center;
            color: #aaa;
        }

        .esim-state-box i {
            font-size: 30px;
            display: block;
            margin-bottom: 12px;
            color: #1a9be6;
        }

        /* Results count */
        .esim-results-count {
            font-size: 14px;
            color: #555;
            margin-bottom: 14px;
            font-weight: 500;
        }

        @media (max-width: 767px) {
            .esim-card-img-col {
                width: 100%;
                min-height: 160px;
            }

            .esim-result-card-inner {
                flex-direction: column;
            }
        }

        .esim-page-btn {
            background: #fff;
            border: 1.5px solid #ddd;
            border-radius: 4px;
            padding: 5px 12px;
            margin: 0 2px;
            cursor: pointer;
            font-size: 13px;
            color: #333 !important;
            /* ADD THIS */
            transition: all .2s;
        }


/* ---- Search Box Wrapper ---- */
.esim-search-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 24px 28px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 1100px;
    margin: 0 auto;
}

/* ---- Search Bar ---- */
.esim-search-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.esim-search-bar {
    position: relative;
    /* needed so dropdown positions correctly */
}

.esim-search-input-row {
    display: flex;
    align-items: center;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fafafa;
}

.esim-search-icon {
    padding: 0 14px;
    color: #1a9be6;
    font-size: 16px;
}

.esim-search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 0;
    font-size: 15px;
    color: #333;
    outline: none;
}

.esim-search-btn {
    background: #1a9be6;
    color: #fff;
    border: none;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background 0.2s;
    white-space: nowrap;
}

.esim-search-btn:hover {
    background: #1586cc;
}

/* ---- Autocomplete Suggestions ---- */
.esim-suggestions-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    z-index: 9999;
    max-height: 260px;
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.esim-suggestion-item {
    padding: 10px 16px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #f5f5f5;
    color: #2d3748;
    transition: background .12s;
}

.esim-suggestion-item:last-child {
    border-bottom: none;
}

.esim-suggestion-item:hover {
    background: #f0f8ff;
    color: #1a9be6;
}

.esim-suggestion-item img {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

.esim-suggestion-type {
    margin-left: auto;
    font-size: 10px;
    color: #aaa;
    background: #f5f5f5;
    padding: 2px 7px;
    border-radius: 10px;
    white-space: nowrap;
}

.esim-search-error {
    color: #e8472a;
    font-size: 12px;
    margin-top: 6px;
    font-weight: 500;
    padding: 4px 2px;
}

/* ---- Tabs ---- */
.esim-tabs-row {
    display: flex;
    gap: 0;
    margin: 24px 0 20px;
    background: #f5f5f5;
    border-radius: 50px;
    padding: 4px;
}

.esim-tab-btn {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    color: #777;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s;
}

.esim-tab-btn.active {
    background: #1a9be6;
    color: #fff;
    box-shadow: 0 2px 8px rgba(26, 155, 230, 0.3);
}

.esim-tab-btn:hover:not(.active) {
    color: #1a9be6;
}

/* ---- Cards Grid ---- */
.esim-tab-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

@media (max-width: 992px) {
    .esim-tab-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .esim-tab-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .esim-tab-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ---- Individual Card ---- */
.esim-dest-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.esim-dest-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.13);
    text-decoration: none;
    color: inherit;
}

.esim-dest-card-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, #1a9be6, #0dd3c5);
}

.esim-dest-card-img-placeholder {
    width: 100%;
    height: 140px;
    background: linear-gradient(135deg, #1a9be6, #0dd3c5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 32px;
}

.esim-dest-card-body {
    padding: 12px 14px 14px;
}

.esim-dest-starting {
    font-size: 10px;
    color: #555;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.esim-dest-meta {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}

.esim-dest-price {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.esim-dest-specs-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.esim-dest-spec {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.esim-dest-spec-val {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
}

.esim-dest-spec-label {
    font-size: 10px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-weight: 600;
}

.esim-dest-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    border-top: 1px solid #f0f0f0;
    padding-top: 10px;
}

.esim-dest-country {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 55%;
}

.esim-dest-country img {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

.esim-dest-choose-btn {
    background: #1a9be6;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.esim-dest-choose-btn:hover {
    background: #1586cc;
}

/* ---- States ---- */
.esim-loading-state,
.esim-empty-state {
    grid-column: 1 / -1;
    padding: 50px 20px;
    text-align: center;
    color: #555;
    font-size: 15px;
}

.esim-loading-state i,
.esim-empty-state i {
    display: block;
    margin-bottom: 12px;
    font-size: 28px;
    color: #1a9be6;
}

.confirmed-page {
            background: #f5f5f5;
            padding: 40px 0 60px;
        }
    
        .confirmed-box {
            background: #fff;
            border-radius: 10px;
            padding: 30px;
            border: 1px solid #e0e0e0;
            margin-bottom: 20px;
        }
    
        .confirmed-hero {
            text-align: center;
            padding: 20px 0 30px;
        }
    
        .confirmed-hero .tick {
            width: 70px;
            height: 70px;
            background: #e8f8f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
        }
    
        .confirmed-hero .tick i {
            font-size: 32px;
            color: #27ae60;
        }
    
        .confirmed-hero h2 {
            color: #27ae60;
            font-weight: 700;
            margin-bottom: 6px;
        }
    
        .confirmed-hero p {
            color: #888;
            font-size: 14px;
        }
    
        .ref-badge {
            display: inline-block;
            background: #f0f8ff;
            border: 1px solid #1a9be6;
            border-radius: 6px;
            padding: 8px 20px;
            font-size: 14px;
            font-weight: 600;
            color: #1a9be6;
            margin-top: 10px;
        }
    
        .order-detail-row {
            display: flex;
            justify-content: space-between;
            padding: 9px 0;
            border-bottom: 1px solid #f5f5f5;
            font-size: 14px;
        }
    
        .order-detail-row:last-child {
            border-bottom: none;
        }
    
        .order-detail-row .lbl {
            color: #888;
        }
    
        .order-detail-row .val {
            font-weight: 600;
            color: #333;
        }
    
        .qr-section {
            text-align: center;
            padding: 20px 0;
        }
    
        .qr-section img {
            max-width: 200px;
            border: 3px solid #e0e0e0;
            border-radius: 8px;
            padding: 8px;
        }
    
        .qr-section .lpa-code {
            background: #f5f5f5;
            border-radius: 6px;
            padding: 10px 16px;
            font-size: 12px;
            word-break: break-all;
            margin-top: 12px;
            color: #555;
            font-family: monospace;
        }
    
        .steps-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
    
        .steps-list li {
            display: flex;
            gap: 14px;
            padding: 12px 0;
            border-bottom: 1px solid #f5f5f5;
            font-size: 14px;
        }
    
        .steps-list li:last-child {
            border-bottom: none;
        }
    
        .step-num {
            width: 28px;
            height: 28px;
            background: #1a9be6;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            flex-shrink: 0;
        }
    
        .btn-back {
            background: #1a9be6;
            color: #fff;
            border: none;
            border-radius: 6px;
            padding: 12px 28px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            margin-top: 10px;
        }
    
        .btn-back:hover {
            background: #1586cc;
            color: #fff;
            text-decoration: none;
        }
    
        .pending-notice {
            background: #fff8e1;
            border: 1px solid #f59e00;
            border-radius: 6px;
            padding: 14px 16px;
            font-size: 13px;
            color: #7a5200;
        }
    
.esim-checkout-page {
            background: #f5f5f5;
            padding: 30px 0 50px;
            min-height: 70vh;
        }
    
        .checkout-box {
            background: #fff;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
            padding: 24px;
            margin-bottom: 20px;
        }
    
        .checkout-box h4 {
            font-weight: 700;
            color: #222;
            margin-bottom: 18px;
            padding-bottom: 12px;
            border-bottom: 1px solid #f0f0f0;
        }
    
        .order-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 6px 0;
            border-bottom: 1px solid #f5f7fa;
            font-size: 14px;
            gap: 12px;
        }
    
        .order-row:last-child {
            border-bottom: none;
        }
    
        .order-row .label {
            color: #888;
            font-weight: 400;
            min-width: 80px;
        }
    
        .order-row .value {
            font-weight: 600;
            color: #333;
            text-align: right;
        }
    
        .total-row {
            display: flex;
            justify-content: space-between;
            padding: 14px 0 0;
            margin-top: 10px;
            border-top: 2px solid #eee;
        }
    
        .total-row .label {
            font-size: 16px;
            font-weight: 700;
            color: #333;
        }
    
        .total-row .value {
            font-size: 22px;
            font-weight: 700;
            color: #1a9be6;
        }
    
        .btn-pay {
            background: #f59e00;
            color: #fff;
            border: none;
            border-radius: 6px;
            padding: 14px 0;
            font-size: 16px;
            font-weight: 700;
            width: 100%;
            cursor: pointer;
            transition: background .2s;
            margin-top: 16px;
        }
    
        .btn-pay:hover {
            background: #d98c00;
        }
    
        .secure-badges {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 14px;
            font-size: 12px;
            color: #aaa;
        }
    
        .secure-badges span {
            display: flex;
            align-items: center;
            gap: 4px;
        }
    
        .plan-badge {
            display: inline-block;
            background: #e8f4fd;
            color: #1a9be6;
            border-radius: 20px;
            padding: 3px 12px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 10px;
        }
    
    
    
        /* ── Rayds Design Tokens ───────────────────────────── */
        :root {
            --navy: #0d1f3c;
            --navy-mid: #1a3158;
            --navy-soft: #243b55;
            --orange: #f97316;
            --orange-lt: #fb923c;
            --sky: #38bdf8;
            --white: #ffffff;
            --surface: #f5f7fa;
            --border: #e2e8f0;
            --text-main: #0d1f3c;
            --text-mute: #64748b;
            --text-soft: #94a3b8;
            --radius-lg: 16px;
            --radius-md: 10px;
            --radius-sm: 7px;
            --shadow-sm: 0 1px 4px rgba(13, 31, 60, .07);
            --shadow-md: 0 4px 20px rgba(13, 31, 60, .10);
            --shadow-lg: 0 8px 40px rgba(13, 31, 60, .14);
        }
    
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
    
        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: var(--surface);
            color: var(--text-main);
            min-height: 100vh;
        }
    
        #page-wrapper>.rd-breadcrumb {
            margin-top: 20px;
        }
    
        /* ── Breadcrumb ───────────────────────────────────── */
        .rd-breadcrumb {
            background: var(--navy);
            padding: 25px 32px 14px 32px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            display: flex;
            align-items: center;
            gap: 8px;
            z-index: 10;
        }
    
        .rd-breadcrumb a {
            color: rgba(255, 255, 255, .7);
            text-decoration: none;
        }
    
        .rd-breadcrumb a:hover {
            color: var(--orange);
        }
    
        .rd-breadcrumb .sep {
            color: rgba(255, 255, 255, .3);
        }
    
        .rd-breadcrumb .current {
            color: var(--white);
            font-weight: 600;
        }
    
        /* ── Hero Banner ──────────────────────────────────── */
        .rd-hero {
            background: linear-gradient(120deg, var(--navy) 0%, var(--navy-mid) 60%, #1e4080 100%);
            padding: 36px 32px 100px;
            position: relative;
            overflow: hidden;
        }
    
        .rd-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
    
        .rd-hero-inner {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 24px;
        }
    
        .rd-hero-left {}
    
        .rd-hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(249, 115, 22, .18);
            border: 1px solid rgba(249, 115, 22, .35);
            color: var(--orange-lt);
            font-size: 11.5px;
            font-weight: 700;
            letter-spacing: .06em;
            text-transform: uppercase;
            padding: 4px 12px;
            border-radius: 20px;
            margin-bottom: 14px;
        }
    
        .rd-hero-tag i {
            font-size: 11px;
        }
    
        .rd-hero h1 {
            font-size: 30px;
            font-weight: 800;
            color: var(--white);
            line-height: 1.2;
            margin-bottom: 12px;
        }
    
        .rd-hero h1 span {
            color: var(--orange);
        }
    
        .rd-hero-pills {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 4px;
        }
    
        .rd-hero-pill {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12.5px;
            color: rgba(255, 255, 255, .75);
        }
    
        .rd-hero-pill i {
            color: var(--sky);
            font-size: 13px;
        }
    
        .rd-hero-right {
            text-align: right;
            flex-shrink: 0;
        }
    
        .rd-hero-right .from-label {
            font-size: 11px;
            color: rgba(255, 255, 255, .5);
            text-transform: uppercase;
            letter-spacing: .08em;
            margin-bottom: 2px;
        }
    
        .rd-hero-right .from-price {
            font-size: 36px;
            font-weight: 800;
            color: var(--white);
            line-height: 1;
        }
    
        .rd-hero-right .from-price small {
            font-size: 18px;
            font-weight: 600;
            color: var(--orange);
            margin-right: 2px;
        }
    
        /* ── Main Layout ─────────────────────────────────── */
        .rd-main {
            max-width: 1200px;
            margin: -40px auto 40px;
            padding: 0 24px;
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 20px;
            align-items: start;
            position: relative;
            z-index: 10;
        }
    
        /* ── Cards ───────────────────────────────────────── */
        .rd-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            overflow: hidden;
        }
    
        .rd-card-header {
            padding: 20px 24px 16px;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: 10px;
        }
    
        .rd-card-header .icon-wrap {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            flex-shrink: 0;
            background: linear-gradient(135deg, var(--orange) 0%, var(--orange-lt) 100%);
            border-radius: 8px;
            color: #fff;
        }
    
        .rd-card-header h3 {
            margin: 0;
            font-size: 15px;
            font-weight: 700;
            color: var(--text-main);
            line-height: 1;
        }
    
        .rd-card-body {
            padding: 22px 24px;
        }
    
        /* ── Section Label ───────────────────────────────── */
        .rd-section-label {
            font-size: 11.5px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .08em;
            color: var(--text-soft);
            margin-bottom: 12px;
            margin-top: 20px;
        }
    
        .rd-section-label:first-child {
            margin-top: 0;
        }
    
        /* ── Option Chips ─────────────────────────────────── */
        .rd-chip-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 4px;
        }
    
        .rd-chip {
            border: 1.5px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 8px 18px;
            background: var(--surface);
            color: var(--text-mute);
            font-size: 13.5px;
            font-weight: 600;
            cursor: pointer;
            transition: all .17s ease;
            position: relative;
            white-space: nowrap;
        }
    
        .rd-chip:hover {
            border-color: var(--orange);
            color: var(--orange);
            background: #fff7ed;
        }
    
        .rd-chip.active {
            border-color: var(--navy);
            background: var(--navy);
            color: var(--white);
            box-shadow: 0 2px 10px rgba(13, 31, 60, .2);
        }
    
        .rd-chip.active::after {
            content: '✓';
            position: absolute;
            top: -6px;
            right: -6px;
            width: 16px;
            height: 16px;
            background: var(--orange);
            border-radius: 50%;
            font-size: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            line-height: 16px;
            text-align: center;
        }
    
        /* ── Package Details ─────────────────────────────── */
        .rd-pkg-details {
            margin-top: 20px;
        }
    
        .rd-pkg-row {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 10px 0;
            border-bottom: 1px dashed var(--border);
            font-size: 13.5px;
            color: var(--text-mute);
        }
    
        .rd-pkg-row:last-child {
            border-bottom: none;
        }
    
        .rd-pkg-row i {
            color: var(--navy);
            margin-top: 1px;
            flex-shrink: 0;
            font-size: 14px;
        }
    
        /* ── Alert ───────────────────────────────────────── */
        .rd-alert {
            background: #fff7ed;
            border: 1px solid #fed7aa;
            border-left: 4px solid var(--orange);
            border-radius: var(--radius-sm);
            padding: 12px 14px;
            font-size: 12.5px;
            color: #9a3412;
            display: flex;
            align-items: flex-start;
            gap: 8px;
            margin-top: 16px;
        }
    
        .rd-alert i {
            color: var(--orange);
            font-size: 14px;
            flex-shrink: 0;
            margin-top: 1px;
        }
    
        /* ── Right Sidebar ───────────────────────────────── */
        .rd-sidebar {}
    
        .rd-summary-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-md);
            overflow: hidden;
            position: sticky;
            top: 20px;
        }
    
        .rd-summary-top {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
            padding: 20px 22px;
        }
    
        .rd-summary-top .s-label {
            font-size: 11px;
            font-weight: 700;
            color: rgba(255, 255, 255, .5);
            text-transform: uppercase;
            letter-spacing: .08em;
            margin-bottom: 4px;
        }
    
        .rd-summary-top .s-country {
            font-size: 17px;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 14px;
        }
    
        .rd-summary-badge {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            background: rgba(255, 255, 255, .1);
            border: 1px solid rgba(255, 255, 255, .15);
            border-radius: 20px;
            padding: 3px 10px;
            font-size: 11.5px;
            color: rgba(255, 255, 255, .8);
        }
    
        .rd-summary-body {
            padding: 20px 22px;
        }
    
        .rd-summary-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            border-bottom: 1px solid var(--border);
            font-size: 13px;
        }
    
        .rd-summary-row:last-child {
            border-bottom: none;
        }
    
        .rd-summary-row .s-key {
            color: var(--text-mute);
        }
    
        .rd-summary-row .s-val {
            font-weight: 700;
            color: var(--text-main);
        }
    
        .rd-summary-row .s-val.highlight {
            color: var(--orange);
            font-size: 15px;
        }
    
        /* Qty */
        .rd-qty-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 14px 22px;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
    
        .rd-qty-label {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-main);
        }
    
        .rd-qty-ctrl {
            display: flex;
            align-items: center;
            border: 1.5px solid var(--border);
            border-radius: 8px;
            overflow: hidden;
        }
    
        .rd-qty-btn {
            width: 34px;
            height: 34px;
            background: var(--surface);
            border: none;
            font-size: 16px;
            cursor: pointer;
            color: var(--text-main);
            font-weight: 700;
            transition: background .15s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    
        .rd-qty-btn:hover {
            background: #e2e8f0;
        }
    
        .rd-qty-num {
            width: 38px;
            height: 34px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            font-weight: 800;
            border-left: 1.5px solid var(--border);
            border-right: 1.5px solid var(--border);
            color: var(--text-main);
        }
    
        /* Total + CTA */
        .rd-total-area {
            padding: 18px 22px 22px;
        }
    
        .rd-total-row {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            margin-bottom: 14px;
        }
    
        .rd-total-row .t-label {
            font-size: 13px;
            color: var(--text-mute);
            font-weight: 500;
        }
    
        .rd-total-row .t-amount {
            font-size: 28px;
            font-weight: 800;
            color: var(--text-main);
        }
    
        .rd-total-row .t-amount small {
            font-size: 16px;
            font-weight: 600;
            color: var(--orange);
        }
    
        .btn-buy {
            width: 100%;
            background: linear-gradient(135deg, var(--orange) 0%, #ea6a00 100%);
            color: var(--white);
            border: none;
            border-radius: var(--radius-md);
            padding: 14px;
            font-size: 15px;
            font-weight: 800;
            cursor: pointer;
            letter-spacing: .02em;
            transition: all .2s ease;
            box-shadow: 0 4px 14px rgba(249, 115, 22, .4);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
    
        .btn-buy:hover:not(:disabled) {
            background: linear-gradient(135deg, #ea6a00 0%, var(--orange) 100%);
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(249, 115, 22, .45);
        }
    
        .btn-buy:disabled {
            background: var(--border);
            color: var(--text-soft);
            cursor: not-allowed;
            box-shadow: none;
            transform: none;
        }
    
        .btn-buy i {
            font-size: 14px;
        }
    
        /* Trust badges */
        .rd-trust {
            display: flex;
            justify-content: center;
            gap: 16px;
            padding: 12px 22px;
            border-top: 1px solid var(--border);
        }
    
        .rd-trust-item {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 11px;
            color: var(--text-soft);
            font-weight: 500;
        }
    
        .rd-trust-item i {
            color: var(--navy);
            font-size: 12px;
        }
    
        /* ── Loading ─────────────────────────────────────── */
        .rd-loading {
            text-align: center;
            padding: 80px 20px;
            color: var(--text-soft);
        }
    
        .rd-loading .spinner {
            width: 42px;
            height: 42px;
            border: 3px solid var(--border);
            border-top-color: var(--orange);
            border-radius: 50%;
            animation: spin .7s linear infinite;
            margin: 0 auto 16px;
        }
    
        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }
    
        .rd-loading p {
            font-size: 14px;
            color: var(--text-mute);
        }
    
        /* ── Placeholder state ───────────────────────────── */
        .rd-placeholder {
            text-align: center;
            padding: 40px 20px;
            color: var(--text-soft);
            font-size: 13.5px;
        }
    
        .rd-placeholder i {
            font-size: 32px;
            color: var(--border);
            margin-bottom: 10px;
            display: block;
        }
    
        /* ── Responsive ──────────────────────────────────── */
        @media (max-width: 960px) {
            .rd-main {
                grid-template-columns: 1fr;
            }
    
            .rd-summary-card {
                position: static;
            }
    
            .rd-hero {
                padding: 28px 20px 40px;
            }
    
            .rd-hero h1 {
                font-size: 22px;
            }
    
            .rd-hero-right .from-price {
                font-size: 28px;
            }
    
            .rd-main {
                padding: 0 16px;
                margin-top: -16px;
            }
        }
    
        @media (max-width: 600px) {
            .rd-hero-inner {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }
    
            .rd-hero-right {
                text-align: left;
            }
    
            .rd-breadcrumb {
                padding: 10px 16px;
            }
        }
    
    