/* =============================================================================
   LINGO4ALL — Theme components stylesheet
   -----------------------------------------------------------------------------
   Component classes for header, footer, hero, blocks (hero/benefits/testimonials/
   press/faq/metrics/video/plans/trust), product cards, category pages, PDP,
   checkout, account.

   Loaded AFTER theme.css.
   ============================================================================= */

/* ========================================================================== */
/* HEADER                                                                     */
/* ========================================================================== */
/* IMPORTANT: no backdrop-filter on header — it creates a stacking context that
   traps position:fixed descendants (mini-cart drawer breaks). Use solid bg instead. */
.brl-header {
    position: sticky;
    top: 0;
    z-index: var(--brl-z-header);
    background: #FFFFFF;
    border-bottom: 1px solid var(--brl-line-soft);
    transition: box-shadow var(--brl-base) var(--brl-ease);
}

.brl-header--scrolled {
    box-shadow: var(--brl-shadow-sm);
}

.brl-header__topbar {
    background: var(--brl-primary);
    color: rgba(255, 255, 255, 0.85);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.brl-header__topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 0;
}

.brl-header__topbar a { color: rgba(255, 255, 255, 0.85); }
.brl-header__topbar a:hover { color: #FFFFFF; }

.brl-header__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 16px 0;
}

.brl-header__left  { display: flex; align-items: center; gap: 32px; flex: 1; min-width: 0; }
.brl-header__right { display: flex; align-items: center; gap: 12px; }

/* Style Bagisto's mini-cart icon to match brl-icon-btn aesthetic */
.brl-header .icon-cart {
    display: inline-grid !important;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: var(--brl-r-pill);
    background: var(--brl-bg-soft);
    color: var(--brl-ink);
    font-size: 19px !important;
    cursor: pointer;
    transition: background var(--brl-fast) var(--brl-ease),
                color var(--brl-fast) var(--brl-ease),
                transform var(--brl-fast) var(--brl-ease);
    position: relative;
}

.brl-header .icon-cart:hover {
    background: var(--brl-primary);
    color: #FFFFFF;
    transform: translateY(-1px);
}

/* Cart count badge polish — overrides Bagisto's navy badge default */
.brl-header .icon-cart + span,
.brl-header span.relative > span[class*="bg-navyBlue"] {
    background: var(--brl-accent) !important;
    color: var(--brl-primary) !important;
    font-weight: 700 !important;
    font-size: 11px !important;
    min-width: 18px !important;
    height: 18px !important;
    padding: 0 5px !important;
    border-radius: 9px !important;
    display: grid !important;
    place-items: center !important;
    line-height: 1 !important;
    top: -4px !important;
    left: auto !important;
    right: -4px !important;
    box-shadow: 0 0 0 2px #FFFFFF;
}

/* ========================================================================== */
/* MINI-CART DRAWER — Bagisto's v-drawer + content polish                     */
/* ========================================================================== */
/* The drawer renders as: <div class="fixed z-[1000] overflow-hidden bg-white"> */
/* We target by Tailwind class signature.                                       */

.brl-body div.fixed.bg-white[class*="z-["] {
    box-shadow: var(--brl-shadow-xl) !important;
    border-radius: 0 !important;
}

/* Drawer header — "Carrinho de Compras" + offer subtitle */
.brl-body div.fixed.bg-white[class*="z-["] .grid.gap-y-2\.5.p-6 {
    padding: 26px 28px !important;
    border-bottom: 1px solid var(--brl-line-soft);
}

.brl-body div.fixed.bg-white[class*="z-["] .grid.gap-y-2\.5.p-6 p:first-child {
    font-size: 20px !important;
    font-weight: 700 !important;
    letter-spacing: -0.015em;
    color: var(--brl-ink);
}

.brl-body div.fixed.bg-white[class*="z-["] .grid.gap-y-2\.5.p-6 p {
    color: var(--brl-muted);
    font-size: 13px;
}

/* Close button (X) in drawer header */
.brl-body div.fixed.bg-white[class*="z-["] .icon-cancel {
    display: inline-grid !important;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: var(--brl-r-pill);
    background: var(--brl-bg-soft);
    color: var(--brl-ink);
    font-size: 18px !important;
    transition: background var(--brl-fast) var(--brl-ease);
}

.brl-body div.fixed.bg-white[class*="z-["] .icon-cancel:hover {
    background: var(--brl-line-soft);
}

/* Drawer overlay — soften */
.brl-body div.fixed.inset-0.bg-gray-500 {
    background-color: rgba(11, 18, 32, 0.50) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Empty cart state */
.brl-body div.fixed.bg-white[class*="z-["] .mt-32 img {
    max-width: 120px;
    opacity: 0.55;
}

.brl-body div.fixed.bg-white[class*="z-["] .mt-32 p {
    color: var(--brl-muted);
    font-size: 15px;
    margin-top: 12px;
    text-align: center;
}

/* Cart item — name, price, quantity, remove button */
.brl-body div.fixed.bg-white[class*="z-["] .gap-x-5 img,
.brl-body div.fixed.bg-white[class*="z-["] .gap-x-5 .rounded-xl {
    border-radius: var(--brl-r-md) !important;
    background: var(--brl-bg-soft);
}

.brl-body div.fixed.bg-white[class*="z-["] button.text-blue-700 {
    color: var(--brl-danger) !important;
    font-weight: 500 !important;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity var(--brl-fast) var(--brl-ease);
}

.brl-body div.fixed.bg-white[class*="z-["] button.text-blue-700:hover {
    opacity: 0.7;
}

/* Subtotal area */
.brl-body div.fixed.bg-white[class*="z-["] .my-8.flex.items-center.justify-between {
    background: var(--brl-bg-soft);
    border-radius: var(--brl-r-lg);
    border: 0 !important;
    margin: 12px 28px !important;
    padding: 18px 22px !important;
    align-items: baseline !important;
}

.brl-body div.fixed.bg-white[class*="z-["] .my-8 p.text-3xl,
.brl-body div.fixed.bg-white[class*="z-["] .my-8 .text-3xl {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: var(--brl-primary) !important;
    letter-spacing: -0.01em;
    font-variant-numeric: tabular-nums;
}

/* Checkout CTA button */
.brl-body div.fixed.bg-white[class*="z-["] a[href*="checkout/onepage"] {
    background: var(--brl-primary) !important;
    color: #FFFFFF !important;
    border-radius: var(--brl-r-md) !important;
    padding: 15px 24px !important;
    font-weight: 700 !important;
    font-size: 14.5px !important;
    letter-spacing: 0.005em;
    box-shadow: var(--brl-shadow-sm);
    transition: background var(--brl-fast) var(--brl-ease),
                box-shadow var(--brl-fast) var(--brl-ease),
                transform var(--brl-fast) var(--brl-ease) !important;
}

.brl-body div.fixed.bg-white[class*="z-["] a[href*="checkout/onepage"]:hover {
    background: var(--brl-primary-soft) !important;
    color: #FFFFFF !important;
    box-shadow: var(--brl-shadow-md);
    transform: translateY(-1px);
}

/* "Ver carrinho" secondary link */
.brl-body div.fixed.bg-white[class*="z-["] a[href*="checkout/cart"] {
    color: var(--brl-ink-2) !important;
    font-weight: 500 !important;
    font-size: 13.5px !important;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.brl-header__logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.brl-header__logo img { max-height: 52px; width: auto; }

@media (max-width: 767px) {
    .brl-header__logo img { max-height: 40px; }
}

.brl-header__search {
    position: relative;
    flex: 1;
    max-width: 520px;
}

/* Higher specificity than theme.css input rule to ensure padding-left wins */
.brl-body .brl-header__search input[type="text"],
.brl-body .brl-header__search .brl-input {
    border-radius: var(--brl-r-pill);
    background: var(--brl-bg-soft);
    border-color: var(--brl-line-soft);
    padding: 13px 22px 13px 50px;
    font-size: 14.5px;
}

.brl-body .brl-header__search input[type="text"]:focus,
.brl-body .brl-header__search .brl-input:focus { background: #FFFFFF; }

.brl-header__search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brl-muted);
    font-size: 18px;
    pointer-events: none;
    z-index: 1;
}

/* Nav (main categories under header) */
.brl-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 0;
    border-top: 1px solid var(--brl-line-soft);
}

