/* ═══════════════════════════════════════════════════
   BBF RENT LANDING — Premium Landing Page
   ═══════════════════════════════════════════════════ */
:root {
    --brl-pink: #d97792;
    --brl-pink-dark: #c86581;
    --brl-dark: #3d2b2f;
    --brl-text: #6f5159;
    --brl-muted: #8a6870;
    --brl-bg: #fffafc;
    --brl-radius: 2rem;
    --brl-shadow: 0 10px 40px rgba(15, 23, 42, .06);
    --brl-shadow-lg: 0 20px 60px rgba(15, 23, 42, .10);
}

.brl-wrap {
    background: var(--brl-bg);
    color: var(--brl-dark);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
}

.brl-wrap *,
.brl-wrap *::before,
.brl-wrap *::after {
    box-sizing: border-box;
}

.brl-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ── NAV ────────────────────────────────────── */
.brl-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid #fce4ec;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.brl-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px;
    max-width: 1280px;
    margin: 0 auto;
}

.brl-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brl-logo-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #fce4ec;
    color: var(--brl-pink);
    font-weight: 900;
    font-size: 15px;
}

.brl-logo-text b {
    display: block;
    font-size: 17px;
    letter-spacing: -.3px;
}

.brl-logo-text small {
    font-size: 11px;
    color: var(--brl-muted);
}

.brl-nav-links {
    display: flex;
    gap: 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--brl-text);
}

.brl-nav-links a {
    color: inherit;
    text-decoration: none;
    transition: color .15s;
}

.brl-nav-links a:hover {
    color: var(--brl-pink);
}

.brl-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 999px;
    background: var(--brl-pink);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s;
    white-space: nowrap;
}

.brl-btn:hover {
    background: var(--brl-pink-dark);
    color: #fff;
}

.brl-btn--dark {
    background: var(--brl-dark);
}

.brl-btn--dark:hover {
    background: #2a1d20;
}

.brl-btn--outline {
    background: transparent;
    border: 2px solid var(--brl-pink);
    color: var(--brl-pink);
}

.brl-btn--outline:hover {
    background: var(--brl-pink);
    color: #fff;
}

.brl-btn--white {
    background: #fff;
    color: var(--brl-pink);
}

.brl-btn--white:hover {
    background: #fff5f7;
}

.brl-btn--lg {
    padding: 14px 32px;
    font-size: 16px;
}

@media(max-width:768px) {
    .brl-nav-links {
        display: none;
    }
}

/* ── HERO ───────────────────────────────────── */
.brl-hero {
    position: relative;
    overflow: hidden;
    padding: 56px 0 64px;
}

.brl-hero-grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

@media(min-width:768px) {
    .brl-hero-grid {
        grid-template-columns: 1.05fr .95fr;
    }
}

.brl-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: var(--brl-pink);
    box-shadow: var(--brl-shadow);
    margin-bottom: 20px;
}

.brl-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin: 0 0 20px;
}

.brl-hero-desc {
    font-size: 17px;
    line-height: 1.8;
    color: var(--brl-text);
    max-width: 560px;
    margin-bottom: 28px;
}

.brl-hero-tags {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 480px;
}

@media(min-width:640px) {
    .brl-hero-tags {
        grid-template-columns: repeat(4, 1fr);
        max-width: 640px;
    }
}

.brl-hero-tag {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    font-size: 13px;
    font-weight: 800;
    box-shadow: var(--brl-shadow);
}

.brl-hero-tag span {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
}

/* Hero Card */
.brl-hero-card {
    background: #fff;
    border-radius: var(--brl-radius);
    box-shadow: var(--brl-shadow-lg);
    padding: 28px;
}

.brl-hero-card-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--brl-pink);
}

.brl-hero-card-title {
    font-size: 22px;
    font-weight: 900;
    margin: 4px 0 20px;
}

.brl-card-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}

.brl-card-box {
    border-radius: 20px;
    padding: 16px;
}

.brl-card-box--pink {
    background: #fff5f7;
}

.brl-card-box--rose {
    background: #fff1f2;
}

.brl-card-box--dark {
    background: var(--brl-dark);
    color: #fff;
    grid-column: 1/-1;
    border-radius: 20px;
    padding: 20px;
    margin-top: 4px;
}

.brl-card-box small {
    font-size: 12px;
    font-weight: 700;
    color: var(--brl-muted);
    display: block;
}

.brl-card-box--dark small {
    color: #f9a8c9;
}

.brl-card-box b {
    font-size: 20px;
    display: block;
    margin-top: 4px;
}

.brl-card-box--dark b {
    font-size: 22px;
}

.brl-card-box--dark .brl-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, .75);
    margin-top: 8px;
}

/* ── SECTION HEADERS ────────────────────────── */
.brl-section {
    padding: 48px 0;
}

.brl-section-header {
    text-align: center;
    margin-bottom: 36px;
}

.brl-section-header .brl-label {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .25em;
    color: var(--brl-pink);
    margin-bottom: 8px;
}

.brl-section-header h2 {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 900;
    margin: 0 0 12px;
}

