/* HelloLifts customer portal */
:root {
    --portal-bg: #f4f5f7;
    --portal-surface: #ffffff;
    --portal-text: #111827;
    --portal-muted: #6b7280;
    --portal-border: #e5e7eb;
    --portal-navy: #1e3a5f;
    --portal-navy-deep: #152a45;
    --portal-orange: #e65100;
    --portal-orange-hover: #c2410c;
    --portal-footer: #0f172a;
    --portal-radius: 1rem;
    --portal-radius-lg: 1.25rem;
    --portal-max: 72rem;
    --font-portal: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
}

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

body.portal-body {
    margin: 0;
    font-family: var(--font-portal);
    background: var(--portal-bg);
    color: var(--portal-text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.portal-body main {
    min-height: 50vh;
}

.portal-svc-page {
    background: var(--portal-bg);
    padding-bottom: 2rem;
}

.portal-body a.portal-svc-price-card__cta,
.portal-body a.portal-book-btn,
.portal-body button.portal-book-btn {
    text-decoration: none;
}

a.portal-link {
    color: inherit;
    text-decoration: none;
}

a.portal-link:hover {
    opacity: 0.85;
}

.portal-wrap {
    max-width: var(--portal-max);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.portal-header {
    background: var(--portal-surface);
    border-bottom: 1px solid var(--portal-border);
    position: sticky;
    top: 0;
    z-index: 50;
}

.portal-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 4rem;
}

.portal-logo {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--portal-text);
}

.portal-nav {
    display: none;
    gap: 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #374151;
}

@media (min-width: 768px) {
    .portal-nav {
        display: flex;
    }
}

.portal-header__actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.portal-btn-admin {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: var(--portal-orange);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
}

.portal-btn-admin:hover {
    background: var(--portal-orange-hover);
    color: #fff;
}

.portal-icon-btn {
    position: relative;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: transparent;
    border-radius: 999px;
    cursor: pointer;
    color: #374151;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.portal-icon-btn:hover {
    background: #f3f4f6;
}

.portal-badge {
    position: absolute;
    top: 0.15rem;
    right: 0.15rem;
    min-width: 1.1rem;
    height: 1.1rem;
    padding: 0 0.25rem;
    border-radius: 999px;
    background: #dc2626;
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portal-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: #dbeafe;
    color: var(--portal-navy);
    font-size: 0.75rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.portal-site-bar {
    padding: 0.75rem 0 1rem;
}

.portal-site-picker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 100%;
    padding: 0.65rem 1rem;
    background: var(--portal-surface);
    border: 1px solid var(--portal-border);
    border-radius: var(--portal-radius);
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    cursor: default;
}

.portal-site-picker svg {
    flex-shrink: 0;
    color: #dc2626;
}

.portal-site-picker span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.portal-hero {
    position: relative;
    border-radius: var(--portal-radius-lg);
    overflow: hidden;
    min-height: 11rem;
    background: var(--portal-navy-deep);
    margin-bottom: 1.5rem;
}

.portal-hero__slide {
    display: none;
    padding: 1.75rem 3rem 2.5rem;
    color: #fff;
    min-height: 11rem;
}

.portal-hero__slide.is-active {
    display: block;
}

.portal-hero__slide--navy {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%);
}