.brl-nav__item {
    position: relative;
}

.brl-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 16px;
    color: var(--brl-ink-2);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.005em;
    transition: color var(--brl-fast) var(--brl-ease);
    position: relative;
}

.brl-nav__link::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 8px;
    height: 2px;
    background: var(--brl-primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--brl-base) var(--brl-ease);
}

.brl-nav__link:hover {
    color: var(--brl-primary);
}

.brl-nav__link:hover::after {
    transform: scaleX(1);
}

.brl-nav__link--active { color: var(--brl-primary); }
.brl-nav__link--active::after { transform: scaleX(1); }

/* Mega-menu dropdown (admin can configure children of categories) */
.brl-nav__megamenu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 280px;
    background: #FFFFFF;
    border: 1px solid var(--brl-line-soft);
    border-radius: var(--brl-r-lg);
    box-shadow: var(--brl-shadow-lg);
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity var(--brl-base) var(--brl-ease),
                transform var(--brl-base) var(--brl-ease),
                visibility var(--brl-base) var(--brl-ease);
}

.brl-nav__item:hover .brl-nav__megamenu,
.brl-nav__item:focus-within .brl-nav__megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.brl-nav__megamenu-link {
    display: block;
    padding: 10px 14px;
    border-radius: var(--brl-r-sm);
    font-size: 14px;
    color: var(--brl-ink-2);
    transition: background var(--brl-fast) var(--brl-ease), color var(--brl-fast) var(--brl-ease);
}

.brl-nav__megamenu-link:hover { background: var(--brl-bg-soft); color: var(--brl-primary); }

/* Hamburger trigger (mobile + sidebar mode) */
.brl-nav__all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.005em;
    color: var(--brl-ink);
    border-radius: var(--brl-r-md);
    cursor: pointer;
    transition: background var(--brl-fast) var(--brl-ease);
}

.brl-nav__all:hover { background: var(--brl-bg-soft); }
.brl-nav__all [class^="icon-"] { font-size: 18px; }

/* Mobile header */
@media (max-width: 1023px) {
    .brl-header__main {
        padding: 12px 0;
        gap: 12px;
    }
    .brl-header__search {
        order: 3;
        flex-basis: 100%;
        max-width: 100%;
    }
    .brl-nav { display: none; }
}

/* Mobile drawer (Alpine-controlled) */
.brl-drawer {
    position: fixed;
    inset: 0;
    z-index: var(--brl-z-drawer);
    pointer-events: none;
}

.brl-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 18, 32, 0.45);
    opacity: 0;
    transition: opacity var(--brl-base) var(--brl-ease);
}

.brl-drawer__panel {
    position: absolute;
    top: 0;
    bottom: 0;
    width: min(360px, 90vw);
    background: #FFFFFF;
    box-shadow: var(--brl-shadow-xl);
    transform: translateX(-100%);
    transition: transform var(--brl-base) var(--brl-ease);
    display: flex;
    flex-direction: column;
}

.brl-drawer--right .brl-drawer__panel {
    left: auto;
    right: 0;
    transform: translateX(100%);
}

.brl-drawer[data-open="true"] { pointer-events: auto; }
.brl-drawer[data-open="true"] .brl-drawer__backdrop { opacity: 1; }
.brl-drawer[data-open="true"] .brl-drawer__panel { transform: translateX(0); }

.brl-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--brl-line-soft);
}

.brl-drawer__close {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: var(--brl-r-pill);
    background: var(--brl-bg-soft);
    cursor: pointer;
    border: 0;
    color: var(--brl-ink);
}
.brl-drawer__close:hover { background: var(--brl-line-soft); }

.brl-drawer__body { padding: 12px 0; overflow-y: auto; flex: 1; }

.brl-drawer__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    color: var(--brl-ink);
    font-size: 15px;
    font-weight: 500;
    transition: background var(--brl-fast) var(--brl-ease);
}

.brl-drawer__item:hover { background: var(--brl-bg-soft); }
.brl-drawer__item [class^="icon-"] { color: var(--brl-muted); font-size: 14px; }

/* ========================================================================== */
/* FOOTER                                                                     */
/* ========================================================================== */
.brl-footer {
    background:
        radial-gradient(800px 400px at 90% 0%, rgba(201, 166, 107, 0.08), transparent 60%),
        var(--brl-primary);
    color: rgba(255, 255, 255, 0.72);
    margin-top: clamp(40px, 6vw, 80px);
}

.brl-footer__top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 56px 48px;
    padding-top: clamp(56px, 6vw, 80px);
    padding-bottom: clamp(40px, 5vw, 64px);
}

.brl-footer__brand {
    flex: 1 1 280px;
    max-width: 320px;
    min-width: 0;
}

.brl-footer__brand-text {
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 12px;
}

.brl-footer__col {
    flex: 1 1 180px;
    max-width: 240px;
    min-width: 0;
}

.brl-footer__newsletter {
    flex: 1 1 360px;
    max-width: 420px;
    min-width: 0;
}

.brl-footer__newsletter-text {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.55;
    margin-top: 6px;
}

@media (max-width: 1023px) {
    .brl-footer__top { gap: 40px 32px; justify-content: flex-start; }
    .brl-footer__brand, .brl-footer__col, .brl-footer__newsletter { flex-basis: calc(50% - 16px); max-width: none; }
}
@media (max-width: 525px) {
    .brl-footer__top { gap: 32px; }
    .brl-footer__brand, .brl-footer__col, .brl-footer__newsletter { flex-basis: 100%; }
}

.brl-footer__title {
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}

.brl-footer__link {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    padding: 6px 0;
    transition: color var(--brl-fast) var(--brl-ease), transform var(--brl-fast) var(--brl-ease);
}

.brl-footer__link:hover { color: #FFFFFF; transform: translateX(3px); }

.brl-footer__newsletter { max-width: 380px; }

.brl-footer__newsletter-form {
    position: relative;
    margin-top: 18px;
}

.brl-footer__newsletter-input {
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: rgba(255, 255, 255, 0.14) !important;
    color: #FFFFFF !important;
    border-radius: var(--brl-r-pill) !important;
    padding: 14px 130px 14px 22px !important;
}

.brl-footer__newsletter-input::placeholder { color: rgba(255, 255, 255, 0.45) !important; }

.brl-footer__newsletter-input:focus {
    background: rgba(255, 255, 255, 0.10) !important;
    border-color: var(--brl-accent) !important;
    box-shadow: var(--brl-ring-accent) !important;
}

.brl-footer__newsletter-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--brl-accent);
    color: var(--brl-primary);
    border: 0;
    padding: 9px 18px;
    border-radius: var(--brl-r-pill);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: background var(--brl-fast) var(--brl-ease);
}

.brl-footer__newsletter-btn:hover { background: var(--brl-accent-strong); }

.brl-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.brl-footer__bottom-text {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
}

.brl-footer__social {
    display: inline-flex;
    gap: 10px;
    flex-shrink: 0;
}

.brl-footer__social a {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: var(--brl-r-pill);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.78);
    transition: background var(--brl-fast) var(--brl-ease),
                color var(--brl-fast) var(--brl-ease),
                transform var(--brl-fast) var(--brl-ease);
}

.brl-footer__social a:hover {
    background: var(--brl-accent);
    color: var(--brl-primary);
    transform: translateY(-2px);
}