.brl-section-header p {
    font-size: 16px;
    color: var(--brl-text);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ── FLOW PICKER (4 columns) ───────────────── */
.brl-flow {
    background: #fff;
    border: 1px solid #fce4ec;
    border-radius: 2.5rem;
    padding: 28px;
    box-shadow: var(--brl-shadow);
}

.brl-flow-grid {
    display: grid;
    gap: 16px;
}

@media(min-width:1024px) {
    .brl-flow-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media(min-width:640px) and (max-width:1023px) {
    .brl-flow-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.brl-flow-col {
    border-radius: var(--brl-radius);
    padding: 20px;
}

.brl-flow-col--pink {
    background: #fff5f7;
}

.brl-flow-col--rose {
    background: #fff1f2;
}

.brl-flow-col--amber {
    background: #fffbeb;
}

.brl-flow-col--fuchsia {
    background: #fdf4ff;
}

.brl-flow-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 900;
    margin-bottom: 16px;
}

.brl-flow-title span {
    color: var(--brl-pink);
}

.brl-flow-opts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.brl-flow-opts--list {
    grid-template-columns: 1fr;
}

/* Option buttons */
.brl-opt {
    border: 0;
    background: #fff;
    border-radius: 16px;
    padding: 12px;
    text-align: left;
    cursor: pointer;
    transition: all .15s;
    min-height: 70px;
    position: relative;
}

.brl-opt:hover {
    background: #fce4ec;
}

.brl-opt.active {
    background: var(--brl-pink);
    color: #fff;
    box-shadow: var(--brl-shadow);
}

.brl-opt.active--dark {
    background: var(--brl-dark);
    color: #fff;
}

.brl-opt b {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.brl-opt .brl-opt-desc {
    font-size: 11px;
    margin-top: 4px;
    line-height: 1.5;
    opacity: .75;
}

.brl-opt.active .brl-opt-desc {
    opacity: .85;
}

.brl-opt .brl-badge-best {
    position: absolute;
    right: 8px;
    top: 8px;
    background: #fff;
    color: var(--brl-pink);
    font-size: 10px;
    font-weight: 900;
    padding: 3px 8px;
    border-radius: 999px;
}

/* Flow summary bar */
.brl-flow-summary {
    margin-top: 20px;
    background: var(--brl-dark);
    border-radius: var(--brl-radius);
    padding: 24px;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brl-flow-summary-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.brl-flow-chip {
    background: rgba(255, 255, 255, .1);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
    border: 0;
    color: #fff;
    cursor: pointer;
    transition: background .15s;
}

.brl-flow-chip:hover {
    background: rgba(255, 255, 255, .2);
}

/* ── PRODUCT GRID (from [myshop_filter]) ───── */
.brl-products {
    padding: 48px 0;
}

.brl-products-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
}

@media(min-width:768px) {
    .brl-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(min-width:1100px) {
    .brl-products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ── RECOMMEND SECTION ─────────────────────── */
.brl-recommend {
    display: grid;
    gap: 24px;
}

@media(min-width:768px) {
    .brl-recommend {
        grid-template-columns: 1.15fr .85fr;
    }
}

.brl-recommend-main {
    min-width: 0;
}

.brl-recommend-dark {
    background: var(--brl-dark);
    color: #fff;
    border-radius: var(--brl-radius);
    box-shadow: var(--brl-shadow);
    padding: 28px;
    position: sticky;
    top: 100px;
    align-self: start;
}

/* ── MATCH BADGE ───────────────────────────── */
.brl-match-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.brl-match-badge--exact {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #15803d;
}

.brl-match-badge--age {
    background: linear-gradient(135deg, #fff7ed, #fed7aa);
    color: #c2410c;
}

.brl-match-badge--random {
    background: linear-gradient(135deg, #f0f9ff, #bae6fd);
    color: #0369a1;
}

/* ── PRODUCT GRID ──────────────────────────── */
.brl-product-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
}

@media(min-width:640px) {
    .brl-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width:900px) {
    .brl-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ── PRODUCT CARD ──────────────────────────── */
.brl-pcard {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--brl-shadow);
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
}

.brl-pcard:hover {
    transform: translateY(-4px);
    box-shadow: var(--brl-shadow-lg);
}

.brl-pcard-img-wrap {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #fff5f7;
}

.brl-pcard-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.brl-pcard:hover .brl-pcard-img-wrap img {
    transform: scale(1.06);
}

.brl-pcard-skill {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--brl-pink);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 999px;
}

.brl-pcard-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px;
}

.brl-pcard-name {
    font-size: 14px;
    font-weight: 800;
    color: var(--brl-dark);
    text-decoration: none;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.brl-pcard-name:hover {
    color: var(--brl-pink);
}

.brl-pcard-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.brl-pcard-age {
    font-size: 11px;
    font-weight: 700;
    color: var(--brl-muted);
    background: #fff5f7;
    padding: 2px 8px;
    border-radius: 6px;
}

.brl-pcard-stock {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
}

.brl-pcard-stock.in-stock {
    background: #dcfce7;
    color: #15803d;
}

.brl-pcard-stock.out-stock {
    background: #fef2f2;
    color: #dc2626;
}

.brl-pcard-price {
    font-size: 17px;
    font-weight: 900;
    color: var(--brl-pink);
    margin-top: auto;
}

.brl-pcard-btn {
    display: block;
    text-align: center;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: all .15s;
    margin-top: 8px;
    border: 0;
    cursor: pointer;
    background: linear-gradient(135deg, var(--brl-pink), #f472b6);
    color: #fff;
}

.brl-pcard-btn:hover {
    background: linear-gradient(135deg, var(--brl-pink-dark), var(--brl-pink));
    color: #fff;
    transform: translateY(-1px);
}

.brl-pcard-btn--disabled {
    background: #e2e8f0 !important;
    color: #94a3b8 !important;
    cursor: not-allowed;
    pointer-events: none;
}

/* ── SKELETON LOADING ──────────────────────── */
@keyframes brl-shimmer {
    0% {
        background-position: -400px 0;
    }

    100% {
        background-position: 400px 0;
    }
}

.brl-product-skeleton {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--brl-shadow);
    padding: 0 0 16px;
}

.brl-skel-img {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(90deg, #fff5f7 25%, #fce4ec 50%, #fff5f7 75%);
    background-size: 800px 100%;
    animation: brl-shimmer 1.5s infinite linear;
}

.brl-skel-line {
    height: 14px;
    border-radius: 7px;
    margin: 10px 16px 0;
    background: linear-gradient(90deg, #f8f0f2 25%, #fce4ec 50%, #f8f0f2 75%);
    background-size: 800px 100%;
    animation: brl-shimmer 1.5s infinite linear;
}

.brl-skel-line.w80 {
    width: 80%;
}

.brl-skel-line.w50 {
    width: 50%;
    height: 12px;
}

.brl-skel-line.w30 {
    width: 30%;
    height: 12px;
}

/* ── COMBO SUMMARY ─────────────────────────── */
.brl-combo-summary {
    background: rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 16px;
    margin-top: 20px;
}

.brl-combo-label {
    font-size: 13px;
    color: #f9a8c9;
    font-weight: 700;
}

.brl-combo-count {
    font-size: 20px;
    font-weight: 900;
    margin-top: 6px;
}

/* ── NO PRODUCTS STATE ─────────────────────── */
.brl-no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px 20px;
}

.brl-no-products-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.brl-no-products-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--brl-dark);
}

.brl-no-products-hint {
    font-size: 14px;
    color: var(--brl-muted);
    margin-top: 8px;
}

/* ── LOAD MORE ──────────────────────────────── */
.brl-load-more {
    text-align: center;
    margin-top: 24px;
}

/* ── CHIPS ──────────────────────────────────── */
.brl-chip {
    background: rgba(255, 255, 255, .1);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
    border: 0;
    color: #fff;
    cursor: pointer;
    transition: background .15s;
}

.brl-chip:hover {
    background: rgba(255, 255, 255, .2);
}

/* ── INFO ROWS (dark sidebar) ──────────────── */
.brl-info-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding: 12px 0;
    font-size: 14px;
}

.brl-info-row span {
    color: rgba(255, 255, 255, .6);
}

.brl-info-row b {
    color: #fff;
}

.brl-info-level {
    background: rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 16px;
    margin-top: 16px;
}

.brl-info-level-label {
    font-size: 13px;
    color: #f9a8c9;
}

.brl-info-level-name {
    font-size: 24px;
    font-weight: 900;
    margin-top: 4px;
}

.brl-info-level-gift {
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
    margin-top: 4px;
}

/* ── MEMBER JOURNEY ────────────────────────── */
.brl-member-progress {
    background: #fff;
    border-radius: var(--brl-radius);
    box-shadow: var(--brl-shadow);
    padding: 24px 28px;
    margin-bottom: 24px;
}

.brl-member-bar {
    height: 16px;
    background: #fff5f7;
    border-radius: 999px;
    overflow: hidden;
    margin-top: 12px;
}

.brl-member-bar-fill {
    height: 100%;
    background: var(--brl-pink);
    border-radius: 999px;
    transition: width .5s ease;
}

.brl-member-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
}

@media(min-width:768px) {
    .brl-member-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.brl-member-card {
    border-radius: 1.5rem;
    padding: 20px;
    box-shadow: var(--brl-shadow);
}

.brl-member-card--active {
    background: var(--brl-dark);
    color: #fff;
}

.brl-member-card--inactive {
    background: #fff;
}

.brl-member-card .brl-member-icon {
    font-size: 28px;
}

.brl-member-card .brl-member-milestone {
    font-size: 12px;
    font-weight: 900;
    color: var(--brl-pink);
    margin-top: 8px;
}

.brl-member-card .brl-member-name {
    font-size: 18px;
    font-weight: 900;
    margin-top: 4px;
}

.brl-member-card .brl-member-benefit {
    font-size: 13px;
    margin-top: 8px;
    line-height: 1.6;
}

.brl-member-card--active .brl-member-benefit {
    color: rgba(255, 255, 255, .75);
}

.brl-member-card--inactive .brl-member-benefit {
    color: var(--brl-text);
}

.brl-member-gift {
    margin-top: 12px;
    display: inline-block;
    background: #fff5f7;
    color: var(--brl-pink);
    font-size: 12px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 999px;
}

.brl-member-card--active .brl-member-gift {
    background: #fff;
}

/* ── PHILOSOPHY ─────────────────────────────── */
.brl-philosophy-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

@media(min-width:640px) {
    .brl-philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width:1024px) {
    .brl-philosophy-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.brl-philosophy-card {
    background: #fff;
    border-radius: var(--brl-radius);
    box-shadow: var(--brl-shadow);
    padding: 24px;
}

.brl-philosophy-card .icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.brl-philosophy-card h3 {
    font-size: 18px;
    font-weight: 900;
    margin: 0 0 12px;
}

.brl-philosophy-card p {
    font-size: 14px;
    color: var(--brl-text);
    line-height: 1.8;
    margin: 0;
}

/* ── CARE ───────────────────────────────────── */
.brl-care {
    display: grid;
    gap: 24px;
    align-items: center;
}

@media(min-width:768px) {
    .brl-care {
        grid-template-columns: .9fr 1.1fr;
    }
}

.brl-care-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
}

.brl-care-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: var(--brl-shadow);
    padding: 24px;
}

.brl-care-card .icon {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--brl-pink);
}

.brl-care-card h3 {
    font-size: 17px;
    font-weight: 900;
    margin: 0 0 8px;
}

.brl-care-card p {
    font-size: 13px;
    color: var(--brl-text);
    line-height: 1.6;
    margin: 0;
}

/* ── FAQ ────────────────────────────────────── */
.brl-faq {
    max-width: 800px;
    margin: 0 auto;
}

.brl-faq-item {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--brl-shadow);
    padding: 20px 24px;
    margin-bottom: 12px;
}