.portal-hero__slide--purple {
    background: linear-gradient(135deg, #5b21b6 0%, #312e81 100%);
}

.portal-hero__slide--teal {
    background: linear-gradient(135deg, #0d9488 0%, #115e59 100%);
}

.portal-hero__badge {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    border-radius: 0.35rem;
    background: rgba(255, 255, 255, 0.2);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.65rem;
}

.portal-hero__title {
    font-size: clamp(1.25rem, 3vw, 1.65rem);
    font-weight: 800;
    margin: 0 0 0.35rem;
    max-width: 28rem;
}

.portal-hero__sub {
    margin: 0 0 1rem;
    font-size: 0.875rem;
    opacity: 0.92;
    max-width: 26rem;
}

.portal-hero__cta {
    display: inline-block;
    padding: 0.55rem 1.15rem;
    background: #fff;
    color: var(--portal-navy);
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
}

.portal-hero__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    color: #111;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.portal-hero__nav--prev {
    left: 0.75rem;
}

.portal-hero__nav--next {
    right: 0.75rem;
}

.portal-hero__dots {
    position: absolute;
    bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.35rem;
}

.portal-hero__dot {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 0;
}

.portal-hero__dot.is-active {
    background: #fff;
    width: 1.1rem;
}

.portal-main-grid {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

@media (min-width: 992px) {
    .portal-main-grid {
        grid-template-columns: 1.15fr 0.85fr;
        align-items: start;
    }
}

.portal-card {
    background: var(--portal-surface);
    border: 1px solid var(--portal-border);
    border-radius: var(--portal-radius-lg);
    padding: 1.25rem 1.35rem 1.5rem;
}

.portal-card__title {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 1.25rem;
    letter-spacing: -0.02em;
}

.portal-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem 0.75rem;
}

@media (max-width: 640px) {
    .portal-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.portal-service-item {
    text-align: center;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.portal-service-item__icon {
    width: 3.25rem;
    height: 3.25rem;
    margin: 0 auto 0.5rem;
    border-radius: 0.85rem;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
}

.portal-service-item__label {
    font-size: 0.6875rem;
    font-weight: 600;
    line-height: 1.25;
    color: #374151;
}

.portal-service-item__badge {
    position: absolute;
    top: -0.35rem;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    color: #fff;
    font-size: 0.5625rem;
    font-weight: 700;
    padding: 0.15rem 0.35rem;
    border-radius: 0.25rem;
    white-space: nowrap;
}

.portal-subsection-title {
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 1.5rem 0 0.75rem;
}

.portal-product-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.portal-product-card__img {
    aspect-ratio: 4/3;
    border-radius: 0.75rem;
    margin-bottom: 0.4rem;
}

.portal-product-card__img--lavender {
    background: linear-gradient(145deg, #e9d5ff, #c4b5fd);
}

.portal-product-card__img--rose {
    background: linear-gradient(145deg, #fecdd3, #fda4af);
}

.portal-product-card__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #374151;
}

.portal-tile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.portal-tile {
    border-radius: var(--portal-radius);
    min-height: 7.5rem;
    padding: 1rem;
    display: flex;
    align-items: flex-end;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.portal-tile--sky {
    background: #7dd3fc;
    color: #0c4a6e;
}

.portal-tile--gold {
    background: #c4a574;
}

.portal-tile--slate {
    background: #475569;
}

.portal-tile--mint {
    background: #86efac;
    color: #14532d;
}

.portal-section {
    margin-bottom: 2rem;
}

.portal-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.85rem;
}

.portal-section__title {
    font-size: 1.125rem;
    font-weight: 800;
    margin: 0;
}

.portal-scroll {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.35rem;
    scrollbar-width: thin;
}

.portal-offer-card {
    flex: 0 0 min(85%, 320px);
    scroll-snap-align: start;
    border-radius: var(--portal-radius-lg);
    padding: 1.25rem;
    min-height: 10rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    color: inherit;
}

.portal-offer-card--tan {
    background: linear-gradient(135deg, #a89070 0%, #8b7355 100%);
    color: #fff;
}

.portal-offer-card--light {
    background: #f3f4f6;
    color: #111;
}

.portal-offer-card--purple {
    background: linear-gradient(135deg, #7c3aed 0%, #4c1d95 100%);
    color: #fff;
}

.portal-offer-card__tag {
    align-self: flex-start;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 0.35rem;
    background: rgba(255, 255, 255, 0.25);
    margin-bottom: 0.5rem;
}

.portal-offer-card__tag--green {
    background: #22c55e;
    color: #fff;
}

.portal-offer-card__eyebrow {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.portal-offer-card__title {
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0 0 0.25rem;
}

.portal-offer-card__sub {
    font-size: 0.8125rem;
    opacity: 0.9;
    margin: 0 0 0.75rem;
}

.portal-offer-card__cta {
    align-self: flex-start;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    background: #fff;
    color: #111;
}

.portal-offer-card--light .portal-offer-card__cta {
    background: #111;
    color: #fff;
}

.portal-note-card {
    flex: 0 0 140px;
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
}

.portal-note-card__img {
    height: 100px;
    border-radius: 0.85rem;
    margin-bottom: 0.45rem;
}

.portal-note-card__label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #374151;
    line-height: 1.3;
}

.portal-note-card__img--sunset {
    background: linear-gradient(160deg, #fde047, #f97316);
}

.portal-note-card__img--ocean {
    background: linear-gradient(160deg, #7dd3fc, #2563eb);
}

.portal-note-card__img--violet {
    background: linear-gradient(160deg, #c4b5fd, #7c3aed);
}

.portal-note-card__img--pink {
    background: linear-gradient(160deg, #fbcfe8, #f472b6);
}

.portal-note-card__img--sea {
    background: linear-gradient(160deg, #99f6e4, #14b8a6);
}

.portal-page-hero {
    background: var(--portal-surface);
    border: 1px solid var(--portal-border);
    border-radius: var(--portal-radius-lg);
    padding: 2rem 1.5rem;
    margin: 1rem 0 2rem;
}

.portal-page-hero h1 {
    margin: 0 0 0.5rem;
    font-size: 1.75rem;
    font-weight: 800;
}

.portal-page-hero p {
    margin: 0;
    color: var(--portal-muted);
    max-width: 40rem;
}

.portal-back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--portal-navy);
    margin-bottom: 1rem;
    text-decoration: none;
}

.portal-footer {
    background: var(--portal-footer);
    color: #cbd5e1;
    margin-top: 3rem;
    padding: 2.5rem 0 1.25rem;
}

.portal-footer__brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.5rem;
}

.portal-footer__tagline {
    font-size: 0.8125rem;
    line-height: 1.55;
    max-width: 16rem;
    margin: 0 0 1.5rem;
}

.portal-footer__grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

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

.portal-footer__heading {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7dd3fc;
    margin: 0 0 0.65rem;
}

.portal-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.portal-footer__links li {
    margin-bottom: 0.4rem;
}

.portal-footer__links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.8125rem;
}

.portal-footer__links a:hover {
    color: #fff;
}

.portal-footer__bottom {
    border-top: 1px solid #334155;
    margin-top: 2rem;
    padding-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.75rem;
}

.portal-footer__bottom-links {
    display: flex;
    gap: 1.25rem;
}

.portal-footer__bottom-links a {
    color: #94a3b8;
    text-decoration: none;
}

.portal-footer__bottom-links a:hover {
    color: #fff;
}

/* Service detail */
.portal-svc-hero {
    background: linear-gradient(165deg, #1e3a5f 0%, #0f2744 55%, #0a1f38 100%);
    color: #fff;
    padding: 2.25rem 0 5rem;
}

.portal-svc-hero__badge {
    display: inline-block;
    background: var(--portal-orange);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 0.25rem 0.5rem;
    border-radius: 0.35rem;
    margin-bottom: 0.75rem;
}

.portal-svc-hero__title {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 0 0.35rem;
}

.portal-svc-hero__sub {
    margin: 0;
    opacity: 0.92;
    max-width: 22rem;
    font-size: 0.9375rem;
}

.portal-svc-body {
    margin-top: -3rem;
    padding-bottom: 2.5rem;
    max-width: 26rem;
}

.portal-svc-price-card {
    background: #fff;
    border-radius: 1.15rem;
    padding: 1.35rem 1.5rem;
    box-shadow: 0 12px 40px rgba(15, 39, 68, 0.14);
    margin-bottom: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.portal-svc-price-card__label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #9ca3af;
    text-transform: uppercase;
}

.portal-svc-price-card__amount {
    font-size: 1.65rem;
    font-weight: 800;
    margin: 0.25rem 0 1rem;
}

.portal-svc-price-card__cta {
    display: block;
    text-align: center;
    background: var(--portal-orange);
    color: #fff !important;
    font-weight: 700;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(230, 81, 0, 0.35);
}

.portal-svc-price-card__cta:hover {
    background: var(--portal-orange-hover);
    color: #fff !important;
}

.portal-svc-section-title {
    color: var(--portal-orange);
    font-size: 1rem;
    font-weight: 800;
    margin: 0 0 0.35rem;
}

.portal-svc-section-text {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0 0 1rem;
}

.portal-svc-feature-card {
    display: flex;
    gap: 0.75rem;
    background: #fff;
    border: 1px solid var(--portal-border);
    border-radius: 0.85rem;
    padding: 1rem;
    margin-bottom: 0.65rem;
}

.portal-svc-feature-card__step {
    background: #dbeafe;
    color: #1e3a5f;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.35rem 0.5rem;
    border-radius: 0.35rem;
    height: fit-content;
}

.portal-svc-feature-card__title {
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.portal-svc-feature-card__text {
    font-size: 0.8125rem;
    color: #6b7280;
}

/* Booking flow */
.portal-body--book {
    background: #e8eef5;
}

.portal-book-flow {
    background: #e8eef5;
    padding-bottom: 1rem;
}

.portal-book-toolbar {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1rem;
}

.portal-book-toolbar__inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 3rem;
    max-width: 32rem;
}

.portal-book-toolbar__back {
    color: #1e3a5f;
    font-size: 1.35rem;
    text-decoration: none;
    line-height: 1;
    width: 1.75rem;
}

.portal-book-toolbar__title {
    font-weight: 700;
    font-size: 1.05rem;
    color: #111827;
    flex: 1;
}

.portal-book-header {
    display: none;
}

.portal-book-steps {
    display: flex;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    max-width: 32rem;
    margin: 0 auto;
}

.portal-book-steps__item {
    flex: 1;
    text-align: center;
    padding: 0.75rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #9ca3af;
    border-bottom: 3px solid transparent;
    text-decoration: none;
}

.portal-book-steps__item.is-active {
    color: var(--portal-orange);
    border-bottom-color: var(--portal-orange);
}

.portal-book-main__inner {
    padding: 1rem 1rem 2.5rem;
    max-width: 32rem;
    margin: 0 auto;
}

.portal-book-service-label {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0;
}

.portal-book-service-name {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 1rem;
}

.portal-book-section {
    background: #fff;
    border-radius: 1rem;
    padding: 1.1rem 1.15rem;
    margin-bottom: 0.85rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.portal-book-section__title {
    font-size: 0.9375rem;
    font-weight: 700;
    margin: 0 0 0.85rem;
    color: #1e3a5f;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.portal-book-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.25rem;
}

.portal-book-field input,
.portal-book-field textarea,
.portal-book-field select {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 0.65rem;
    padding: 0.65rem 0.75rem;
    font: inherit;
    background: #fafafa;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.portal-book-field input:focus,
.portal-book-field textarea:focus,
.portal-book-field select:focus {
    outline: none;
    border-color: #1e3a5f;
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.12);
    background: #fff;
}

.portal-book-toggle {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    margin-top: 0.75rem;
    cursor: pointer;
}

.portal-book-toggle small {
    display: block;
    color: #6b7280;
    font-weight: 400;
}

.portal-book-btn {
    display: block;
    width: 100%;
    border: none;
    border-radius: 999px;
    padding: 0.9rem 1rem;
    font-weight: 700;
    font-size: 0.9375rem;
    cursor: pointer;
    text-align: center;
    margin-top: 0.85rem;
    font-family: inherit;
}

.portal-book-btn--primary {
    background: var(--portal-orange);
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(230, 81, 0, 0.3);
}

.portal-book-btn--primary:hover {
    background: var(--portal-orange-hover);
}

.portal-book-btn--outline {
    background: #fff;
    border: 2px solid #1e3a5f;
    color: #1e3a5f;
}

.portal-book-gps-hint {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0.35rem 0 0;
}

.portal-book-link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #1e3a5f;
    text-decoration: none;
}

.portal-book-link:hover {
    text-decoration: underline;
}

.portal-book-error {
    color: #dc2626;
    font-size: 0.75rem;
}

.portal-book-alert--error {
    background: #fef2f2;
    color: #b91c1c;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.portal-book-slot-group {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #9ca3af;
    margin: 0.75rem 0 0.35rem;
}

.portal-book-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.portal-book-slot input {
    position: absolute;
    opacity: 0;
}

.portal-book-slot span {
    display: inline-block;
    border: 1.5px solid #e5e7eb;
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    font-size: 0.8125rem;
    cursor: pointer;
    background: #fff;
}

.portal-book-slot input:checked + span {
    border-color: var(--portal-orange);
    color: var(--portal-orange);
    font-weight: 700;
    background: #fff7ed;
}

.portal-book-map-placeholder {
    height: 120px;
    border-radius: 0.65rem;
    background: repeating-linear-gradient(0deg, #e0f2fe, #e0f2fe 12px, #f0f9ff 12px, #f0f9ff 24px);
    margin-bottom: 0.75rem;
    position: relative;
}

.portal-book-map-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 24px;
    height: 24px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc2626' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.portal-pay-summary {
    background: linear-gradient(135deg, #7dd3fc, #2563eb);
    color: #fff;
    border-radius: 1rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.portal-pay-summary__eyebrow {
    font-size: 0.75rem;
    opacity: 0.9;
    margin: 0;
}

.portal-pay-summary__service {
    font-weight: 700;
    margin: 0.35rem 0;
}

.portal-pay-summary__amount {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

.portal-pay-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.portal-pay-option {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--portal-border);
    border-radius: 0.65rem;
    background: #fff;
    cursor: pointer;
}

.portal-pay-option:has(input:checked) {
    background: var(--portal-orange);
    color: #fff;
    border-color: var(--portal-orange);
}

.portal-pay-option input {
    margin: 0;
}