.brl-footer__social svg {
    width: 18px;
    height: 18px;
    display: block;
}

/* ========================================================================== */
/* HERO BLOCK                                                                  */
/* ========================================================================== */
.brl-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(56px, 7vw, 112px) 0;
    background:
        radial-gradient(900px 500px at 95% 5%, rgba(201, 166, 107, 0.10), transparent 60%),
        radial-gradient(1000px 600px at 0% 110%, rgba(11, 18, 32, 0.04), transparent 60%),
        linear-gradient(180deg, #FFFFFF 0%, var(--brl-bg-soft) 100%);
}

.brl-hero--dark {
    background:
        radial-gradient(900px 500px at 95% 5%, rgba(201, 166, 107, 0.15), transparent 60%),
        linear-gradient(135deg, var(--brl-primary-tint) 0%, var(--brl-primary) 100%);
    color: #FFFFFF;
}

.brl-hero--image {
    background-size: cover;
    background-position: center;
    color: #FFFFFF;
}

.brl-hero--image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 18, 32, 0.20) 0%, rgba(11, 18, 32, 0.55) 100%);
}

.brl-hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 1023px) {
    .brl-hero__grid { grid-template-columns: 1fr; gap: 40px; }
}

.brl-hero__content { display: grid; gap: 24px; align-content: start; }

.brl-hero__title {
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0;
}

.brl-hero__title-accent {
    background: linear-gradient(135deg, var(--brl-accent-strong) 0%, var(--brl-accent) 60%, #DCC592 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-family: var(--brl-font-serif);
    font-weight: 400;
    font-style: italic;
    letter-spacing: -0.01em;
}

.brl-hero__subtitle {
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.6;
    color: var(--brl-muted);
    max-width: 560px;
}

.brl-hero--dark .brl-hero__subtitle,
.brl-hero--image .brl-hero__subtitle { color: rgba(255, 255, 255, 0.82); }

.brl-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }

.brl-hero__trust {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.brl-hero__trust-item { display: flex; flex-direction: column; gap: 4px; }
.brl-hero__trust-num   { font-size: 28px; font-weight: 800; color: var(--brl-primary); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; line-height: 1; }
.brl-hero__trust-label { font-size: 12.5px; color: var(--brl-muted); line-height: 1.3; font-weight: 500; }
.brl-hero__trust-divider { width: 1px; height: 36px; background: var(--brl-line); }

.brl-hero--dark .brl-hero__trust-num,
.brl-hero--image .brl-hero__trust-num { color: #FFFFFF; }
.brl-hero--dark .brl-hero__trust-label,
.brl-hero--image .brl-hero__trust-label { color: rgba(255, 255, 255, 0.7); }
.brl-hero--dark .brl-hero__trust-divider,
.brl-hero--image .brl-hero__trust-divider { background: rgba(255, 255, 255, 0.16); }

/* Visual side */
.brl-hero__visual {
    position: relative;
    aspect-ratio: 4 / 5;
    max-width: 520px;
    justify-self: end;
    width: 100%;
}

@media (max-width: 1023px) {
    .brl-hero__visual { justify-self: center; max-width: 420px; }
}

.brl-hero__main-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--brl-r-xl);
    box-shadow: var(--brl-shadow-xl);
}

.brl-hero__main-fallback {
    position: absolute;
    inset: 0;
    border-radius: var(--brl-r-xl);
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.06) 0%, transparent 60%),
        linear-gradient(135deg, var(--brl-primary-tint) 0%, var(--brl-primary) 100%);
    box-shadow: var(--brl-shadow-xl);
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 18px;
    font-family: var(--brl-font-serif);
    overflow: hidden;
}

.brl-hero__main-fallback::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.5;
}

.brl-hero__card-badge {
    position: absolute;
    bottom: 24px;
    left: -16px;
    padding: 14px 20px;
    background: #FFFFFF;
    border-radius: var(--brl-r-pill);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--brl-ink);
    box-shadow: var(--brl-shadow-lg);
    white-space: nowrap;
}

.brl-hero__card-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brl-success);
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.18);
    animation: brlPulse 2.4s var(--brl-ease) infinite;
}

.brl-hero__card-rating {
    position: absolute;
    top: 32px;
    right: -24px;
    padding: 18px 22px;
    background: #FFFFFF;
    border-radius: var(--brl-r-lg);
    box-shadow: var(--brl-shadow-lg);
    min-width: 160px;
}

.brl-hero__card-rating-stars { color: var(--brl-accent); font-size: 16px; letter-spacing: 2px; line-height: 1; }
.brl-hero__card-rating-num { font-size: 22px; font-weight: 800; color: var(--brl-primary); margin-top: 6px; letter-spacing: -0.02em; line-height: 1; }
.brl-hero__card-rating-count { font-size: 11.5px; color: var(--brl-muted); margin-top: 4px; font-weight: 500; }

@media (max-width: 525px) {
    .brl-hero__card-badge { left: 0; right: 0; margin: 0 auto; max-width: max-content; }
    .brl-hero__card-rating { right: 0; top: 16px; min-width: 140px; padding: 14px 18px; }
}

/* ========================================================================== */
/* BENEFITS GRID                                                              */
/* ========================================================================== */
.brl-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

@media (max-width: 1023px) { .brl-benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 525px)  { .brl-benefits-grid { grid-template-columns: 1fr; gap: 16px; } }

.brl-benefit {
    background: #FFFFFF;
    border: 1px solid var(--brl-line-soft);
    border-radius: var(--brl-r-lg);
    padding: 28px;
    transition: transform var(--brl-base) var(--brl-ease),
                box-shadow var(--brl-base) var(--brl-ease),
                border-color var(--brl-base) var(--brl-ease);
}

.brl-benefit:hover {
    transform: translateY(-3px);
    box-shadow: var(--brl-shadow-md);
    border-color: var(--brl-line);
}

.brl-benefit__icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: var(--brl-r-md);
    background: linear-gradient(135deg, var(--brl-primary) 0%, var(--brl-primary-tint) 100%);
    color: #FFFFFF;
    font-size: 22px;
    margin-bottom: 18px;
}

.brl-benefit__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--brl-ink);
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.brl-benefit__text {
    font-size: 14px;
    line-height: 1.55;
    color: var(--brl-muted);
}

/* ========================================================================== */
/* TESTIMONIALS                                                                */
/* ========================================================================== */
.brl-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (max-width: 1023px) { .brl-testimonials { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 525px)  { .brl-testimonials { grid-template-columns: 1fr; } }

.brl-testimonial {
    background: #FFFFFF;
    border: 1px solid var(--brl-line-soft);
    border-radius: var(--brl-r-lg);
    padding: 32px;
    display: grid;
    gap: 16px;
    position: relative;
    transition: transform var(--brl-base) var(--brl-ease), box-shadow var(--brl-base) var(--brl-ease);
}

.brl-testimonial:hover { transform: translateY(-2px); box-shadow: var(--brl-shadow-md); }

.brl-testimonial::before {
    content: "“";
    position: absolute;
    top: 8px;
    right: 24px;
    font-family: var(--brl-font-serif);
    font-size: 80px;
    color: var(--brl-accent-soft);
    line-height: 1;
    pointer-events: none;
}

.brl-testimonial__rating { color: var(--brl-accent); letter-spacing: 2px; font-size: 14px; line-height: 1; }

.brl-testimonial__quote {
    color: var(--brl-ink);
    font-size: 15.5px;
    line-height: 1.6;
    font-weight: 500;
}

.brl-testimonial__author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--brl-line-soft);
}

.brl-testimonial__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brl-bg-soft);
    overflow: hidden;
    object-fit: cover;
}

.brl-testimonial__name { font-weight: 700; color: var(--brl-ink); font-size: 14.5px; }
.brl-testimonial__role { font-size: 12.5px; color: var(--brl-muted); }