.brl-faq-item h3 {
    font-size: 15px;
    font-weight: 900;
    margin: 0 0 8px;
}

.brl-faq-item p {
    font-size: 14px;
    color: var(--brl-text);
    line-height: 1.7;
    margin: 0;
}

/* ── CTA ────────────────────────────────────── */
.brl-cta {
    background: linear-gradient(135deg, var(--brl-pink) 0%, #f472b6 100%);
    border-radius: var(--brl-radius);
    padding: 48px 32px;
    text-align: center;
    color: #fff;
    box-shadow: var(--brl-shadow-lg);
}

.brl-cta h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    margin: 0 0 16px;
}

.brl-cta p {
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto 28px;
    opacity: .92;
    line-height: 1.8;
}

/* ── FOOTER ─────────────────────────────────── */
.brl-footer {
    border-top: 1px solid #fce4ec;
    background: #fff;
    padding: 28px 16px;
}

.brl-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.brl-footer b {
    font-size: 18px;
}

.brl-footer small {
    font-size: 13px;
    color: var(--brl-muted);
    display: block;
    margin-top: 4px;
}

.brl-footer-tags {
    font-size: 13px;
    font-weight: 600;
    color: var(--brl-muted);
}

/* ── INTRO CARDS ────────────────────────────── */
.brl-intro {
    background: #fff;
    border-bottom: 1px solid #fce4ec;
    padding: 40px 0;
}

.brl-intro-grid {
    display: grid;
    gap: 20px;
}

@media(min-width:768px) {
    .brl-intro-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.brl-intro-card {
    border-radius: var(--brl-radius);
    padding: 24px;
}

.brl-intro-card--1 {
    background: #fff5f7;
}

.brl-intro-card--2 {
    background: #fff1f2;
}

.brl-intro-card--3 {
    background: #fffbeb;
}

.brl-intro-card--4 {
    background: #fce4ec;
}

.brl-intro-card .brl-label {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--brl-pink);
    margin-bottom: 8px;
}

.brl-intro-card h3 {
    font-size: 17px;
    font-weight: 900;
    margin: 0 0 8px;
}

.brl-intro-card .icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.brl-intro-card p {
    font-size: 13px;
    color: var(--brl-text);
    line-height: 1.8;
    margin: 0;
}

/* ── ANIMATIONS ─────────────────────────────── */
@keyframes brl-fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.brl-animate {
    animation: brl-fadeIn .45s ease both;
}

/* ── RESPONSIVE ─────────────────────────────── */
@media(max-width:640px) {
    .brl-flow {
        padding: 16px;
        border-radius: 1.5rem;
    }

    .brl-flow-summary {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .brl-member-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brl-care-grid {
        grid-template-columns: 1fr;
    }

    .brl-hero {
        padding: 32px 0 40px;
    }

    .brl-recommend {
        grid-template-columns: 1fr !important;
    }

    .brl-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .brl-pcard-body {
        padding: 10px 12px 12px;
    }

    .brl-pcard-name {
        font-size: 13px;
    }

    .brl-pcard-price {
        font-size: 15px;
    }

    .brl-pcard-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .brl-recommend-dark {
        position: static;
    }
}

/* ── B2B SCHOOL & EVENT BUILDER ─────────────── */
.brl-event-builder-section {
    background: linear-gradient(180deg, #fffafc 0%, #fff1f5 100%);
}

.brl-label--gold {
    color: #d97706 !important;
}

.brl-eb-container {
    background: #fff;
    border: 1px solid #fce4ec;
    border-radius: 2.5rem;
    padding: 32px;
    box-shadow: var(--brl-shadow-lg);
}

.brl-eb-grid {
    display: grid;
    gap: 32px;
}

@media(min-width:1024px) {
    .brl-eb-grid {
        grid-template-columns: 1.15fr .85fr;
    }
}

.brl-eb-group {
    margin-bottom: 24px;
}

.brl-eb-group:last-child {
    margin-bottom: 0;
}

.brl-eb-label {
    font-size: 14px;
    font-weight: 800;
    color: var(--brl-dark);
    margin-bottom: 12px;
    display: block;
}

.brl-eb-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.brl-eb-scale-val {
    font-size: 13px;
    font-weight: 800;
    color: var(--brl-pink);
    background: #fff5f7;
    padding: 4px 12px;
    border-radius: 99px;
}

/* Type buttons */
.brl-eb-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.brl-eb-type-btn {
    border: 1.5px solid #fce4ec;
    background: #fff;
    border-radius: 18px;
    padding: 14px;
    text-align: left;
    cursor: pointer;
    transition: all .15s;
}

.brl-eb-type-btn .icon {
    font-size: 24px;
    display: block;
    margin-bottom: 4px;
}

.brl-eb-type-btn b {
    display: block;
    font-size: 14px;
    color: var(--brl-dark);
}

.brl-eb-type-btn small {
    font-size: 11px;
    color: var(--brl-muted);
}

.brl-eb-type-btn:hover {
    border-color: var(--brl-pink);
    background: #fff5f7;
}

.brl-eb-type-btn.active {
    border-color: var(--brl-pink);
    background: var(--brl-pink);
    color: #fff;
    box-shadow: var(--brl-shadow);
}

.brl-eb-type-btn.active b,
.brl-eb-type-btn.active small {
    color: #fff;
}

/* Scale buttons */
.brl-eb-scale-btns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.brl-eb-scale-btn {
    border: 1.5px solid #fce4ec;
    background: #fff;
    border-radius: 14px;
    padding: 12px 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--brl-dark);
    cursor: pointer;
    text-align: center;
    transition: all .15s;
}

.brl-eb-scale-btn:hover {
    border-color: var(--brl-pink);
}

.brl-eb-scale-btn.active {
    background: var(--brl-dark);
    color: #fff;
    border-color: var(--brl-dark);
}

/* Zones & Addons */
.brl-eb-zones-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.brl-eb-zone-item,
.brl-eb-addon-item {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #f3e8ff;
    background: #faf5ff;
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .15s;
}

.brl-eb-zone-item input,
.brl-eb-addon-item input {
    accent-color: var(--brl-pink);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.brl-eb-zone-item.active {
    background: #f3e8ff;
    border-color: #c084fc;
    color: #581c87;
}

.brl-eb-addon-item {
    background: #f8fafc;
    border-color: #e2e8f0;
    font-size: 12px;
}

.brl-eb-addon-item.active {
    background: #f0fdf4;
    border-color: #86efac;
    color: #166534;
}

.brl-eb-addon-item b {
    display: block;
    font-size: 13px;
}

.brl-eb-addon-item small {
    color: var(--brl-muted);
    font-size: 11px;
}

/* Real-time Summary Card */
.brl-eb-summary-card {
    background: var(--brl-dark);
    color: #fff;
    border-radius: 2rem;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--brl-shadow-lg);
}

.brl-eb-card-tag {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: #f9a8c9;
}

.brl-eb-card-header h3 {
    font-size: 22px;
    font-weight: 900;
    margin: 6px 0 0;
}

.brl-eb-price-box {
    background: rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid rgba(255, 255, 255, .12);
}

.brl-eb-price-box small {
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
}

.brl-eb-main-price {
    font-size: 36px;
    font-weight: 900;
    color: #f9a8c9;
    margin: 4px 0;
}

.brl-eb-sub-deposit {
    font-size: 12px;
    color: rgba(255, 255, 255, .8);
}

.brl-eb-sub-deposit span {
    color: #fef08a;
    font-weight: 700;
}

.brl-eb-highlights {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 20px;
}

.brl-eb-goals-input label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 6px;
}