/* ========================================================================== */
/* PRESS LOGOS                                                                */
/* ========================================================================== */
.brl-press {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
    align-items: center;
    padding: 16px 0;
}

@media (max-width: 1023px) { .brl-press { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
@media (max-width: 525px)  { .brl-press { grid-template-columns: repeat(2, 1fr); gap: 20px; } }

.brl-press__logo {
    max-height: 36px;
    width: auto;
    filter: grayscale(100%) opacity(0.6);
    transition: filter var(--brl-base) var(--brl-ease);
    margin: 0 auto;
}

.brl-press__logo:hover { filter: grayscale(0%) opacity(1); }

/* ========================================================================== */
/* FAQ ACCORDION                                                              */
/* ========================================================================== */
.brl-faq {
    display: grid;
    gap: 12px;
    max-width: 880px;
    margin: 0 auto;
}

.brl-faq__item {
    background: #FFFFFF;
    border: 1px solid var(--brl-line-soft);
    border-radius: var(--brl-r-md);
    overflow: hidden;
    transition: border-color var(--brl-fast) var(--brl-ease);
}

.brl-faq__item[data-open="true"] { border-color: var(--brl-line); box-shadow: var(--brl-shadow-xs); }

.brl-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    width: 100%;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--brl-ink);
    text-align: left;
    letter-spacing: -0.005em;
}

.brl-faq__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--brl-bg-soft);
    display: grid;
    place-items: center;
    transition: transform var(--brl-base) var(--brl-ease), background var(--brl-fast) var(--brl-ease);
    color: var(--brl-ink-2);
    font-size: 12px;
}

.brl-faq__item[data-open="true"] .brl-faq__icon {
    transform: rotate(45deg);
    background: var(--brl-primary);
    color: #FFFFFF;
}

.brl-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--brl-base) var(--brl-ease);
}

.brl-faq__item[data-open="true"] .brl-faq__answer { max-height: 800px; }

.brl-faq__answer-inner {
    padding: 0 22px 20px;
    color: var(--brl-muted);
    font-size: 14.5px;
    line-height: 1.6;
}

/* ========================================================================== */
/* METRICS STRIP                                                              */
/* ========================================================================== */
.brl-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

@media (max-width: 768px)  { .brl-metrics { grid-template-columns: repeat(2, 1fr); gap: 24px; } }

.brl-metric {
    padding: 24px 4px 24px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    border-left: 1px solid rgba(255, 255, 255, 0.10);
}

.brl-section--soft .brl-metric,
.brl-section--softer .brl-metric {
    border-top-color: var(--brl-line);
    border-left-color: var(--brl-line);
}

.brl-metric__num {
    font-size: clamp(40px, 4.5vw, 56px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    margin-bottom: 8px;
    color: inherit;
}

.brl-metric__label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: inherit;
    opacity: 0.6;
}

/* ========================================================================== */
/* VIDEO EMBED                                                                */
/* ========================================================================== */
.brl-video {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--brl-r-xl);
    overflow: hidden;
    background: var(--brl-primary);
    box-shadow: var(--brl-shadow-lg);
}

.brl-video iframe,
.brl-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.brl-video__poster {
    position: absolute;
    inset: 0;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    display: grid;
    place-items: center;
    transition: opacity var(--brl-base) var(--brl-ease);
}

.brl-video__poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 18, 32, 0) 30%, rgba(11, 18, 32, 0.55) 100%);
}

.brl-video__play {
    position: relative;
    z-index: 1;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #FFFFFF;
    display: grid;
    place-items: center;
    color: var(--brl-primary);
    box-shadow: var(--brl-shadow-lg);
    transition: transform var(--brl-base) var(--brl-ease);
}

.brl-video__play::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 18px solid currentColor;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.brl-video__poster:hover .brl-video__play { transform: scale(1.08); }

/* ========================================================================== */
/* PLANS COMPARISON                                                           */
/* ========================================================================== */
.brl-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 1023px) { .brl-plans { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

.brl-plan {
    background: #FFFFFF;
    border: 1px solid var(--brl-line-soft);
    border-radius: var(--brl-r-xl);
    padding: 32px;
    display: grid;
    gap: 16px;
    transition: transform var(--brl-base) var(--brl-ease),
                box-shadow var(--brl-base) var(--brl-ease),
                border-color var(--brl-base) var(--brl-ease);
    position: relative;
}

.brl-plan:hover { transform: translateY(-4px); box-shadow: var(--brl-shadow-md); border-color: var(--brl-line); }

.brl-plan--featured {
    border-color: var(--brl-primary);
    background:
        radial-gradient(400px 200px at 100% 0%, rgba(201, 166, 107, 0.10), transparent 60%),
        linear-gradient(180deg, #FFFFFF 0%, #FBFBFD 100%);
    box-shadow: var(--brl-shadow-md);
}

.brl-plan__featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 14px;
    background: var(--brl-accent);
    color: var(--brl-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--brl-r-pill);
    white-space: nowrap;
}

.brl-plan__name {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brl-muted);
}

.brl-plan__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: var(--brl-primary);
    margin-top: 4px;
}

.brl-plan__price-num {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.brl-plan__price-period { color: var(--brl-muted); font-size: 14px; }

.brl-plan__desc { font-size: 14px; color: var(--brl-muted); line-height: 1.55; }

.brl-plan__features {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: grid;
    gap: 10px;
    border-top: 1px solid var(--brl-line-soft);
    padding-top: 20px;
}

.brl-plan__feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--brl-ink-2);
    font-size: 14px;
    line-height: 1.5;
}

.brl-plan__feature::before {
    content: "";
    flex-shrink: 0;
    margin-top: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--brl-success-soft) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="%2316A34A" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') no-repeat center / 12px 12px;
}

.brl-plan__feature--off { color: var(--brl-muted); text-decoration: line-through; opacity: 0.6; }
.brl-plan__feature--off::before {
    background: var(--brl-bg-soft) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="%235A6679" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><line x1="18" y1="6" x2="6" y2="18"/><line x1="6" y1="6" x2="18" y2="18"/></svg>') no-repeat center / 10px 10px;
}

/* ========================================================================== */
/* TRUST BADGES                                                                */
/* ========================================================================== */
.brl-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.brl-trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: #FFFFFF;
    border: 1px solid var(--brl-line-soft);
    border-radius: var(--brl-r-md);
    box-shadow: var(--brl-shadow-xs);
}

.brl-trust-badge__icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: var(--brl-r-sm);
    background: var(--brl-success-soft);
    color: var(--brl-success);
    font-size: 16px;
}

.brl-trust-badge__title { font-size: 13px; font-weight: 700; color: var(--brl-ink); line-height: 1.2; }
.brl-trust-badge__desc  { font-size: 11.5px; color: var(--brl-muted); line-height: 1.2; }

/* ========================================================================== */
/* BAGISTO PRODUCTS CAROUSEL — fit inside our sections cleanly                */
/* ========================================================================== */
/* Bagisto's v-products-carousel renders with its own .container that has 90px
   horizontal padding by default. When we wrap it in our .brl-container (60px
   padding), we get double padding. Collapse Bagisto's container when nested. */

.brl-body .brl-container .container,
.brl-body .brl-section .container {
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-top: 0 !important;
}

/* Carousel header (title + view-all link) on mobile — tighter spacing */
.brl-body .brl-section .container > .flex.justify-between {
    margin-bottom: 16px;
}

.brl-body .brl-section .container > .flex.justify-between h2.font-dmserif {
    font-size: clamp(20px, 3vw, 28px) !important;
}

/* Mobile "Ver todos" link (top-right of carousel) — keep visible but smaller */
@media (max-width: 1023px) {
    .brl-body .brl-section .container .max-lg\:flex p.text-xl {
        font-size: 13.5px !important;
        color: var(--brl-primary);
        font-weight: 600;
        text-decoration: underline;
        text-underline-offset: 3px;
    }
    .brl-body .brl-section .container .max-lg\:flex .icon-arrow-right {
        font-size: 14px !important;
    }
}