.brl-eb-goals-input input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 13px;
    margin-bottom: 20px;
    outline: none;
}

.brl-eb-goals-input input::placeholder {
    color: rgba(255, 255, 255, .4);
}

.brl-btn--ai {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    color: #fff;
    border: 0;
    width: 100%;
    justify-content: center;
    height: 56px;
    box-shadow: 0 10px 25px rgba(236, 72, 153, .35);
}

.brl-btn--ai:hover {
    opacity: .95;
    color: #fff;
}

.ai-sparkle {
    font-size: 20px;
    animation: aiSpin 3s linear infinite;
}

@keyframes aiSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.2);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

.brl-eb-tip {
    font-size: 11px;
    color: rgba(255, 255, 255, .6);
    text-align: center;
    margin-top: 10px;
    line-height: 1.5;
}

/* ── GEMINI AI PROPOSAL MODAL ────────────────── */
.brl-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(15, 23, 42, .75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow-y: auto;
}

.brl-modal-dialog {
    background: #fff;
    border-radius: 2rem;
    max-width: 720px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
    padding: 32px;
}

.brl-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    border: 0;
    background: #f1f5f9;
    color: #64748b;
    font-size: 24px;
    width: 36px;
    height: 36px;
    border-radius: 99px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s;
}

.brl-modal-close:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.brl-modal-header {
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 20px;
    margin-bottom: 24px;
}

.brl-modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f3e8ff;
    color: #7e22ce;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 99px;
    margin-bottom: 10px;
}

.brl-modal-header h2 {
    font-size: 24px;
    font-weight: 900;
    margin: 0 0 6px;
    color: var(--brl-dark);
}

.brl-modal-header .tagline {
    font-size: 14px;
    color: var(--brl-muted);
    margin: 0;
}

.brl-ai-loading {
    text-align: center;
    padding: 48px 16px;
}

.brl-ai-loading .spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #f3e8ff;
    border-top-color: #a855f7;
    border-radius: 50%;
    animation: aiSpin 1s linear infinite;
    margin: 0 auto 16px;
}

.brl-ai-loading p {
    font-size: 14px;
    font-weight: 600;
    color: var(--brl-text);
}

.brl-ai-section {
    margin-bottom: 24px;
}

.brl-ai-section h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--brl-dark);
    margin: 0 0 12px;
}

.brl-ai-zones {
    display: grid;
    gap: 12px;
}

.ai-zone-card {
    background: #faf5ff;
    border: 1px solid #f3e8ff;
    border-radius: 16px;
    padding: 16px;
}

.ai-zone-card .zone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.ai-zone-card .badge {
    background: #a855f7;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 99px;
}

.ai-zone-card .benefit {
    font-size: 13px;
    color: #6b21a8;
    margin: 0 0 10px;
    font-weight: 500;
}

.ai-zone-card .toys-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ai-zone-card .toy-tag {
    background: #fff;
    border: 1px solid #e9d5ff;
    color: #581c87;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 99px;
}

.brl-ai-timeline {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.timeline-item {
    display: flex;
    gap: 12px;
    background: #f8fafc;
    border-radius: 14px;
    padding: 12px 16px;
    font-size: 13px;
}

.timeline-item .time {
    font-weight: 900;
    color: var(--brl-pink);
    width: 90px;
    flex-shrink: 0;
}

.timeline-item .body b {
    display: block;
    color: var(--brl-dark);
}

.timeline-item .body p {
    margin: 2px 0 0;
    color: var(--brl-text);
}

.brl-ai-notes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.note-box {
    border-radius: 16px;
    padding: 16px;
    font-size: 13px;
}

.note-box--blue {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e40af;
}

.note-box--amber {
    background: #fffbeb;
    border: 1px solid #fef08a;
    color: #92400e;
}

.note-box b {
    display: block;
    margin-bottom: 4px;
}

.note-box p {
    margin: 0;
    line-height: 1.5;
}

.brl-ai-form-wrap {
    background: #fff5f7;
    border: 1px dashed var(--brl-pink);
    border-radius: 20px;
    padding: 24px;
}

.brl-ai-form-wrap h3 {
    font-size: 18px;
    font-weight: 900;
    margin: 0 0 4px;
    color: var(--brl-dark);
}

.brl-ai-form-wrap p {
    font-size: 13px;
    color: var(--brl-text);
    margin: 0 0 16px;
}

.brl-ai-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 10px;
}

.brl-ai-form input,
.brl-ai-form textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #fce4ec;
    background: #fff;
    font-size: 13px;
    outline: none;
}

.brl-ai-form textarea {
    margin-bottom: 12px;
}

.brl-ai-form input:focus,
.brl-ai-form textarea:focus {
    border-color: var(--brl-pink);
    box-shadow: 0 0 0 3px rgba(217, 119, 146, .15);
}

.brl-form-msg.success {
    background: #d1fae5;
    color: #065f46;
    padding: 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.brl-form-msg.error {
    background: #fee2e2;
    color: #991b1b;
    padding: 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

/* ── RENT VS BUY SAVINGS CALCULATOR ───────── */
.brl-rvsb-section {
    background: #fff;
}

.brl-rvsb-container {
    display: grid;
    gap: 32px;
}

@media(min-width:1024px) {
    .brl-rvsb-container {
        grid-template-columns: 1.1fr .9fr;
        align-items: start;
    }
}

.brl-rvsb-table-wrap {
    background: #fff;
    border: 1px solid #fce4ec;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--brl-shadow);
}

.brl-rvsb-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14px;
}

.brl-rvsb-table th,
.brl-rvsb-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #fce4ec;
}

.brl-rvsb-table th {
    background: #faf5ff;
    font-weight: 800;
    color: var(--brl-dark);
}

.brl-rvsb-table th.col-buy {
    background: #fef2f2;
    color: #dc2626;
}

.brl-rvsb-table th.col-rent {
    background: #f0fdf4;
    color: #166534;
}

.brl-rvsb-table td.col-buy {
    background: #fff5f5;
    color: #991b1b;
}

.brl-rvsb-table td.col-rent {
    background: #f6fef9;
    color: #14532d;
    font-weight: 600;
}

.price-bad {
    color: #dc2626;
    font-weight: 800;
    text-decoration: line-through;
}

.price-good {
    color: #16a34a;
    font-weight: 900;
    font-size: 16px;
}

.highlight-save {
    color: #15803d;
    font-weight: 900;
    font-size: 15px;
}

.brl-rvsb-calc-box {
    background: var(--brl-dark);
    color: #fff;
    border-radius: 2rem;
    padding: 28px;
    box-shadow: var(--brl-shadow-lg);
}

.calc-header h3 {
    font-size: 20px;
    font-weight: 900;
    margin: 0 0 4px;
}

.calc-header p {
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
    margin: 0 0 20px;
}

.calc-slider-wrap {
    background: rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 20px;
}

.calc-slider-wrap label {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 10px;
}

.calc-slider-wrap label b {
    color: #f9a8c9;
    font-size: 15px;
}

.calc-slider-wrap input[type="range"] {
    width: 100%;
    accent-color: #ec4899;
    cursor: pointer;
}