/* Carousel scroll container — tighter gaps on mobile */
.brl-body .brl-section [ref="swiperContainer"],
.brl-body .brl-section .flex.gap-8.pb-2\.5 {
    margin-top: 16px !important;
}

@media (max-width: 767px) {
    .brl-body .brl-section .flex.gap-8.pb-2\.5,
    .brl-body .brl-section .flex.max-md\:gap-7 {
        gap: 14px !important;
        padding-left: 4px;
        padding-right: 4px;
        scroll-padding-left: 20px;
    }
    /* Smaller min-width on mobile so 2 cards peek into view */
    .brl-body .brl-section .min-w-\[291px\],
    .brl-body .brl-section .max-sm\:min-w-\[192px\] {
        min-width: 170px !important;
        max-width: 200px;
    }
}

/* Hide the centered "View all" button below the carousel on mobile (it duplicates the top one) */
@media (max-width: 1023px) {
    .brl-body .brl-section a.secondary-button.mx-auto[class*="mt-5"] {
        display: none !important;
    }
}

/* Tighten the centered "View all" desktop button */
.brl-body .brl-section a.secondary-button.mx-auto.mt-5,
.brl-body .brl-section a.secondary-button.mx-auto.mt-14 {
    margin-top: 24px !important;
    padding: 12px 28px !important;
    font-size: 13.5px !important;
}

/* ========================================================================== */
/* SECTION HEADER — tighter on mobile                                         */
/* ========================================================================== */
@media (max-width: 767px) {
    .brl-body .brl-section-header {
        margin-bottom: 20px;
        gap: 10px;
    }
    .brl-body .brl-section-header .brl-h2,
    .brl-body .brl-section-header h2 {
        font-size: clamp(22px, 5.5vw, 28px) !important;
    }
    .brl-body .brl-section-header .brl-lead {
        font-size: 14px !important;
    }
    .brl-body .brl-eyebrow {
        font-size: 11px;
        letter-spacing: 0.12em;
    }
}

/* ========================================================================== */
/* PRODUCT CARD                                                                */
/* ========================================================================== */
.brl-product-card {
    background: #FFFFFF;
    border: 1px solid var(--brl-line-soft);
    border-radius: var(--brl-r-lg);
    overflow: hidden;
    transition: transform var(--brl-base) var(--brl-ease),
                box-shadow var(--brl-base) var(--brl-ease),
                border-color var(--brl-base) var(--brl-ease);
    position: relative;
    display: flex;
    flex-direction: column;
}

.brl-product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--brl-shadow-md);
    border-color: var(--brl-line);
}

.brl-product-card__media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: var(--brl-bg-soft);
    overflow: hidden;
}

.brl-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--brl-slow) var(--brl-ease);
}

.brl-product-card:hover .brl-product-card__media img { transform: scale(1.05); }

.brl-product-card__badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1;
}

.brl-product-card__actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity var(--brl-base) var(--brl-ease), transform var(--brl-base) var(--brl-ease);
}

.brl-product-card:hover .brl-product-card__actions {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1023px) {
    .brl-product-card__actions { opacity: 1; transform: none; }
}

.brl-product-card__action {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 0;
    box-shadow: var(--brl-shadow-sm);
    color: var(--brl-ink);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background var(--brl-fast) var(--brl-ease), color var(--brl-fast) var(--brl-ease);
    font-size: 16px;
}

.brl-product-card__action:hover {
    background: var(--brl-primary);
    color: #FFFFFF;
}

.brl-product-card__body {
    padding: 18px 20px 20px;
    display: grid;
    gap: 8px;
    flex: 1;
}

.brl-product-card__category {
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brl-muted);
    font-weight: 600;
}

.brl-product-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--brl-ink);
    letter-spacing: -0.01em;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.7em;
}

.brl-product-card:hover .brl-product-card__title { color: var(--brl-primary); }

.brl-product-card__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
    margin-top: 4px;
}

.brl-product-card__price-current {
    font-size: 19px;
    font-weight: 800;
    color: var(--brl-primary);
}

.brl-product-card__price-old {
    color: var(--brl-muted);
    text-decoration: line-through;
    font-size: 14px;
    font-weight: 500;
}

.brl-product-card__cta {
    margin-top: 12px;
}

/* ========================================================================== */
/* CATEGORY CARD                                                              */
/* ========================================================================== */
.brl-category-card {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--brl-r-lg);
    overflow: hidden;
    background: var(--brl-bg-soft);
    transition: transform var(--brl-base) var(--brl-ease), box-shadow var(--brl-base) var(--brl-ease);
}

.brl-category-card:hover { transform: translateY(-3px); box-shadow: var(--brl-shadow-md); }

.brl-category-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--brl-slow) var(--brl-ease);
}

.brl-category-card:hover .brl-category-card__img { transform: scale(1.06); }

.brl-category-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 18, 32, 0.05) 0%, rgba(11, 18, 32, 0.55) 70%, rgba(11, 18, 32, 0.85) 100%);
}

.brl-category-card__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    color: #FFFFFF;
    z-index: 1;
}

.brl-category-card__title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.2;
    margin: 0;
}

.brl-category-card__count {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.brl-category-card__arrow {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    display: grid;
    place-items: center;
    transition: background var(--brl-fast) var(--brl-ease), transform var(--brl-base) var(--brl-ease);
}

.brl-category-card:hover .brl-category-card__arrow {
    background: var(--brl-accent);
    color: var(--brl-primary);
    transform: rotate(-45deg);
}

/* ========================================================================== */
/* PAGE CHROME — Breadcrumb, etc.                                             */
/* ========================================================================== */
.brl-breadcrumb {
    padding: 16px 0;
    font-size: 13.5px;
    color: var(--brl-muted);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.brl-breadcrumb a { color: var(--brl-muted); }
.brl-breadcrumb a:hover { color: var(--brl-primary); }
.brl-breadcrumb__sep { color: var(--brl-line); }

/* ========================================================================== */
/* FEATURED MOSAIC                                                            */
/* ========================================================================== */
.brl-mosaic {
    display: grid;
    gap: 20px;
}

/* 2×2 grid (default for 4 items) */
.brl-mosaic--grid-2x2 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, minmax(220px, 1fr));
}

/* Row of 4 items in single row */
.brl-mosaic--row-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* 3-item row */
.brl-mosaic--row-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* 2-item row (50/50) */
.brl-mosaic--row-2 {
    grid-template-columns: repeat(2, 1fr);
    min-height: 320px;
}

/* Single hero card */
.brl-mosaic--hero-card {
    grid-template-columns: 1fr;
    aspect-ratio: 21 / 9;
}

/* Asymmetric / Bento: 1 large featured + N small beside (auto-adapts to 3, 4, 5 itens) */
.brl-mosaic--asymmetric {
    grid-template-columns: 1.5fr 1fr;
    grid-auto-rows: minmax(160px, 1fr);
    min-height: 560px;
}
.brl-mosaic--asymmetric > .brl-mosaic-card:nth-child(1) {
    grid-row: 1 / -1;
    grid-column: 1;
}

/* Asymmetric variant 5+: large left + 2x2 grid right */
.brl-mosaic--asymmetric-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-auto-rows: minmax(140px, 1fr);
    min-height: 560px;
}
.brl-mosaic--asymmetric-grid > .brl-mosaic-card:nth-child(1) {
    grid-row: 1 / -1;
    grid-column: 1;
}

/* Bento — 4 columns, first card is 2x2, rest are 1x1. Fits 5/9/13 cards exactly */
.brl-mosaic--bento {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(180px, 1fr);
    grid-auto-flow: dense;
}
.brl-mosaic--bento > .brl-mosaic-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 1180px) {
    .brl-mosaic--bento { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
    .brl-mosaic--bento { grid-template-columns: repeat(2, 1fr); }
    .brl-mosaic--bento > .brl-mosaic-card:nth-child(1) { grid-column: span 2; }
}
@media (max-width: 525px) {
    .brl-mosaic--bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .brl-mosaic--bento > .brl-mosaic-card:nth-child(1) { grid-column: auto; grid-row: auto; aspect-ratio: 16/9; }
    .brl-mosaic--bento > .brl-mosaic-card { aspect-ratio: 16/9; }
}

@media (max-width: 1023px) {
    .brl-mosaic--row-4,
    .brl-mosaic--row-3,
    .brl-mosaic--asymmetric,
    .brl-mosaic--asymmetric-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
        grid-template-rows: auto;
        min-height: 0;
    }
    .brl-mosaic--asymmetric > .brl-mosaic-card:nth-child(1),
    .brl-mosaic--asymmetric-grid > .brl-mosaic-card:nth-child(1) {
        grid-row: auto;
        grid-column: span 2;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 525px) {
    .brl-mosaic--grid-2x2,
    .brl-mosaic--row-4,
    .brl-mosaic--row-3,
    .brl-mosaic--row-2,
    .brl-mosaic--asymmetric { grid-template-columns: 1fr; grid-template-rows: auto; }
    .brl-mosaic--asymmetric > .brl-mosaic-card:nth-child(1) { grid-column: auto; }
}

.brl-mosaic-card {
    position: relative;
    display: block;
    border-radius: var(--brl-r-lg);
    overflow: hidden;
    background-color: var(--brl-primary);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #FFFFFF;
    min-height: 240px;
    text-decoration: none;
    transition: transform var(--brl-base) var(--brl-ease),
                box-shadow var(--brl-base) var(--brl-ease);
    isolation: isolate;
}

.brl-mosaic-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform var(--brl-slow) var(--brl-ease);
    z-index: -1;
}

.brl-mosaic-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--brl-shadow-xl);
}

.brl-mosaic-card:hover::before {
    transform: scale(1.06);
}

.brl-mosaic-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(11, 18, 32, 0) 30%,
        rgba(11, 18, 32, 0.45) 65%,
        rgba(11, 18, 32, 0.85) 100%
    );
    transition: background var(--brl-base) var(--brl-ease);
    pointer-events: none;
}

.brl-mosaic-card:hover .brl-mosaic-card__overlay {
    background: linear-gradient(180deg,
        rgba(11, 18, 32, 0.05) 20%,
        rgba(11, 18, 32, 0.55) 60%,
        rgba(11, 18, 32, 0.92) 100%
    );
}

.brl-mosaic-card__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    z-index: 1;
}

.brl-mosaic-card__sub {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brl-accent);
    margin-bottom: 6px;
}

.brl-mosaic-card__title {
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.15;
    color: #FFFFFF;
    margin: 0;
}

.brl-mosaic-card__arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #FFFFFF;
    display: grid;
    place-items: center;
    transition: background var(--brl-base) var(--brl-ease),
                color var(--brl-base) var(--brl-ease),
                transform var(--brl-base) var(--brl-ease);
    z-index: 2;
}

.brl-mosaic-card__arrow svg {
    width: 18px;
    height: 18px;
}

.brl-mosaic-card:hover .brl-mosaic-card__arrow {
    background: var(--brl-accent);
    color: var(--brl-primary);
    transform: translate(4px, -4px);
}

/* Hero variant (single card) — taller title */
.brl-mosaic--hero-card .brl-mosaic-card__title {
    font-size: clamp(28px, 3.5vw, 44px);
}

.brl-mosaic--hero-card .brl-mosaic-card__body {
    padding: 40px;
}

/* ============== GHOST / PLACEHOLDER CARDS ============== */
.brl-mosaic-card--ghost {
    background: none !important;
    background-color: var(--brl-primary) !important;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.brl-mosaic-card--ghost::before {
    content: none;
}

.brl-mosaic-card--ghost::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(201, 166, 107, 0.20) 0%, transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, var(--brl-primary-tint) 0%, var(--brl-primary) 100%);
    z-index: 0;
}

.brl-mosaic-card--ghost > * { position: relative; z-index: 1; }

/* Decorative grid pattern overlay */
.brl-mosaic-card--ghost .brl-mosaic-card__overlay {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    background-color: transparent;
    opacity: 0.5;
}

.brl-mosaic-card--ghost:hover {
    transform: translateY(-2px);
    box-shadow: var(--brl-shadow-lg);
}

.brl-mosaic-card--ghost:hover::after {
    background:
        radial-gradient(circle at 30% 20%, rgba(201, 166, 107, 0.32) 0%, transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, var(--brl-primary-tint) 0%, var(--brl-primary) 100%);
}

.brl-mosaic-card--ghost .brl-mosaic-card__body {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    padding: 24px;
}

.brl-mosaic-card--ghost .brl-mosaic-card__sub {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(201, 166, 107, 0.18);
    border: 1px solid rgba(201, 166, 107, 0.45);
    border-radius: var(--brl-r-pill);
    color: var(--brl-accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 10.5px;
    font-weight: 700;
    margin-bottom: 14px;
}

.brl-mosaic-card--ghost .brl-mosaic-card__sub::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brl-accent);
    animation: brlPulse 2.4s var(--brl-ease) infinite;
}

.brl-mosaic-card--ghost .brl-mosaic-card__title {
    font-family: var(--brl-font-serif);
    font-weight: 400;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.92);
}

.brl-mosaic-card--ghost .brl-mosaic-card__arrow {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
}

.brl-mosaic-card--ghost:hover .brl-mosaic-card__arrow {
    background: var(--brl-accent);
    color: var(--brl-primary);
    transform: none;
}

/* Asymmetric — featured (first) card gets larger typography + bigger arrow */
.brl-mosaic--asymmetric > .brl-mosaic-card:nth-child(1) .brl-mosaic-card__title,
.brl-mosaic--asymmetric-grid > .brl-mosaic-card:nth-child(1) .brl-mosaic-card__title {
    font-size: clamp(28px, 3vw, 42px);
}

.brl-mosaic--asymmetric > .brl-mosaic-card:nth-child(1) .brl-mosaic-card__body,
.brl-mosaic--asymmetric-grid > .brl-mosaic-card:nth-child(1) .brl-mosaic-card__body {
    padding: 36px;
}

.brl-mosaic--asymmetric > .brl-mosaic-card:nth-child(1) .brl-mosaic-card__arrow,
.brl-mosaic--asymmetric-grid > .brl-mosaic-card:nth-child(1) .brl-mosaic-card__arrow {
    width: 52px;
    height: 52px;
}

.brl-mosaic--asymmetric > .brl-mosaic-card:nth-child(1) .brl-mosaic-card__arrow svg,
.brl-mosaic--asymmetric-grid > .brl-mosaic-card:nth-child(1) .brl-mosaic-card__arrow svg {
    width: 22px;
    height: 22px;
}

/* Small cards in asymmetric — tighter padding, smaller title */
.brl-mosaic--asymmetric > .brl-mosaic-card:nth-child(n+2) .brl-mosaic-card__title,
.brl-mosaic--asymmetric-grid > .brl-mosaic-card:nth-child(n+2) .brl-mosaic-card__title {
    font-size: 18px;
}

.brl-mosaic--asymmetric > .brl-mosaic-card:nth-child(n+2) .brl-mosaic-card__body,
.brl-mosaic--asymmetric-grid > .brl-mosaic-card:nth-child(n+2) .brl-mosaic-card__body {
    padding: 20px;
}