.calc-result {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.res-item {
    background: rgba(255, 255, 255, .06);
    border-radius: 14px;
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.res-item small {
    color: rgba(255, 255, 255, .7);
}

.res-item b {
    font-size: 16px;
}

.res-item--highlight {
    background: rgba(236, 72, 153, .2);
    border: 1px solid rgba(236, 72, 153, .4);
}

.res-item--highlight b {
    color: #f9a8c9;
    font-size: 18px;
    font-weight: 900;
}

.res-item--save {
    background: linear-gradient(135deg, #15803d 0%, #22c55e 100%);
    color: #fff;
}

.res-item--save small {
    color: #dcfce7;
    font-weight: 700;
}

.res-item--save b {
    color: #fff;
    font-size: 22px;
    font-weight: 900;
}

/* ── INSTITUTIONAL TRUST & PARTNERS ─────────── */
.brl-trust-section {
    background: #fff5f7;
    border-top: 1px solid #fce4ec;
    border-bottom: 1px solid #fce4ec;
}

.brl-trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media(min-width:768px) {
    .brl-trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 24px;
    text-align: center;
    box-shadow: var(--brl-shadow);
}

.trust-card .number {
    font-size: 32px;
    font-weight: 900;
    color: var(--brl-pink);
    margin-bottom: 4px;
}

.trust-card b {
    display: block;
    font-size: 15px;
    color: var(--brl-dark);
    margin-bottom: 6px;
}

.trust-card p {
    font-size: 12px;
    color: var(--brl-text);
    margin: 0;
    line-height: 1.5;
}

/* ── FLOATING AI CONCIERGE CHAT WIDGET ───────── */
.brl-ai-widget-floating {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 990;
}

.brl-ai-trigger-btn {
    position: relative;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    color: #fff;
    border: 0;
    border-radius: 99px;
    padding: 14px 22px;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(168, 85, 247, .45);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform .2s;
}

.brl-ai-trigger-btn:hover {
    transform: scale(1.05);
}

.brl-ai-trigger-btn .ai-icon {
    font-size: 20px;
}

.ping-dot {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 12px;
    height: 12px;
    background: #22c55e;
    border: 2px solid #fff;
    border-radius: 50%;
}

.brl-ai-chat-drawer {
    position: absolute;
    bottom: 70px;
    left: 0;
    width: 360px;
    max-width: 90vw;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
    border: 1px solid #fce4ec;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 460px;
}

.chat-header {
    background: var(--brl-dark);
    color: #fff;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-header .avatar {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.chat-header b {
    display: block;
    font-size: 14px;
}

.chat-header small {
    color: #f9a8c9;
    font-size: 11px;
}

.chat-close {
    margin-left: auto;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.chat-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #faf5ff;
}

.msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.5;
}

.msg--ai {
    background: #fff;
    color: var(--brl-dark);
    border: 1px solid #f3e8ff;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .03);
}

.msg--user {
    background: var(--brl-pink);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.msg--typing {
    font-style: italic;
    color: #a855f7;
    opacity: .8;
}

.chat-quick-prompts {
    padding: 8px 12px;
    background: #fff;
    border-top: 1px solid #f3e8ff;
    display: flex;
    gap: 6px;
    overflow-x: auto;
}

.prompt-btn {
    background: #fff5f7;
    border: 1px solid #fce4ec;
    color: var(--brl-pink);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 99px;
    cursor: pointer;
    white-space: nowrap;
}

.prompt-btn:hover {
    background: var(--brl-pink);
    color: #fff;
}

.chat-input-bar {
    display: flex;
    padding: 10px;
    background: #fff;
    border-top: 1px solid #f1f5f9;
    gap: 8px;
}

.chat-input-bar input {
    flex: 1;
    border: 1px solid #e2e8f0;
    border-radius: 99px;
    padding: 8px 14px;
    font-size: 13px;
    outline: none;
}

.chat-input-bar button {
    background: var(--brl-pink);
    color: #fff;
    border: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
}

/* ── MOBILE RESPONSIVE STYLES & GLASSMORPHISM ENHANCEMENTS ── */
@media (max-width: 768px) {
    .brl-rvsb-table-wrap {
        overflow-x: visible;
    }

    .brl-rvsb-table {
        display: block;
    }

    .brl-rvsb-table thead {
        display: none;
    }

    .brl-rvsb-table tbody,
    .brl-rvsb-table tr,
    .brl-rvsb-table td {
        display: block;
        width: 100%;
    }

    .brl-rvsb-table tr {
        background: #fff;
        border-radius: 20px;
        padding: 16px;
        margin-bottom: 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
        border: 1px solid #fce4ec;
    }

    .brl-rvsb-table td {
        border: 0;
        padding: 8px 0;
        text-align: left;
    }

    .brl-rvsb-table td:first-child {
        font-size: 15px;
        font-weight: 800;
        color: var(--brl-dark);
        border-bottom: 1px solid #fce4ec;
        padding-bottom: 10px;
        margin-bottom: 6px;
    }

    .brl-rvsb-table td.col-buy::before {
        content: "❌ Mua đứt: ";
        font-weight: 700;
        color: #ef4444;
    }

    .brl-rvsb-table td.col-rent::before {
        content: "✅ Thuê BabyFun: ";
        font-weight: 700;
        color: #10b981;
    }
}

/* ── INSTANT CHECKOUT MODAL STYLES ── */
.brl-modal-dialog--checkout {
    background: linear-gradient(145deg, #2d1e23 0%, #1e1317 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    max-width: 580px;
}

.brl-modal-dialog--checkout .brl-modal-header h2 {
    color: #fff;
}

.brl-modal-dialog--checkout .brl-modal-header .tagline,
.brl-modal-dialog--checkout .brl-modal-header p {
    color: rgba(255, 255, 255, 0.7);
}

.brl-modal-dialog--checkout .brl-modal-badge {
    background: rgba(217, 119, 146, 0.2);
    color: #f9a8c9;
}

.brl-modal-dialog--checkout .brl-modal-close {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.brl-modal-dialog--checkout .brl-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ── TRUST GUARANTEE BAR STYLES ── */
.brl-trust-bar {
    background: #ffffff;
    border-top: 1px solid #fce4ec;
    border-bottom: 1px solid #fce4ec;
    padding: 20px 0;
    margin: 20px 0 40px;
    box-shadow: 0 4px 20px rgba(217, 119, 146, 0.05);
}

.brl-trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.brl-tb-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: #fffafc;
    border: 1px solid #fce4ec;
    border-radius: 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brl-tb-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(217, 119, 146, 0.12);
    border-color: var(--brl-pink);
}

.brl-tb-item .tb-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.brl-tb-item b {
    display: block;
    font-size: 13.5px;
    font-weight: 800;
    color: var(--brl-dark);
}

.brl-tb-item small {
    font-size: 11.5px;
    color: var(--brl-muted);
}

/* ── PULSE GLOW ANIMATION FOR MAIN CTA ── */
@keyframes brlPulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(217, 119, 146, 0.5);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(217, 119, 146, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(217, 119, 146, 0);
    }
}

#brl-btn-instant-checkout {
    animation: brlPulseGlow 2.5s infinite;
}

/* ── HOSPITAL MODAL BRIGHT STYLE ── */
#brl-hospital-modal .brl-modal-dialog {
    background: #ffffff;
    border: 2px solid #e0f2fe;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(2, 132, 199, 0.2);
    color: var(--brl-dark);
    max-width: 580px;
}

#brl-hospital-modal .brl-modal-header h2 {
    color: var(--brl-dark);
}

#brl-hospital-modal .brl-modal-badge {
    background: #e0f2fe;
    color: #0284c7;
    border: 1px solid #bae6fd;
    font-weight: 800;
}

#brl-hospital-modal .brl-modal-close {
    background: #f1f5f9;
    color: #475569;
}

#brl-hospital-modal .brl-modal-close:hover {
    background: #e2e8f0;
    color: #0f172a;
}

#brl-hospital-modal input,
#brl-hospital-modal textarea {
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    color: #0f172a;
}

#brl-hospital-modal input::placeholder,
#brl-hospital-modal textarea::placeholder {
    color: #94a3b8;
}

#brl-hospital-modal input:focus,
#brl-hospital-modal textarea:focus {
    border-color: #0284c7;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

/* ── GÓI BBF HOSPITAL SECTION STYLES (BABYFUN PREMIUM THEME) ───────────────────────── */
.brl-hospital-section {
    background: linear-gradient(180deg, #fff5f8 0%, #fef2f7 50%, #fff7fb 100%);
    color: var(--brl-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.brl-hospital-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(217, 119, 146, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.brl-hospital-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.brl-label--cyan {
    background: #e0f2fe;
    color: #0284c7;
    border: 1px solid #bae6fd;
    font-weight: 800;
}

.brl-hospital-section .brl-section-header h2 {
    color: var(--brl-dark);
    font-weight: 900;
}

.brl-hospital-section .brl-section-header p {
    color: var(--brl-text);
}

.brl-hospital-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 24px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.brl-hcard {
    background: #ffffff;
    border: 2px solid #fce4ec;
    border-radius: 28px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 16px 40px rgba(217, 119, 146, 0.06);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.brl-hcard:hover {
    transform: translateY(-6px);
    border-color: var(--brl-pink);
    box-shadow: 0 24px 50px rgba(217, 119, 146, 0.16);
}

.brl-hcard-tag {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #0284c7;
    margin-bottom: 6px;
}

.brl-hcard-title {
    font-size: 22px;
    font-weight: 900;
    color: var(--brl-dark);
    margin: 0 0 12px 0;
}

.brl-hcard-price {
    font-size: 28px;
    font-weight: 900;
    color: var(--brl-pink);
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.brl-hcard-price span {
    font-size: 13px;
    font-weight: 600;
    color: var(--brl-muted);
}

.brl-hcard-suit {
    font-size: 13px;
    color: var(--brl-text);
    background: #fffafc;
    padding: 8px 12px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #fce4ec;
}

.brl-hcard-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 13.5px;
    color: var(--brl-text);
    flex-grow: 1;
}

.brl-hcard-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.brl-hcard-features li span {
    font-size: 16px;
    flex-shrink: 0;
}

.brl-btn--hospital {
    background: #f0f9ff;
    border: 2px solid #0284c7;
    color: #0284c7;
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 800;
    border-radius: 14px;
    transition: all 0.2s ease;
}

.brl-btn--hospital:hover {
    background: #0284c7;
    color: #ffffff;
    border-color: #0284c7;
}

/* Featured Card Styling ⭐ */
.brl-hcard--featured {
    background: linear-gradient(160deg, #fff0f5 0%, #ffffff 100%);
    border: 2px solid var(--brl-pink);
    box-shadow: 0 16px 40px rgba(217, 119, 146, 0.12);
}

.brl-hcard--featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(217, 119, 146, 0.22);
}

.brl-hcard-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--brl-pink), var(--brl-pink-dark));
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    padding: 4px 16px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(217, 119, 146, 0.3);
}

.brl-btn--hospital-featured {
    background: linear-gradient(135deg, var(--brl-pink), var(--brl-pink-dark));
    color: #ffffff;
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 800;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(217, 119, 146, 0.25);
    border: none;
    transition: all 0.2s ease;
}

.brl-btn--hospital-featured:hover {
    background: linear-gradient(135deg, #c86581, #b3526f);
    transform: translateY(-2px);
    color: #ffffff;
}

/* Premium Card Styling 👑 */
.brl-hcard--premium {
    background: linear-gradient(160deg, #f0f9ff 0%, #ffffff 100%);
    border: 3px solid #0284c7;
}

.brl-hcard--premium .brl-hcard-tag {
    color: #0284c7;
}

.brl-hcard--premium .brl-hcard-badge {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.4);
}

.brl-hcard--premium .brl-hcard-price {
    color: #0284c7;
}

.brl-btn--hospital-gold {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    color: #ffffff;
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 800;
    border-radius: 14px;
    border: none;
    transition: all 0.2s ease;
}

.brl-btn--hospital-gold:hover {
    background: linear-gradient(135deg, #0369a1, #075985);
    color: #ffffff;
}

/* Hospital Elite Box */
.brl-hospital-elite-box {
    margin-top: 48px;
    background: linear-gradient(135deg, #3d2b2f 0%, #2a1d20 100%);
    border: 2px solid #fde68a;
    border-radius: 28px;
    padding: 36px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    box-shadow: 0 20px 50px rgba(61, 43, 47, 0.25);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.brl-hospital-elite-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #ffd700, #f59e0b);
}

.elite-content .elite-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 900;
    color: #ffd700;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
}

.elite-content h3 {
    font-size: 24px;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.elite-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    max-width: 680px;
    line-height: 1.6;
}

.elite-price-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    flex-shrink: 0;
}

.elite-price {
    font-size: 32px;
    font-weight: 900;
    color: #ffd700;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.elite-price span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.brl-btn--elite {
    background: linear-gradient(135deg, #ffd700, #f59e0b);
    color: #3d2b2f;
    font-weight: 900;
    padding: 14px 28px;
    border-radius: 16px;
    border: none;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    transition: all 0.2s ease;
}

.brl-btn--elite:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #3d2b2f;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .brl-hospital-elite-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px;
    }

    .elite-price-action {
        align-items: flex-start;
        width: 100%;
    }

    .brl-btn--elite {
        width: 100%;
        justify-content: center;
    }
}