.brl-mosaic--asymmetric > .brl-mosaic-card:nth-child(n+2) .brl-mosaic-card__arrow,
.brl-mosaic--asymmetric-grid > .brl-mosaic-card:nth-child(n+2) .brl-mosaic-card__arrow {
    width: 32px;
    height: 32px;
    top: 14px;
    right: 14px;
}

.brl-mosaic--asymmetric > .brl-mosaic-card:nth-child(n+2) .brl-mosaic-card__arrow svg,
.brl-mosaic--asymmetric-grid > .brl-mosaic-card:nth-child(n+2) .brl-mosaic-card__arrow svg {
    width: 14px;
    height: 14px;
}

.brl-mosaic--asymmetric > .brl-mosaic-card:nth-child(n+2),
.brl-mosaic--asymmetric-grid > .brl-mosaic-card:nth-child(n+2) {
    min-height: 0;
}

/* ========================================================================== */
/* CHECKOUT ONEPAGE                                                            */
/* ========================================================================== */

.brl-checkout-header {
    background: #FFFFFF;
    border-bottom: 1px solid var(--brl-line-soft);
    padding: 18px 0;
    margin-bottom: 24px;
}

.brl-checkout-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.brl-checkout-header__logo img { max-height: 44px; width: auto; display: block; }

.brl-checkout-header__secure {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brl-success);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    background: var(--brl-success-soft);
    border-radius: var(--brl-r-pill);
}

.brl-checkout-header__secure svg { width: 16px; height: 16px; }

.brl-checkout-header__login {
    font-size: 14px;
    color: var(--brl-ink-2);
}

.brl-checkout-wrap {
    padding-bottom: 80px;
}

/* ========== STEP INDICATOR ========== */
.brl-checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 0 40px;
    flex-wrap: wrap;
}

.brl-checkout-step {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--brl-muted);
    transition: color var(--brl-base) var(--brl-ease);
}

.brl-checkout-step__num {
    display: inline-grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid var(--brl-line);
    color: var(--brl-muted);
    font-size: 13px;
    font-weight: 700;
    transition: all var(--brl-base) var(--brl-ease);
}

.brl-checkout-step__label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.005em;
}

.brl-checkout-step__sep {
    flex: 0 1 64px;
    height: 2px;
    background: var(--brl-line);
    border-radius: 1px;
    transition: background var(--brl-base) var(--brl-ease);
}

.brl-checkout-step.is-active {
    color: var(--brl-primary);
}
.brl-checkout-step.is-active .brl-checkout-step__num {
    background: var(--brl-primary);
    border-color: var(--brl-primary);
    color: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(11, 18, 32, 0.10);
}

.brl-checkout-step.is-done {
    color: var(--brl-success);
}
.brl-checkout-step.is-done .brl-checkout-step__num {
    background: var(--brl-success) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') no-repeat center / 14px 14px;
    border-color: var(--brl-success);
    color: transparent;
    box-shadow: none;
}

/* When step is done, the separator after it turns green */
.brl-checkout-step.is-done + .brl-checkout-step__sep {
    background: var(--brl-success);
}

@media (max-width: 525px) {
    .brl-checkout-steps { gap: 8px; }
    .brl-checkout-step__sep { flex: 0 1 24px; }
    .brl-checkout-step__label { display: none; }
}

/* ========== MAIN GRID ========== */
.brl-checkout-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 32px;
    align-items: flex-start;
}

@media (max-width: 1023px) {
    .brl-checkout-grid { grid-template-columns: 1fr; gap: 20px; }
}

.brl-checkout-steps-col { display: grid; gap: 20px; min-width: 0; }

.brl-checkout-summary-col {
    position: sticky;
    top: 24px;
    display: grid;
    gap: 16px;
    min-width: 0;
}

/* ========== STEP CARD WRAPPER ========== */
.brl-checkout-card {
    background: #FFFFFF;
    border: 1px solid var(--brl-line-soft);
    border-radius: var(--brl-r-lg);
    padding: 28px 32px;
    box-shadow: var(--brl-shadow-xs);
}

@media (max-width: 525px) {
    .brl-checkout-card { padding: 22px 20px; border-radius: var(--brl-r-md); }
}

/* Section titles inside checkout cards — from Bagisto, target their typography */
.brl-checkout-card h1,
.brl-checkout-card h2,
.brl-checkout-card .text-2xl,
.brl-checkout-card .text-xl {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--brl-ink) !important;
    letter-spacing: -0.015em;
    margin-bottom: 16px;
}

/* Address forms — soften Bagisto's defaults */
.brl-checkout-card label,
.brl-checkout-card .label-text {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--brl-ink-2);
    margin-bottom: 4px;
}

.brl-checkout-card input[type="text"],
.brl-checkout-card input[type="email"],
.brl-checkout-card input[type="tel"],
.brl-checkout-card input[type="number"],
.brl-checkout-card select,
.brl-checkout-card textarea {
    border-radius: var(--brl-r-md) !important;
    border-color: var(--brl-line) !important;
    background: #FFFFFF !important;
    padding: 12px 14px !important;
    font-size: 14.5px !important;
}

.brl-checkout-card input:focus,
.brl-checkout-card select:focus,
.brl-checkout-card textarea:focus {
    border-color: var(--brl-primary) !important;
    box-shadow: var(--brl-ring-focus);
    outline: none;
}

/* Selectable method cards (shipping/payment) — Bagisto uses radio + label pattern */
.brl-checkout-card input[type="radio"] + label {
    cursor: pointer;
}

/* Try to detect the shipping/payment "method" cards by structure they share */
.brl-checkout-card .grid > div[class*="border"] {
    border-radius: var(--brl-r-md) !important;
    border-color: var(--brl-line) !important;
    transition: border-color var(--brl-fast) var(--brl-ease),
                background var(--brl-fast) var(--brl-ease);
}

.brl-checkout-card .grid > div[class*="border"]:hover {
    border-color: var(--brl-primary) !important;
    background: var(--brl-bg-softer) !important;
}

/* "Continue" buttons inside steps — match brl primary */
.brl-checkout-card button[type="submit"]:not(.no-brl),
.brl-checkout-card .primary-button {
    background: var(--brl-primary) !important;
    color: #FFFFFF !important;
    border-color: var(--brl-primary) !important;
    border-radius: var(--brl-r-md) !important;
    padding: 13px 28px !important;
    font-weight: 600 !important;
    font-size: 14.5px !important;
    letter-spacing: 0.005em;
    box-shadow: var(--brl-shadow-sm);
    transition: all var(--brl-fast) var(--brl-ease);
}

.brl-checkout-card button[type="submit"]:not(.no-brl):hover,
.brl-checkout-card .primary-button:hover {
    background: var(--brl-primary-soft) !important;
    box-shadow: var(--brl-shadow-md);
    transform: translateY(-1px);
}

.brl-checkout-card .secondary-button {
    color: var(--brl-ink-2) !important;
    border-color: var(--brl-line) !important;
    background: transparent !important;
    border-radius: var(--brl-r-md) !important;
    padding: 13px 28px !important;
    font-weight: 600 !important;
}

.brl-checkout-card .secondary-button:hover {
    border-color: var(--brl-primary) !important;
    color: var(--brl-primary) !important;
    background: transparent !important;
}

/* ========== SUMMARY (right) ========== */
.brl-checkout-summary {
    background: #FFFFFF;
    border: 1px solid var(--brl-line);
    border-radius: var(--brl-r-lg);
    padding: 28px;
    box-shadow: var(--brl-shadow-sm);
}

.brl-checkout-summary h1,
.brl-checkout-summary .text-2xl {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--brl-ink) !important;
    letter-spacing: -0.015em;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--brl-line-soft);
}

/* Cart items inside summary */
.brl-checkout-summary .gap-x-4 img {
    border-radius: var(--brl-r-md) !important;
    background: var(--brl-bg-soft);
}

.brl-checkout-summary .text-navyBlue {
    color: var(--brl-ink) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    line-height: 1.4;
}

/* Subtotal/Grand total rows */
.brl-checkout-summary .border-b,
.brl-checkout-summary [class*="border-b"] {
    border-color: var(--brl-line-soft) !important;
}

.brl-checkout-summary .grand-total,
.brl-checkout-summary [class*="grand-total"],
.brl-checkout-summary .font-semibold.text-2xl {
    color: var(--brl-primary) !important;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
}

/* ========== PLACE ORDER + TRUST ========== */
.brl-checkout-place-order {
    display: grid;
    gap: 16px;
}

.brl-checkout-trust {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    padding: 14px 18px;
    background: var(--brl-bg-soft);
    border-radius: var(--brl-r-md);
}

.brl-checkout-trust__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--brl-ink-2);
}

.brl-checkout-trust__item svg {
    width: 14px;
    height: 14px;
    color: var(--brl-success);
    flex-shrink: 0;
}

/* ========== PHONE FIELD WITH DDI SELECTOR ========== */
.brl-phone-field {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0;
    background: #FFFFFF;
    border: 1px solid var(--brl-line);
    border-radius: var(--brl-r-md);
    transition: border-color var(--brl-fast) var(--brl-ease),
                box-shadow var(--brl-fast) var(--brl-ease);
    overflow: visible;
}

.brl-phone-field:focus-within {
    border-color: var(--brl-primary);
    box-shadow: var(--brl-ring-focus);
}

.brl-phone-field__ddi {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: var(--brl-bg-soft);
    border: 0;
    border-right: 1px solid var(--brl-line);
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--brl-ink);
    border-top-left-radius: calc(var(--brl-r-md) - 1px);
    border-bottom-left-radius: calc(var(--brl-r-md) - 1px);
    transition: background var(--brl-fast) var(--brl-ease);
    white-space: nowrap;
}

.brl-phone-field__ddi:hover { background: var(--brl-line-soft); }

.brl-phone-field__flag {
    font-size: 18px;
    line-height: 1;
    display: inline-block;
}

.brl-phone-field__code {
    font-variant-numeric: tabular-nums;
    color: var(--brl-ink);
}

.brl-phone-field__caret {
    font-size: 12px !important;
    color: var(--brl-muted);
    margin-left: 2px;
}

.brl-phone-field__number {
    border: 0 !important;
    background: transparent !important;
    padding: 12px 14px !important;
    font-size: 14.5px !important;
    color: var(--brl-ink);
    box-shadow: none !important;
    border-radius: 0 !important;
    font-variant-numeric: tabular-nums;
    min-width: 0;
}

.brl-phone-field__number:focus {
    box-shadow: none !important;
    outline: none;
}

/* DDI dropdown menu */
.brl-phone-field__menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 20;
    width: min(320px, 90vw);
    background: #FFFFFF;
    border: 1px solid var(--brl-line-soft);
    border-radius: var(--brl-r-md);
    box-shadow: var(--brl-shadow-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 360px;
}

.brl-phone-field__search {
    width: 100%;
    padding: 12px 14px !important;
    border: 0 !important;
    border-bottom: 1px solid var(--brl-line-soft) !important;
    border-radius: 0 !important;
    font-size: 13.5px !important;
    background: var(--brl-bg-soft) !important;
    box-shadow: none !important;
    outline: none;
}

.brl-phone-field__list {
    overflow-y: auto;
    max-height: 300px;
    padding: 6px;
}

.brl-phone-field__option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 12px;
    background: transparent;
    border: 0;
    border-radius: var(--brl-r-sm);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 13.5px;
    color: var(--brl-ink);
    transition: background var(--brl-fast) var(--brl-ease);
}

.brl-phone-field__option:hover {
    background: var(--brl-bg-soft);
}

.brl-phone-field__option.is-active {
    background: var(--brl-bg-soft);
    color: var(--brl-primary);
    font-weight: 600;
}

.brl-phone-field__option-name {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.brl-phone-field__option-code {
    color: var(--brl-muted);
    font-variant-numeric: tabular-nums;
    font-size: 13px;
}

/* Ensure dropdown's borders inside the checkout card don't get overridden by .brl-checkout-card input rule */
.brl-checkout-card .brl-phone-field input[type="tel"] {
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 12px 14px !important;
}

.brl-checkout-card .brl-phone-field input[type="text"].brl-phone-field__search {
    border: 0 !important;
    border-bottom: 1px solid var(--brl-line-soft) !important;
    border-radius: 0 !important;
    background: var(--brl-bg-soft) !important;
}

/* Hidden phone field (vee-validate Field) — visually hidden, accessible, in DOM */
.brl-phone-hidden-wrap {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    pointer-events: none;
}

.brl-phone-hidden-wrap input {
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* ========== MOBILE SUMMARY (collapsible) ========== */
.brl-checkout-mobile-summary {
    background: #FFFFFF;
    border: 1px solid var(--brl-line);
    border-radius: var(--brl-r-lg);
    overflow: hidden;
    margin-bottom: 16px;
}

.brl-checkout-mobile-summary__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--brl-ink);
    text-align: left;
}

.brl-checkout-mobile-summary__total {
    display: inline-flex;
    align-items: center;
    color: var(--brl-primary);
    font-weight: 800;
    font-size: 16px;
}

/* ========================================================================== */
/* SERVICES STRIP — admin services_content with modern SVG icons              */
/* ========================================================================== */
.brl-services {
    border-top: 1px solid var(--brl-line-soft);
    border-bottom: 1px solid var(--brl-line-soft);
}

.brl-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

@media (max-width: 1023px) {
    .brl-services-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 525px) {
    .brl-services-grid { grid-template-columns: 1fr; gap: 20px; }
}

.brl-service {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 8px 4px;
    transition: transform var(--brl-base) var(--brl-ease);
}

.brl-service:hover { transform: translateY(-2px); }

.brl-service__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: var(--brl-r-lg);
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 30% 30%, rgba(201, 166, 107, 0.18) 0%, transparent 60%),
        linear-gradient(135deg, var(--brl-primary) 0%, var(--brl-primary-tint) 100%);
    color: var(--brl-accent);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 6px 16px rgba(11, 18, 32, 0.10);
    position: relative;
    transition: transform var(--brl-base) var(--brl-ease), box-shadow var(--brl-base) var(--brl-ease);
}

.brl-service:hover .brl-service__icon {
    transform: scale(1.05) rotate(-3deg);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        0 10px 24px rgba(11, 18, 32, 0.14);
}

.brl-service__icon svg {
    width: 26px;
    height: 26px;
    display: block;
}

.brl-service__icon [class^="icon-"] {
    font-size: 26px;
    color: var(--brl-accent);
}

.brl-service__body {
    flex: 1;
    min-width: 0;
}

.brl-service__title {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--brl-ink);
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin: 0;
}

.brl-service__text {
    margin-top: 6px;
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--brl-muted);
}

/* ========================================================================== */
/* FINAL CTA CARD                                                             */
/* ========================================================================== */
.brl-final-cta {
    background:
        radial-gradient(500px 250px at 90% 10%, rgba(201, 166, 107, 0.12), transparent 60%),
        linear-gradient(180deg, #FFFFFF 0%, var(--brl-bg-soft) 100%);
    border: 1px solid var(--brl-line);
    border-radius: var(--brl-r-2xl);
    padding: clamp(48px, 6vw, 80px);
    text-align: center;
    box-shadow: var(--brl-shadow-md);
}

.brl-final-cta__title {
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: var(--brl-ink);
    margin: 16px auto 16px;
    max-width: 760px;
}

.brl-final-cta__text {
    font-size: clamp(15px, 1.3vw, 17px);
    color: var(--brl-muted);
    margin: 0 auto;
    max-width: 560px;
    line-height: 1.6;
}

.brl-final-cta__actions {
    margin-top: 32px;
    display: inline-flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}
