/* /Components/Chat/ChatConversationView.razor.rz.scp.css */
@keyframes chat-in-b-ehykntjzcc {
    from {
        opacity: 0;
        transform: translateY(10px) scale(.96);
    }

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

.chat[b-ehykntjzcc] {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}

/* virtualized scroll container; newest at the bottom, older paged in on scroll up. */
.chat-body[b-ehykntjzcc] {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 10px 10px 12px;
    min-height: 0;
    position: relative;
}

.chat-loading[b-ehykntjzcc],
.chat-empty[b-ehykntjzcc] {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--mud-palette-text-secondary);
    text-align: center;
}

.chat-empty[b-ehykntjzcc]  .mud-icon-root {
    color: var(--mud-palette-primary);
    opacity: .6;
}

.chat-row[b-ehykntjzcc] {
    display: flex;
    margin-bottom: 8px;
    animation: chat-in-b-ehykntjzcc .28s cubic-bezier(.22, .61, .36, 1) both;
}

/* skeleton shown by the virtualizer for rows not yet fetched */
.chat-bubble--ghost[b-ehykntjzcc] {
    width: 55%;
    height: 36px;
    background: rgba(159, 63, 108, .08);
    box-shadow: none;
    animation: chat-ghost-pulse-b-ehykntjzcc 1.2s ease-in-out infinite;
}

@keyframes chat-ghost-pulse-b-ehykntjzcc {
    0%, 100% {
        opacity: .5;
    }

    50% {
        opacity: 1;
    }
}

.chat-row--mine[b-ehykntjzcc] {
    justify-content: flex-end;
}

.chat-row--theirs[b-ehykntjzcc] {
    justify-content: flex-start;
}

.chat-bubble[b-ehykntjzcc] {
    max-width: 80%;
    padding: 9px 13px;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}

.chat-row--theirs .chat-bubble[b-ehykntjzcc] {
    background: rgba(159, 63, 108, .10);
    border: 1px solid rgba(159, 63, 108, .22);
    border-bottom-left-radius: 5px;
    color: var(--mud-palette-text-primary);
}

.chat-row--mine .chat-bubble[b-ehykntjzcc] {
    background: linear-gradient(135deg, var(--mud-palette-primary), #9f3f6c);
    border-bottom-right-radius: 5px;
    color: #fff;
}

.chat-bubble__author[b-ehykntjzcc] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .72rem;
    font-weight: 700;
    color: var(--mud-palette-primary);
    margin-bottom: 2px;
}

/* ===== admin (verified) message ===== */
@keyframes chat-admin-glow-b-ehykntjzcc {
    0%, 100% {
        box-shadow: 0 3px 14px rgba(47, 124, 246, .40);
    }

    50% {
        box-shadow: 0 5px 22px rgba(47, 124, 246, .70);
    }
}

.chat-bubble--admin[b-ehykntjzcc] {
    background: linear-gradient(135deg, #3b8bff, #1b5fd0) !important;
    border: none !important;
    color: #fff !important;
    animation: chat-admin-glow-b-ehykntjzcc 3s ease-in-out infinite;
}

.chat-bubble--admin .chat-bubble__author[b-ehykntjzcc],
.chat-bubble--admin .chat-bubble__time[b-ehykntjzcc] {
    color: rgba(255, 255, 255, .92) !important;
}

.chat-bubble__badge[b-ehykntjzcc] {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 1px 8px 1px 5px;
    border-radius: 99px;
    background: rgba(255, 255, 255, .24);
    color: #fff;
    font-size: .66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.chat-bubble__badge[b-ehykntjzcc]  .mud-icon-root {
    font-size: .9rem;
    color: #fff;
}

.chat-bubble__text[b-ehykntjzcc] {
    white-space: pre-wrap;
    word-break: break-word;
    line-height: 1.4;
    font-size: .9rem;
}

.chat-bubble__time[b-ehykntjzcc] {
    font-size: .65rem;
    opacity: .7;
    text-align: right;
    margin-top: 3px;
}

.chat-row--mine .chat-bubble__time[b-ehykntjzcc] {
    color: rgba(255, 255, 255, .85);
}

/* ===== input row ===== */
.chat-input[b-ehykntjzcc] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-top: 1px solid var(--mud-palette-lines-default);
}

.chat-input__field[b-ehykntjzcc] {
    flex: 1 1 auto;
}

[b-ehykntjzcc] .chat-send {
    flex: 0 0 auto;
    transition: transform .15s ease, box-shadow .15s ease;
}

[b-ehykntjzcc] .chat-send:not(:disabled):hover {
    transform: scale(1.1);
    box-shadow: 0 4px 14px rgba(159, 63, 108, .5);
}
/* /Components/Chat/ChatLauncher.razor.rz.scp.css */
@keyframes chat-panel-in-b-0z2tetac56 {
    from {
        opacity: 0;
        transform: translateY(24px) scale(.92);
    }

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

@keyframes chat-panel-out-b-0z2tetac56 {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    to {
        opacity: 0;
        transform: translateY(24px) scale(.92);
    }
}

/* ===== floating launcher button =====
   Positioned via a wrapper div we own, so the fixed positioning actually applies
   (a ::deep selector onto MudFab can't anchor without a scoped ancestor). */
.chat-fab-dock[b-0z2tetac56] {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1402;
    transition: transform .18s ease;
}

.chat-fab-dock:hover[b-0z2tetac56] {
    transform: scale(1.08);
}

.chat-fab-dock[b-0z2tetac56]  .mud-fab {
    box-shadow: 0 8px 24px rgba(159, 63, 108, .45);
}

/* pulse ring when a new message arrives while the launcher is closed */
@keyframes chat-fab-ring-b-0z2tetac56 {
    0% {
        transform: scale(1);
        opacity: .65;
    }

    100% {
        transform: scale(1.9);
        opacity: 0;
    }
}

.chat-fab-dock--pulse[b-0z2tetac56]::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--mud-palette-error);
    z-index: -1;
    animation: chat-fab-ring-b-0z2tetac56 .9s ease-out 2;
    pointer-events: none;
}

.chat-fab-dock[b-0z2tetac56]  .mud-icon-root {
    transition: transform .25s cubic-bezier(.34, 1.56, .64, 1);
}

.chat-fab-dock:active[b-0z2tetac56]  .mud-icon-root {
    transform: rotate(90deg);
}

/* ===== docked panel ===== */
.chat-panel[b-0z2tetac56] {
    position: fixed;
    right: 24px;
    bottom: 92px;
    z-index: 1401;
    width: 370px;
    max-width: calc(100vw - 32px);
    height: min(70vh, 560px);
    display: flex;
    flex-direction: column;
    background: var(--mud-palette-surface);
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .32);
    transform-origin: bottom right;
    animation: chat-panel-in-b-0z2tetac56 .3s cubic-bezier(.34, 1.56, .64, 1) both;
}

/* Exit animation while the panel is being unmounted. */
.chat-panel--closing[b-0z2tetac56] {
    animation: chat-panel-out-b-0z2tetac56 .22s cubic-bezier(.4, 0, 1, 1) both;
    pointer-events: none;
}

.chat-panel__header[b-0z2tetac56] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--mud-palette-primary), #9f3f6c);
    flex: 0 0 auto;
}

.chat-panel__heading[b-0z2tetac56] {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.chat-panel__title[b-0z2tetac56] {
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* The presence label sits on the coloured header gradient — keep it legible. */
[b-0z2tetac56] .chat-panel__heading .presence__label {
    color: rgba(255, 255, 255, .85);
}

[b-0z2tetac56] .chat-panel__heading .presence--online .presence__label {
    color: #fff;
}

[b-0z2tetac56] .chat-panel__header .mud-icon-button {
    color: #fff;
}

.chat-panel__body[b-0z2tetac56] {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.chat-panel__loading[b-0z2tetac56],
.chat-panel__empty[b-0z2tetac56] {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--mud-palette-text-secondary);
    text-align: center;
    padding: 24px;
}

.chat-panel__empty[b-0z2tetac56]  .mud-icon-root {
    color: var(--mud-palette-primary);
    opacity: .6;
}

/* ===== search ===== */
.chat-search[b-0z2tetac56] {
    flex: 0 0 auto;
    padding: 10px 12px 6px;
}

/* ===== conversation list ===== */
.chat-list[b-0z2tetac56] {
    flex: 1 1 auto;
    overflow-y: auto;
    position: relative;
}

/* skeleton lines shown by the virtualizer for rows not yet fetched */
.chat-list__ghost-line[b-0z2tetac56] {
    height: 12px;
    width: 70%;
    margin: 6px 0;
    border-radius: 6px;
    background: rgba(159, 63, 108, .10);
    animation: chat-list-ghost-b-0z2tetac56 1.2s ease-in-out infinite;
}

.chat-list__ghost-line--short[b-0z2tetac56] {
    width: 45%;
}

@keyframes chat-list-ghost-b-0z2tetac56 {
    0%, 100% {
        opacity: .5;
    }

    50% {
        opacity: 1;
    }
}

.chat-list__item[b-0z2tetac56] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    cursor: pointer;
    border-bottom: 1px solid var(--mud-palette-lines-default);
    transition: background .15s ease;
}

.chat-list__item:hover[b-0z2tetac56] {
    background: var(--mud-palette-action-default-hover);
}

/* unread conversation: tinted row + emphasized preview */
.chat-list__item--unread[b-0z2tetac56] {
    background: rgba(159, 63, 108, .06);
}

.chat-list__item--unread .chat-list__preview[b-0z2tetac56] {
    color: var(--mud-palette-text-primary);
    font-weight: 600;
}

.chat-list__unread[b-0z2tetac56] {
    flex: 0 0 auto;
    align-self: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 99px;
    background: var(--mud-palette-error);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
}

.chat-list__cover[b-0z2tetac56] {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    object-fit: cover;
    flex: 0 0 auto;
}

.chat-list__cover--empty[b-0z2tetac56] {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mud-palette-action-disabled-background);
}

.chat-list__body[b-0z2tetac56] {
    flex: 1 1 auto;
    min-width: 0;
}

.chat-list__head[b-0z2tetac56] {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
}

.chat-list__name[b-0z2tetac56] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

/* admin (verified) sender stands out in the inbox list */
.chat-list__name--admin[b-0z2tetac56] {
    color: #1b5fd0;
}

.chat-list__name--admin[b-0z2tetac56]  .chat-list__verified {
    font-size: 1rem;
    color: #3b8bff;
    flex: 0 0 auto;
}

.chat-list__time[b-0z2tetac56] {
    font-size: .72rem;
    color: var(--mud-palette-text-secondary);
    white-space: nowrap;
}

.chat-list__subject[b-0z2tetac56] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .78rem;
    color: var(--mud-palette-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-list__subject[b-0z2tetac56]  .chat-list__subject-icon {
    font-size: .95rem;
}

.chat-list__preview[b-0z2tetac56] {
    font-size: .82rem;
    color: var(--mud-palette-text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 600px) {
    .chat-panel[b-0z2tetac56] {
        right: 12px;
        left: 12px;
        bottom: 84px;
        width: auto;
        height: min(72vh, 560px);
    }

    .chat-fab-dock[b-0z2tetac56] {
        right: 16px;
        bottom: 16px;
    }
}
/* /Components/Common/AdvertisementCard.razor.rz.scp.css */
.listing-card[b-0h6cgl8qz7] {
    /* Fixed height (paired with the fixed card width set by the container) keeps every
       catalog row the same height so the virtualized list's spacer math stays exact.
       Tall, photo-led card: the square cover takes the bulk of the height. */
    height: 600px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 22px;
    background: var(--mud-palette-surface);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.listing-card:hover[b-0h6cgl8qz7] {
    transform: translateY(-5px);
    border-color: var(--mud-palette-primary);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .25);
}

/* ===== Promoted ("advertised") card: gold-accented and emphasised ===== */
@keyframes promoted-glow-b-0h6cgl8qz7 {
    0%, 100% {
        box-shadow: 0 10px 28px rgba(224, 165, 40, .28);
    }

    50% {
        box-shadow: 0 16px 42px rgba(224, 165, 40, .55);
    }
}

@keyframes promoted-shimmer-b-0h6cgl8qz7 {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 200% 0;
    }
}

.listing-card--promoted[b-0h6cgl8qz7] {
    border: 2px solid #e0a528;
    /* warm gold-tinted card so promoted listings read as a different, premium style */
    background: linear-gradient(180deg, rgba(246, 201, 69, .12), var(--mud-palette-surface) 38%);
    animation: promoted-glow-b-0h6cgl8qz7 4s ease-in-out infinite;
}

.listing-card--promoted:hover[b-0h6cgl8qz7] {
    transform: translateY(-6px);
    border-color: #f6c945;
    box-shadow: 0 22px 54px rgba(224, 165, 40, .5);
}

/* Glowing gold strip along the top edge of the promoted card. */
.listing-card--promoted[b-0h6cgl8qz7]::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 4;
    background: linear-gradient(90deg, #f6c945, #e0a528, #f6c945);
    background-size: 200% 100%;
    animation: promoted-shimmer-b-0h6cgl8qz7 3s linear infinite;
}

.listing-card--promoted .listing-content[b-0h6cgl8qz7] {
    background: transparent;
}

/* Gold price on promoted cards. */
.listing-price--promoted[b-0h6cgl8qz7] {
    color: #c98a10 !important;
    font-weight: 800;
}

/* Gold CTA button so the promoted card's action pops. */
[b-0h6cgl8qz7] .promoted-cta {
    background: linear-gradient(135deg, #f6c945, #e0a528) !important;
    color: #3a2a05 !important;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(224, 165, 40, .5);
}

[b-0h6cgl8qz7] .promoted-cta:hover {
    box-shadow: 0 6px 18px rgba(224, 165, 40, .7);
}

/* ===== diagonal corner "advertised" ribbon ===== */
.promoted-ribbon[b-0h6cgl8qz7] {
    position: absolute;
    top: 34px;
    left: -46px;
    z-index: 4;
    width: 170px;
    transform: rotate(-45deg);
    background: linear-gradient(90deg, #f6c945, #e0a528, #f6c945);
    background-size: 200% 100%;
    animation: promoted-shimmer-b-0h6cgl8qz7 3s linear infinite;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .45);
}

.promoted-ribbon span[b-0h6cgl8qz7] {
    display: block;
    padding: 6px 0;
    color: #2a1d03;
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-shadow: 0 1px 1px rgba(255, 255, 255, .35);
}

/* Square cover so the photo is the focal point of the card and scales
   proportionally with the card width. */
.listing-photo[b-0h6cgl8qz7] {
    position: relative;
    aspect-ratio: 1 / 1;
    flex: 0 0 auto;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    background: linear-gradient(145deg, #351d3d, #9f3f6c);
}

/* Body fills the remaining height and keeps the action row pinned to the bottom,
   so every card ends up the same height regardless of text length. */
.listing-content[b-0h6cgl8qz7] {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.listing-title[b-0h6cgl8qz7] {
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.listing-price[b-0h6cgl8qz7] {
    flex: 0 0 auto;
    white-space: nowrap;
}

.listing-services[b-0h6cgl8qz7] {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    height: 32px;
    overflow: hidden;
}

.listing-footer[b-0h6cgl8qz7] {
    margin-top: auto;
}

/* Horizontal scroll-snap track filling the cover area: one slide per photo, native swipe + snap.
   Sits behind the scrim/overlays (z-index 0). The scrollbar is hidden on all engines. */
.listing-photo__track[b-0h6cgl8qz7] {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.listing-photo__track[b-0h6cgl8qz7]::-webkit-scrollbar {
    display: none;
}

.listing-photo__slide[b-0h6cgl8qz7] {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
}

.listing-photo__img[b-0h6cgl8qz7] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* The decorative overlays stack above the scroll track, so they must let touch/pointer events
   fall through to it — otherwise the swipe gesture never reaches the track. Interactive controls
   (favourite button, arrows, dots) re-enable pointer events on themselves. */
.listing-photo__scrim[b-0h6cgl8qz7],
.listing-photo__identity[b-0h6cgl8qz7],
.listing-photo__top[b-0h6cgl8qz7],
.promoted-ribbon[b-0h6cgl8qz7] {
    pointer-events: none;
}

[b-0h6cgl8qz7] .favorite-button,
[b-0h6cgl8qz7] .carousel-nav,
.carousel-dots[b-0h6cgl8qz7] {
    pointer-events: auto;
}

/* Padlock badge centred on a hidden (blurred) photo in the carousel. */
.listing-photo__lock[b-0h6cgl8qz7] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    color: #fff;
    background: rgba(20, 16, 28, .55);
    backdrop-filter: blur(2px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .5);
    pointer-events: none;
}

/* Dark gradient scrim above the photo so the white text and avatar stay legible
   on any image — strongest at the bottom (where the name sits) and at the top
   (chips / favourite button). */
.listing-photo__scrim[b-0h6cgl8qz7] {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
            to top,
            rgba(0, 0, 0, .78) 0%,
            rgba(0, 0, 0, .35) 35%,
            rgba(0, 0, 0, .05) 60%,
            rgba(0, 0, 0, .4) 100%
    );
}

.listing-photo[b-0h6cgl8qz7]::before,
.listing-photo[b-0h6cgl8qz7]::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(4px);
}

/* The decorative blurred circles are meant for the plain-gradient placeholder
   cards; hide them once a real cover photo is shown. */
.listing-photo:has(.listing-photo__img)[b-0h6cgl8qz7]::before,
.listing-photo:has(.listing-photo__img)[b-0h6cgl8qz7]::after {
    display: none;
}

.listing-photo[b-0h6cgl8qz7]::before {
    width: 240px;
    height: 240px;
    right: -55px;
    top: -60px;
    background: rgba(255, 255, 255, .11);
}

.listing-photo[b-0h6cgl8qz7]::after {
    width: 180px;
    height: 180px;
    left: -45px;
    bottom: -75px;
    border: 30px solid rgba(255, 255, 255, .08);
}

/* Carousel previous/next arrows: solid circular buttons, always visible so it's
   obvious the photo can be swiped. Vertically centred over the photo, above the scrim. */
[b-0h6cgl8qz7] .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 34px;
    height: 34px;
    color: white;
    background: rgba(22, 20, 31, .55);
    border: 1px solid rgba(255, 255, 255, .35);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .4);
    transition: background 160ms ease, transform 160ms ease;
}

[b-0h6cgl8qz7] .carousel-nav:hover {
    background: rgba(22, 20, 31, .85);
    transform: translateY(-50%) scale(1.08);
}

[b-0h6cgl8qz7] .carousel-nav--prev {
    left: 8px;
}

[b-0h6cgl8qz7] .carousel-nav--next {
    right: 8px;
}

/* Position dots at the very bottom of the photo, centred. */
.carousel-dots[b-0h6cgl8qz7] {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 6px;
}

.carousel-dot[b-0h6cgl8qz7] {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .45);
    cursor: pointer;
    transition: background 160ms ease, transform 160ms ease;
}

.carousel-dot--active[b-0h6cgl8qz7] {
    background: white;
    transform: scale(1.25);
}

.listing-photo__top[b-0h6cgl8qz7],
.listing-photo__identity[b-0h6cgl8qz7] {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.listing-photo__identity[b-0h6cgl8qz7] {
    justify-content: flex-start;
    gap: 14px;
}

/* The top row now only carries the favourite button — keep it pinned to the right. */
.listing-photo__top[b-0h6cgl8qz7] {
    justify-content: flex-end;
}

/* Verified badge sits just under the location line in the identity block. */
.listing-verified[b-0h6cgl8qz7] {
    margin-top: 8px;
}

/* Comment & favourite counts: a quiet meta line in the card body, above the footer. */
.listing-stats[b-0h6cgl8qz7] {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--mud-palette-text-secondary);
    font-size: .8rem;
    line-height: 1;
}

.listing-stat[b-0h6cgl8qz7] {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

[b-0h6cgl8qz7] .listing-stat .mud-icon-root {
    font-size: 1rem;
}

.favorite-button[b-0h6cgl8qz7] {
    color: white !important;
    background: rgba(22, 20, 31, .45) !important;
    transition: transform 160ms ease, background 160ms ease;
}

.favorite-button:hover[b-0h6cgl8qz7] {
    transform: scale(1.12);
    background: rgba(22, 20, 31, .7) !important;
}

/* Favourited: filled red heart so the state reads at a glance. */
.favorite-button--active[b-0h6cgl8qz7] {
    color: #ff4d6d !important;
}

.listing-name[b-0h6cgl8qz7],
.listing-city[b-0h6cgl8qz7] {
    color: white !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .6);
}

/* Smaller, more restrained text over the photo so the image stays the focus. */
.listing-name[b-0h6cgl8qz7] {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.25;
}

.listing-city[b-0h6cgl8qz7] {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: .78rem;
}

.listing-description[b-0h6cgl8qz7] {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* Exactly two lines: 2 × font-size × line-height. Keeps every card identical
       regardless of how long the description is. */
    font-size: .875rem;
    line-height: 1.43;
    height: 2.5rem;
    color: var(--mud-palette-text-secondary);
}

/* Physique summary stays on a single line so the footer never grows a second row. */
.listing-physique[b-0h6cgl8qz7] {
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* /Components/Common/Advertisements.razor.rz.scp.css */
/* One virtualized row: a centred grid of fixed-width cards. The column count is set
   inline (computed from the viewport width). Cards have a fixed size, so every row is
   exactly the same height and Virtualize's scroll spacers stay accurate — no blank gaps
   when resizing or scrolling. The card styling itself lives in AdvertisementCard.razor.css. */
.ad-row[b-x81y4cd31m] {
    display: grid;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    align-items: stretch;
}
/* /Components/Common/AdvertisementStatsPanel.razor.rz.scp.css */
/* ===== Summary cards ===== */
.stats-cards[b-k0xo2hlinq] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

@keyframes stats-pop-b-k0xo2hlinq {
    from {
        opacity: 0;
        transform: translateY(14px) scale(.97);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes stats-shine-b-k0xo2hlinq {
    0% {
        left: -60%;
        opacity: 1;
    }

    100% {
        left: 130%;
        opacity: 0;
    }
}

.stats-card[b-k0xo2hlinq] {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: .35rem;
    border-radius: 20px;
    border: 1px solid color-mix(in srgb, var(--accent, var(--mud-palette-primary)) 32%, var(--mud-palette-lines-default));
    /* Gradient top bar + diagonal colour tint over the surface. */
    background: linear-gradient(90deg, var(--accent), var(--accent2, var(--accent))) top / 100% 3px no-repeat,
    linear-gradient(150deg,
            color-mix(in srgb, var(--accent) 22%, transparent),
            color-mix(in srgb, var(--accent2, var(--accent)) 9%, transparent) 70%),
    var(--mud-palette-surface);
    box-shadow: 0 12px 30px -22px rgba(0, 0, 0, .6);
    opacity: 0;
    animation: stats-pop-b-k0xo2hlinq .5s cubic-bezier(.22, .61, .36, 1) forwards;
    transition: transform .25s ease, box-shadow .25s ease;
}

.stats-card:hover[b-k0xo2hlinq] {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px -24px color-mix(in srgb, var(--accent, var(--mud-palette-primary)) 75%, transparent);
}

/* Light sweep across the card on hover. */
.stats-card[b-k0xo2hlinq]::before {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 45%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .18), transparent);
    transform: skewX(-18deg);
    opacity: 0;
    pointer-events: none;
}

.stats-card:hover[b-k0xo2hlinq]::before {
    animation: stats-shine-b-k0xo2hlinq .75s ease;
}

/* Faint oversized colour glow in the corner. */
.stats-card[b-k0xo2hlinq]::after {
    content: "";
    position: absolute;
    right: -28px;
    top: -10px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: radial-gradient(circle,
    color-mix(in srgb, var(--accent2, var(--accent)) 40%, transparent), transparent 70%);
    pointer-events: none;
}

/* Staggered entrance. */
.stats-card:nth-child(1)[b-k0xo2hlinq] {
    animation-delay: 0s;
}

.stats-card:nth-child(2)[b-k0xo2hlinq] {
    animation-delay: .06s;
}

.stats-card:nth-child(3)[b-k0xo2hlinq] {
    animation-delay: .12s;
}

.stats-card:nth-child(4)[b-k0xo2hlinq] {
    animation-delay: .18s;
}

.stats-card:nth-child(5)[b-k0xo2hlinq] {
    animation-delay: .24s;
}

.stats-card:nth-child(6)[b-k0xo2hlinq] {
    animation-delay: .3s;
}

.stats-card__icon[b-k0xo2hlinq] {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 14px;
    color: #fff !important;
    background: linear-gradient(135deg, var(--accent), var(--accent2, var(--accent)));
    box-shadow: 0 10px 20px -8px color-mix(in srgb, var(--accent) 80%, transparent);
    font-size: 1.45rem !important;
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}

.stats-card:hover .stats-card__icon[b-k0xo2hlinq] {
    transform: scale(1.12) rotate(-6deg);
}

.stats-card__num[b-k0xo2hlinq] {
    position: relative;
    z-index: 1;
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1.5px;
    /* Gradient number text. */
    background: linear-gradient(120deg, var(--accent), var(--accent2, var(--accent)));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    width: fit-content;
}

.stats-card__label[b-k0xo2hlinq] {
    position: relative;
    z-index: 1;
    font-size: .82rem;
    font-weight: 600;
    color: var(--mud-palette-text-secondary);
}

/* Per-metric colour pairs. */
.stats-card--views[b-k0xo2hlinq] {
    --accent: #2196f3;
    --accent2: #21d4fd;
}

.stats-card--phone[b-k0xo2hlinq] {
    --accent: #00bfa5;
    --accent2: #1de9b6;
}

.stats-card--impr[b-k0xo2hlinq] {
    --accent: #ff9800;
    --accent2: #ffca28;
}

.stats-card--likes[b-k0xo2hlinq] {
    --accent: #e1306c;
    --accent2: #ff6a88;
}

.stats-card--comments[b-k0xo2hlinq] {
    --accent: #7e57c2;
    --accent2: #b388ff;
}

.stats-card--stars[b-k0xo2hlinq] {
    --accent: #f6b40a;
    --accent2: #ffd54f;
}

/* ===== Charts ===== */
.stats-chart[b-k0xo2hlinq] {
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 20px;
    background: radial-gradient(90% 120% at 0% 0%, rgba(255, 87, 82, .05), transparent 55%),
    var(--mud-palette-surface);
    height: 100%;
    transition: box-shadow .25s ease;
}

.stats-chart:hover[b-k0xo2hlinq] {
    box-shadow: 0 18px 44px -28px rgba(0, 0, 0, .6);
}

.stats-empty[b-k0xo2hlinq] {
    display: grid;
    place-items: center;
    height: 300px;
}

@media (prefers-reduced-motion: reduce) {
    .stats-card[b-k0xo2hlinq] {
        animation: none;
        opacity: 1;
    }

    .stats-card:hover[b-k0xo2hlinq]::before {
        animation: none;
    }
}
/* /Components/Common/AgeGate.razor.rz.scp.css */
@keyframes agegate-fade-b-wdb2jq0cyy {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes agegate-rise-b-wdb2jq0cyy {
    from {
        opacity: 0;
        transform: translateY(24px) scale(.96);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes agegate-pulse-b-wdb2jq0cyy {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 16px 36px -10px rgba(225, 48, 108, .85);
    }

    50% {
        transform: scale(1.06);
        box-shadow: 0 20px 46px -8px rgba(225, 48, 108, .95);
    }
}

.agegate-backdrop[b-wdb2jq0cyy] {
    animation: agegate-fade-b-wdb2jq0cyy .3s ease forwards;
}

.agegate-card[b-wdb2jq0cyy] {
    animation: agegate-rise-b-wdb2jq0cyy .45s cubic-bezier(.22, .61, .36, 1) forwards;
}

.agegate-card button[b-wdb2jq0cyy] {
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.agegate-card button:hover[b-wdb2jq0cyy] {
    transform: translateY(-2px);
}

.agegate-badge[b-wdb2jq0cyy] {
    animation: agegate-pulse-b-wdb2jq0cyy 2.6s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .agegate-backdrop[b-wdb2jq0cyy],
    .agegate-card[b-wdb2jq0cyy],
    .agegate-badge[b-wdb2jq0cyy] {
        animation: none;
    }
}
/* /Components/Common/OnlineIndicator.razor.rz.scp.css */
.presence[b-w0rd8vjmz8] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
    white-space: nowrap;
}

.presence__dot[b-w0rd8vjmz8] {
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--mud-palette-text-disabled);
}

.presence--online .presence__dot[b-w0rd8vjmz8] {
    background: #2bbf6a;
    box-shadow: 0 0 0 3px rgba(43, 191, 106, .18);
}

.presence__label[b-w0rd8vjmz8] {
    font-size: .76rem;
    color: var(--mud-palette-text-secondary);
}

.presence--online .presence__label[b-w0rd8vjmz8] {
    color: #2bbf6a;
    font-weight: 600;
}
/* /Components/Common/SupportTicketView.razor.rz.scp.css */
/* Ticket thread bubbles mirror the chat styling (ChatConversationView.razor.css). */
@keyframes chat-in-b-lgat8fqp3i {
    from {
        opacity: 0;
        transform: translateY(10px) scale(.96);
    }

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

.thread[b-lgat8fqp3i] {
    display: flex;
    flex-direction: column;
}

.chat-row[b-lgat8fqp3i] {
    display: flex;
    margin-bottom: 8px;
    animation: chat-in-b-lgat8fqp3i .28s cubic-bezier(.22, .61, .36, 1) both;
}

.chat-row--mine[b-lgat8fqp3i] {
    justify-content: flex-end;
}

.chat-row--theirs[b-lgat8fqp3i] {
    justify-content: flex-start;
}

.chat-bubble[b-lgat8fqp3i] {
    max-width: 80%;
    padding: 9px 13px;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}

.chat-row--theirs .chat-bubble[b-lgat8fqp3i] {
    background: rgba(159, 63, 108, .10);
    border: 1px solid rgba(159, 63, 108, .22);
    border-bottom-left-radius: 5px;
    color: var(--mud-palette-text-primary);
}

.chat-row--mine .chat-bubble[b-lgat8fqp3i] {
    background: linear-gradient(135deg, var(--mud-palette-primary), #9f3f6c);
    border-bottom-right-radius: 5px;
    color: #fff;
}

.chat-bubble__author[b-lgat8fqp3i] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .72rem;
    font-weight: 700;
    color: var(--mud-palette-primary);
    margin-bottom: 2px;
}

/* ===== admin (verified) message ===== */
@keyframes chat-admin-glow-b-lgat8fqp3i {
    0%, 100% {
        box-shadow: 0 3px 14px rgba(47, 124, 246, .40);
    }

    50% {
        box-shadow: 0 5px 22px rgba(47, 124, 246, .70);
    }
}

.chat-bubble--admin[b-lgat8fqp3i] {
    background: linear-gradient(135deg, #3b8bff, #1b5fd0) !important;
    border: none !important;
    color: #fff !important;
    animation: chat-admin-glow-b-lgat8fqp3i 3s ease-in-out infinite;
}

.chat-bubble--admin .chat-bubble__author[b-lgat8fqp3i],
.chat-bubble--admin .chat-bubble__time[b-lgat8fqp3i] {
    color: rgba(255, 255, 255, .92) !important;
}

.chat-bubble__badge[b-lgat8fqp3i] {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 1px 8px 1px 5px;
    border-radius: 99px;
    background: rgba(255, 255, 255, .24);
    color: #fff;
    font-size: .66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.chat-bubble__badge[b-lgat8fqp3i]  .mud-icon-root {
    font-size: .9rem;
    color: #fff;
}

.chat-bubble__text[b-lgat8fqp3i] {
    white-space: pre-wrap;
    word-break: break-word;
    line-height: 1.4;
    font-size: .9rem;
}

.chat-bubble__time[b-lgat8fqp3i] {
    font-size: .65rem;
    opacity: .7;
    text-align: right;
    margin-top: 3px;
}

.chat-row--mine .chat-bubble__time[b-lgat8fqp3i] {
    color: rgba(255, 255, 255, .85);
}

@media (prefers-reduced-motion: reduce) {
    .chat-row[b-lgat8fqp3i],
    .chat-bubble--admin[b-lgat8fqp3i] {
        animation: none;
    }
}
/* /Components/Dialogs/BoostAdvertisementDialog.razor.rz.scp.css */
@keyframes boost-pop-b-7b2mdtdwvg {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

/* ===== header ===== */
.boost-head[b-7b2mdtdwvg] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.boost-head__icon[b-7b2mdtdwvg] {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #7e57c2, #5e35b1);
    box-shadow: 0 6px 16px rgba(94, 53, 177, .4);
    flex: 0 0 auto;
}

.boost-head__title[b-7b2mdtdwvg] {
    font-weight: 700;
    line-height: 1.1;
}

.boost-loading[b-7b2mdtdwvg] {
    display: flex;
    justify-content: center;
    padding: 28px 0;
}

/* ===== tier cards ===== */
.boost-tiers[b-7b2mdtdwvg] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.boost-card[b-7b2mdtdwvg] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 2px solid var(--mud-palette-lines-default);
    background: var(--mud-palette-surface);
    cursor: pointer;
    transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease, background .18s ease;
    animation: boost-pop-b-7b2mdtdwvg .3s ease both;
}

.boost-card:hover[b-7b2mdtdwvg] {
    transform: translateY(-2px);
    border-color: var(--mud-palette-primary);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .10);
}

.boost-card--active[b-7b2mdtdwvg] {
    border-color: var(--mud-palette-primary);
    background: var(--mud-palette-primary-hover);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

/* ===== rank badge ===== */
.boost-card__rank[b-7b2mdtdwvg] {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.05rem;
    color: #fff;
    flex: 0 0 auto;
    background: var(--mud-palette-text-secondary);
}

.boost-card__rank.rank-1[b-7b2mdtdwvg] {
    background: linear-gradient(135deg, #f6c945, #e0a528);
    box-shadow: 0 4px 12px rgba(224, 165, 40, .5);
}

.boost-card__rank.rank-2[b-7b2mdtdwvg] {
    background: linear-gradient(135deg, #bfc6d0, #9aa6b4);
}

.boost-card__rank.rank-3[b-7b2mdtdwvg] {
    background: linear-gradient(135deg, #d2a079, #b07c4f);
}

/* Top1 gets a subtle golden ring on its card */
.boost-card--best[b-7b2mdtdwvg] {
    border-color: rgba(224, 165, 40, .55);
}

.boost-card--best.boost-card--active[b-7b2mdtdwvg] {
    border-color: #e0a528;
}

/* ===== info + chance bar ===== */
.boost-card__info[b-7b2mdtdwvg] {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.boost-card__name[b-7b2mdtdwvg] {
    font-weight: 700;
}

.boost-card__chance[b-7b2mdtdwvg] {
    font-size: .78rem;
    color: var(--mud-palette-text-secondary);
}

.boost-bar[b-7b2mdtdwvg] {
    height: 5px;
    border-radius: 99px;
    background: var(--mud-palette-action-disabled-background);
    overflow: hidden;
    margin-top: 2px;
}

.boost-bar__fill[b-7b2mdtdwvg] {
    height: 100%;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--mud-palette-primary), #9575cd);
    transition: width .4s ease;
}

/* ===== right side ===== */
.boost-card__right[b-7b2mdtdwvg] {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.boost-card__price[b-7b2mdtdwvg] {
    font-weight: 700;
    color: var(--mud-palette-primary);
}

.boost-card__check[b-7b2mdtdwvg] {
    color: var(--mud-palette-text-disabled);
    transition: color .18s ease;
}

.boost-card--active .boost-card__check[b-7b2mdtdwvg]  .mud-icon-root,
.boost-card--active .boost-card__check[b-7b2mdtdwvg] {
    color: var(--mud-palette-primary);
}

/* ===== summary ===== */
.boost-summary[b-7b2mdtdwvg] {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--mud-palette-background-grey);
}

.boost-summary__row[b-7b2mdtdwvg] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .9rem;
    color: var(--mud-palette-text-secondary);
}

.boost-summary__row--total[b-7b2mdtdwvg] {
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px dashed var(--mud-palette-lines-default);
    font-size: 1rem;
    color: var(--mud-palette-text-primary);
}

.boost-amount[b-7b2mdtdwvg] {
    font-weight: 800;
    color: var(--mud-palette-primary);
}

.boost-amount--error[b-7b2mdtdwvg] {
    font-weight: 800;
    color: var(--mud-palette-error);
}
/* /Components/Layout/Footer.razor.rz.scp.css */
.site-footer[b-l8jd8xydym] {
    margin-top: auto;
    border-top: 1px solid var(--mud-palette-lines-default);
    background: linear-gradient(180deg, transparent, rgba(225, 48, 108, .04));
    padding: 28px 0;
}

.site-footer__inner[b-l8jd8xydym] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.site-footer__brand[b-l8jd8xydym] {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.site-footer__logo[b-l8jd8xydym] {
    font-weight: 800;
    letter-spacing: -.02em;
    font-size: 1.1rem;
}

.site-footer__logo span[b-l8jd8xydym] {
    color: var(--mud-palette-primary);
}

.site-footer__copy[b-l8jd8xydym] {
    color: var(--mud-palette-text-secondary);
    font-size: .85rem;
}

.site-footer__links[b-l8jd8xydym] {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
/* /Components/Layout/LanguageSwitcher.razor.rz.scp.css */
.lang-switch[b-advzl6so1z] {
    position: relative;
    display: inline-flex;
}

/* Trigger styled like a MudBlazor icon button (circular, inherits the appbar text colour). */
.lang-switch__trigger[b-advzl6so1z] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: inherit;
    list-style: none;
    user-select: none;
    transition: background-color 150ms ease;
}

/* Remove the default disclosure triangle in every browser. */
.lang-switch__trigger[b-advzl6so1z]::-webkit-details-marker {
    display: none;
}

.lang-switch__trigger[b-advzl6so1z]::marker {
    content: "";
}

.lang-switch__trigger:hover[b-advzl6so1z] {
    background-color: rgba(0, 0, 0, 0.06);
}

.lang-switch__trigger svg[b-advzl6so1z] {
    width: 24px;
    height: 24px;
}

/* Dropdown panel — mirrors MudBlazor's elevated paper menu. */
.lang-switch__menu[b-advzl6so1z] {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    z-index: 1300;
    min-width: 180px;
    padding: 6px 0;
    background-color: var(--mud-palette-surface, #fff);
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.lang-switch__item[b-advzl6so1z] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    color: var(--mud-palette-text-primary, rgba(0, 0, 0, 0.87));
    text-decoration: none;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: background-color 120ms ease;
}

.lang-switch__item:hover[b-advzl6so1z] {
    background-color: rgba(0, 0, 0, 0.06);
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.body[b-yqesdb8hdr] {
    padding-top: 64px;
    padding-bottom: 4rem;
    min-height: 100vh;
}

[b-yqesdb8hdr] .main-appbar {
    padding: 0 max(20px, calc((100vw - 1280px) / 2));
    color: var(--mud-palette-text-primary);
    background: rgba(26, 26, 39, .86);
    border-bottom: 1px solid var(--mud-palette-lines-default);
    backdrop-filter: blur(16px);
}

[b-yqesdb8hdr] .brand {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: .08em;
    height: 100%;
    align-items: center;
}

[b-yqesdb8hdr] .brand span {
    color: var(--mud-palette-primary);
}

[b-yqesdb8hdr] .nav-ads {
    letter-spacing: .015em;
    overflow: hidden;
    transition: transform .25s ease, background-color .25s ease, color .25s ease;
}

[b-yqesdb8hdr] .nav-ads:hover {
    transform: translateY(-1px);
    color: #ff7a5c;
    background-color: rgba(255, 94, 98, .12);
}

.nav-ads-text[b-yqesdb8hdr] {
    position: relative;
    display: inline-block;
}

.nav-ads-text[b-yqesdb8hdr]::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #ff9a5a, #ff5e62, #e1306c);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .28s ease;
}

.nav-ads:hover .nav-ads-text[b-yqesdb8hdr]::after,
.nav-ads-text:hover[b-yqesdb8hdr]::after {
    transform: scaleX(1);
}

[b-yqesdb8hdr] .logout-button {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    padding: 0.65rem 1rem;
    border: none;
    background: transparent;
    color: var(--mud-palette-text-primary);
    font-size: 0.95rem;
    text-align: left;
    cursor: pointer;
}

[b-yqesdb8hdr] .logout-button:hover {
    background: var(--mud-palette-action-default-hover);
}

/* Header action cluster: even spacing and vertical centering for all controls. */
.appbar-actions[b-yqesdb8hdr] {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Keep the primary "add ad" call-to-action from stretching too tall next to the icons. */
.appbar-cta[b-yqesdb8hdr] {
    white-space: nowrap;
}

/* ===== Mobile (phones): the action cluster + nav link + CTA text don't fit ~360px.
   The nav link and the CTA's text label are hidden below the `sm` breakpoint via MudBlazor's
   global `d-none d-sm-*` utilities (scoped `::deep` does NOT reach into MudAppBar's subtree,
   so utilities are used there instead). This rule only tightens the literal actions div. ===== */
@media (max-width: 600px) {
    .appbar-actions[b-yqesdb8hdr] {
        gap: 4px;
    }
}
/* /Components/Notifications/NotificationBell.razor.rz.scp.css */
.notif-panel[b-zd3ut8pba7] {
    width: 340px;
    max-width: 92vw;
}

.notif-head[b-zd3ut8pba7] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--mud-palette-lines-default);
}

.notif-head__title[b-zd3ut8pba7] {
    font-weight: 700;
}

.notif-empty[b-zd3ut8pba7] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 28px 16px;
    color: var(--mud-palette-text-secondary);
}

.notif-empty[b-zd3ut8pba7]  .mud-icon-root {
    color: var(--mud-palette-primary);
    opacity: .55;
}

.notif-list[b-zd3ut8pba7] {
    max-height: 60vh;
    overflow-y: auto;
}

.notif-item[b-zd3ut8pba7] {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 11px 14px;
    cursor: pointer;
    border-bottom: 1px solid var(--mud-palette-lines-default);
    transition: background .15s ease;
}

.notif-item:hover[b-zd3ut8pba7] {
    background: var(--mud-palette-action-default-hover);
}

.notif-item--unread[b-zd3ut8pba7] {
    background: rgba(159, 63, 108, .07);
}

.notif-item__icon[b-zd3ut8pba7] {
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--mud-palette-primary);
}

.notif-item__body[b-zd3ut8pba7] {
    flex: 1 1 auto;
    min-width: 0;
}

.notif-item__text[b-zd3ut8pba7] {
    font-size: .86rem;
    line-height: 1.35;
}

.notif-item--unread .notif-item__text[b-zd3ut8pba7] {
    font-weight: 600;
}

.notif-item__time[b-zd3ut8pba7] {
    margin-top: 2px;
    font-size: .72rem;
    color: var(--mud-palette-text-secondary);
}

.notif-ghost-line[b-zd3ut8pba7] {
    height: 11px;
    width: 75%;
    margin: 5px 0;
    border-radius: 6px;
    background: rgba(159, 63, 108, .10);
    animation: notif-ghost-b-zd3ut8pba7 1.2s ease-in-out infinite;
}

.notif-ghost-line--short[b-zd3ut8pba7] {
    width: 45%;
}

@keyframes notif-ghost-b-zd3ut8pba7 {
    0%, 100% {
        opacity: .5;
    }

    50% {
        opacity: 1;
    }
}

.notif-item__dot[b-zd3ut8pba7] {
    flex: 0 0 auto;
    align-self: center;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mud-palette-error);
}
/* /Components/Pages/AdvertisementDetails.razor.rz.scp.css */
/* ===== entrance animations ===== */
@keyframes ad-fade-up-b-xucun1bu8y {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

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

@keyframes ad-hero-in-b-xucun1bu8y {
    from {
        opacity: 0;
        transform: scale(1.06);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes ad-img-in-b-xucun1bu8y {
    from {
        opacity: 0;
        transform: scale(1.04);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes ad-reveal-b-xucun1bu8y {
    from {
        opacity: 0;
        transform: translateY(-8px);
        max-height: 0;
    }

    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 600px;
    }
}

.ad-anim[b-xucun1bu8y] {
    opacity: 0;
    animation: ad-fade-up-b-xucun1bu8y .55s cubic-bezier(.22, .61, .36, 1) forwards;
    animation-delay: var(--d, 0s);
}

/* ===== hero ===== */
.ad-hero[b-xucun1bu8y] {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: flex-start;
    background-size: cover;
    background-position: center;
    background-color: var(--mud-palette-primary);
    animation: ad-hero-in-b-xucun1bu8y .7s ease forwards;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

.ad-hero__scrim[b-xucun1bu8y] {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .35) 45%, rgba(0, 0, 0, .05) 100%);
}

/* ===== promoted hero ===== */
@keyframes ad-promo-glow-b-xucun1bu8y {
    0%, 100% {
        box-shadow: 0 14px 40px rgba(224, 165, 40, .35);
    }

    50% {
        box-shadow: 0 18px 54px rgba(224, 165, 40, .65);
    }
}

.ad-hero--promoted[b-xucun1bu8y] {
    border: 3px solid #e0a528;
    animation: ad-hero-in-b-xucun1bu8y .7s ease forwards, ad-promo-glow-b-xucun1bu8y 4s ease-in-out infinite;
}

/* gold "promoted" chip inside the hero badge cluster */
[b-xucun1bu8y] .promoted-chip {
    background: linear-gradient(135deg, #f6c945, #e0a528) !important;
    color: #3a2a05 !important;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(224, 165, 40, .5);
}

[b-xucun1bu8y] .promoted-chip .mud-icon-root {
    color: #3a2a05 !important;
}

.ad-hero__content[b-xucun1bu8y] {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px 30px;
    width: 100%;
}

.ad-hero__badges[b-xucun1bu8y] {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.ad-hero__name[b-xucun1bu8y] {
    color: #fff;
    font-weight: 800;
    line-height: 1.05;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .5);
}

.ad-hero__location[b-xucun1bu8y] {
    color: rgba(255, 255, 255, .9);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

/* ===== panels ===== */
.ad-panel[b-xucun1bu8y] {
    border-radius: 18px;
    border: 1px solid var(--mud-palette-lines-default);
    transition: box-shadow .25s ease, transform .25s ease;
}

.ad-panel:hover[b-xucun1bu8y] {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .10);
}

.ad-section-title[b-xucun1bu8y] {
    font-weight: 700;
    margin-bottom: 14px;
}

.ad-description[b-xucun1bu8y] {
    white-space: pre-wrap;
    line-height: 1.7;
    color: var(--mud-palette-text-primary);
}

.ad-chips[b-xucun1bu8y] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* ===== services with prices ===== */
.ad-services[b-xucun1bu8y] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ad-service[b-xucun1bu8y] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 11px 15px;
    border-radius: 12px;
    background: var(--mud-palette-background-grey);
    transition: transform .2s ease, box-shadow .2s ease;
}

.ad-service:hover[b-xucun1bu8y] {
    transform: translateX(4px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
}

.ad-service__name[b-xucun1bu8y] {
    font-weight: 600;
}

.ad-service__price[b-xucun1bu8y] {
    font-weight: 700;
    color: var(--mud-palette-primary);
    white-space: nowrap;
}

/* ===== gallery ===== */
.ad-gallery__main[b-xucun1bu8y] {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--mud-palette-action-disabled-background);
}

/* Horizontal scroll-snap track filling the 4:3 frame: one slide per photo, native swipe + snap.
   The arrows/counter overlay it (higher z-index); the scrollbar is hidden on all engines. */
.ad-gallery__track[b-xucun1bu8y] {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.ad-gallery__track[b-xucun1bu8y]::-webkit-scrollbar {
    display: none;
}

.ad-gallery__slide[b-xucun1bu8y] {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
}

.ad-gallery__img[b-xucun1bu8y] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ad-gallery__nav[b-xucun1bu8y] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, .45);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .25s ease, background .2s ease;
}

.ad-gallery__main:hover .ad-gallery__nav[b-xucun1bu8y] {
    opacity: 1;
}

.ad-gallery__nav:hover[b-xucun1bu8y] {
    background: rgba(0, 0, 0, .7);
}

.ad-gallery__nav--prev[b-xucun1bu8y] {
    left: 12px;
}

.ad-gallery__nav--next[b-xucun1bu8y] {
    right: 12px;
}

.ad-gallery__counter[b-xucun1bu8y] {
    position: absolute;
    z-index: 3;
    right: 12px;
    bottom: 12px;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    font-size: .78rem;
    padding: 3px 10px;
    border-radius: 99px;
}

.ad-gallery__thumbs[b-xucun1bu8y] {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.ad-gallery__thumb[b-xucun1bu8y] {
    width: 78px;
    height: 60px;
    object-fit: cover;
    border-radius: 9px;
    cursor: pointer;
    opacity: .6;
    flex: 0 0 auto;
    border: 2px solid transparent;
    transition: opacity .2s ease, transform .2s ease, border-color .2s ease;
}

.ad-gallery__thumb:hover[b-xucun1bu8y] {
    opacity: 1;
    transform: translateY(-2px);
}

.ad-gallery__thumb--active[b-xucun1bu8y] {
    opacity: 1;
    border-color: var(--mud-palette-primary);
}

/* ===== stats ===== */
.ad-stats[b-xucun1bu8y] {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.ad-stat[b-xucun1bu8y] {
    flex: 1 1 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 16px 10px;
    border-radius: 14px;
    background: var(--mud-palette-background-grey);
    transition: transform .2s ease;
}

.ad-stat:hover[b-xucun1bu8y] {
    transform: translateY(-3px);
}

.ad-stat[b-xucun1bu8y]  .mud-icon-root {
    color: var(--mud-palette-primary);
    margin-bottom: 4px;
}

.ad-stat__value[b-xucun1bu8y] {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.ad-stat__label[b-xucun1bu8y] {
    font-size: .8rem;
    color: var(--mud-palette-text-secondary);
}

/* ===== booking / sticky ===== */
.ad-sticky[b-xucun1bu8y] {
    position: sticky;
    top: 90px;
}

.ad-booking[b-xucun1bu8y] {
    background: linear-gradient(165deg, var(--mud-palette-surface), var(--mud-palette-background-grey));
}

.ad-booking__price[b-xucun1bu8y] {
    font-weight: 800;
    line-height: 1;
    margin-top: 2px;
}

.ad-prices[b-xucun1bu8y] {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ad-price-row[b-xucun1bu8y] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: 10px;
    background: var(--mud-palette-background-grey);
    font-size: .92rem;
}

.ad-price-row__amount[b-xucun1bu8y] {
    font-weight: 700;
    color: var(--mud-palette-primary);
}

/* ===== contacts reveal ===== */
.ad-contacts[b-xucun1bu8y] {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
    animation: ad-reveal-b-xucun1bu8y .4s ease forwards;
}

.ad-contact[b-xucun1bu8y] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--mud-palette-background-grey);
    color: var(--mud-palette-text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: background .2s ease, transform .2s ease;
}

.ad-contact:hover[b-xucun1bu8y] {
    background: var(--mud-palette-action-default-hover);
    transform: translateX(3px);
}

.ad-contact[b-xucun1bu8y]  .mud-icon-root {
    color: var(--mud-palette-primary);
}

/* ===== schedule ===== */
.ad-schedule[b-xucun1bu8y] {
    display: flex;
    flex-direction: column;
}

.ad-schedule__row[b-xucun1bu8y] {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid var(--mud-palette-lines-default);
}

.ad-schedule__row:last-child[b-xucun1bu8y] {
    border-bottom: none;
}

.ad-schedule__day[b-xucun1bu8y] {
    font-weight: 600;
}

.ad-schedule__time[b-xucun1bu8y] {
    color: var(--mud-palette-text-secondary);
}

/* ===== comments ===== */
.ad-comment-form[b-xucun1bu8y] {
    padding: 4px 0 8px;
}

.ad-comments[b-xucun1bu8y] {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ad-comment[b-xucun1bu8y] {
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: var(--mud-palette-background-grey);
}

.ad-comment__avatar[b-xucun1bu8y] {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    font-weight: 700;
    background: var(--mud-palette-primary);
    color: #fff;
}

.ad-comment__body[b-xucun1bu8y] {
    flex: 1 1 auto;
    min-width: 0;
}

.ad-comment__head[b-xucun1bu8y] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 4px;
}

.ad-comment__author[b-xucun1bu8y] {
    font-weight: 700;
}

.ad-comment__date[b-xucun1bu8y] {
    font-size: .8rem;
    color: var(--mud-palette-text-secondary);
    white-space: nowrap;
}

.ad-comment__text[b-xucun1bu8y] {
    white-space: pre-wrap;
    line-height: 1.55;
    word-break: break-word;
}

.ad-unavailable[b-xucun1bu8y] {
    border-radius: 18px;
    border-style: dashed;
}

@media (max-width: 960px) {
    .ad-sticky[b-xucun1bu8y] {
        position: static;
    }

    .ad-hero__name[b-xucun1bu8y] {
        font-size: 2rem;
    }
}

/* Advertiser online status row in the booking panel */
.ad-advertiser-status[b-xucun1bu8y] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--mud-palette-background-grey);
}

.ad-advertiser-status__label[b-xucun1bu8y] {
    font-size: .82rem;
    color: var(--mud-palette-text-secondary);
}

/* ===== Hidden (paywalled) photo overlay ===== */
.ad-gallery__main[b-xucun1bu8y] {
    position: relative;
}

.ad-locked-overlay[b-xucun1bu8y] {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    padding: 1rem;
    color: #fff;
    background: rgba(20, 16, 28, .35);
    /* Let clicks pass through the overlay backdrop to the carousel arrows beneath; only the
       overlay's own buttons stay interactive. */
    pointer-events: none;
}

.ad-locked-overlay[b-xucun1bu8y]  button,
.ad-locked-overlay[b-xucun1bu8y]  .mud-button-root {
    pointer-events: auto;
}

/* Carousel arrows sit above the locked overlay so they remain clickable on blurred photos. */
.ad-gallery__nav[b-xucun1bu8y] {
    z-index: 3;
}

.ad-locked-overlay .mud-icon-root[b-xucun1bu8y] {
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .6));
}

.ad-locked-overlay__title[b-xucun1bu8y] {
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .7);
}

.ad-locked-overlay__hint[b-xucun1bu8y] {
    max-width: 30rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, .92);
    text-shadow: 0 1px 6px rgba(0, 0, 0, .8);
}

.ad-gallery__thumb-wrap[b-xucun1bu8y] {
    position: relative;
    display: inline-flex;
    cursor: pointer;
}

.ad-gallery__thumb-lock[b-xucun1bu8y] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    color: #fff;
    background: rgba(20, 16, 28, .55);
    backdrop-filter: blur(2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .5);
    pointer-events: none;
}

.ad-gallery__thumb-lock[b-xucun1bu8y]  .mud-icon-root {
    font-size: 1.05rem;
}
/* /Components/Pages/AdvertisementStatistics.razor.rz.scp.css */
/* Gradient icon badge in the page header. */
.stats-page-badge[b-adop799u50] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, #ff9a5a, #ff5e62 55%, #e1306c);
    box-shadow: 0 12px 26px -10px rgba(225, 48, 108, .8);
}

.stats-page-badge[b-adop799u50]  .mud-icon-root {
    font-size: 1.7rem;
}

.stats-page-title[b-adop799u50] {
    font-weight: 800;
    letter-spacing: -1px;
}
/* /Components/Pages/CreateAdvertisement.razor.rz.scp.css */
/* Keep the live preview in view while the form is scrolled. */
.preview-pane[b-j0gvbkpr4v] {
    position: sticky;
    top: 24px;
}

/* Match the catalog card width so the preview is pixel-identical to a real listing. */
.preview-card[b-j0gvbkpr4v] {
    max-width: 340px;
    margin-inline: auto;
}
/* /Components/Pages/EditAdvertisement.razor.rz.scp.css */
/* Keep the live preview in view while the form is scrolled. */
.preview-pane[b-cx40bl5c68] {
    position: sticky;
    top: 24px;
}

/* Match the catalog card width so the preview is pixel-identical to a real listing. */
.preview-card[b-cx40bl5c68] {
    max-width: 340px;
    margin-inline: auto;
}
/* /Components/Pages/Favorites.razor.rz.scp.css */
/* Same fixed-width cards as the catalog, wrapped into as many centred columns as fit. */
.favorites-grid[b-gtq4gs6ha7] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 340px));
    gap: 24px;
    justify-content: center;
}
/* /Components/Pages/Home.razor.rz.scp.css */
.hero[b-94k3nzll4b] {
    position: relative;
    margin-top: -64px;
    padding: 96px 0 56px;
    overflow: hidden;
    isolation: isolate;
}

/* Living, drifting colour blobs behind the hero content. */
.hero[b-94k3nzll4b]::before {
    content: "";
    position: absolute;
    inset: -25%;
    z-index: -1;
    background: radial-gradient(38% 38% at 78% 32%, rgba(255, 87, 82, .22), transparent 60%),
    radial-gradient(34% 34% at 22% 12%, rgba(164, 255, 0, .12), transparent 60%),
    radial-gradient(40% 40% at 50% 90%, rgba(225, 48, 108, .14), transparent 62%);
    background-repeat: no-repeat;
    animation: hero-drift-b-94k3nzll4b 18s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes hero-drift-b-94k3nzll4b {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(2.5%, -2%, 0) scale(1.08);
    }

    100% {
        transform: translate3d(-2.5%, 2%, 0) scale(1.04);
    }
}

.hero[b-94k3nzll4b]::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--mud-palette-lines-default), transparent);
}

.hero-intro[b-94k3nzll4b] {
    display: flex;
    align-items: flex-start;
    gap: 44px;
}

/* MudText renders an <h1> (child component) that does NOT receive this component's scope
   attribute, so a plain `.hero-title` selector never matches and the title falls back to
   MudBlazor's default h1 (6rem → overflows phones). `::deep` targets it through the scoped
   `.hero` ancestor. */
.hero[b-94k3nzll4b]  .hero-title {
    font-size: clamp(1.9rem, 7vw, 2.7rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -.035em !important;
    margin-left: 24px;
    flex: 1;
    min-width: 0;
    overflow-wrap: anywhere;
}

.hero[b-94k3nzll4b]  .hero-title span {
    color: var(--mud-palette-primary);
}

.hero[b-94k3nzll4b]  .hero-copy {
    max-width: 680px;
    color: var(--mud-palette-text-secondary);
    font-weight: 400;
}

.hero-art[b-94k3nzll4b] {
    position: relative;
    min-height: 340px;
    display: grid;
    place-items: center;
}

.hero-monogram[b-94k3nzll4b] {
    position: relative;
    z-index: 2;
    width: 196px;
    height: 256px;
    display: grid;
    place-items: center;
    border-radius: 98px 98px 34px 34px;
    color: var(--mud-palette-primary);
    font-size: 8.5rem;
    font-weight: 600;
    line-height: 1;
    background: linear-gradient(155deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .015));
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 35px 80px rgba(0, 0, 0, .35);
    backdrop-filter: blur(16px);
    animation: hero-float-b-94k3nzll4b 7s ease-in-out infinite;
    will-change: transform;
}

@keyframes hero-float-b-94k3nzll4b {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.hero-orbit[b-94k3nzll4b] {
    position: absolute;
    border: 1px solid rgba(164, 255, 0, .25);
    border-radius: 50%;
}

/* The two orbit rings slowly counter-rotate around the monogram. */
.hero-orbit--one[b-94k3nzll4b] {
    width: 330px;
    height: 330px;
    animation: hero-spin-b-94k3nzll4b 26s linear infinite;
}

.hero-orbit--two[b-94k3nzll4b] {
    width: 268px;
    height: 268px;
    border-color: rgba(255, 87, 82, .28);
    transform: rotate(35deg) scaleY(.7);
    animation: hero-spin-rev-b-94k3nzll4b 20s linear infinite;
}

@keyframes hero-spin-b-94k3nzll4b {
    to {
        transform: rotate(360deg);
    }
}

@keyframes hero-spin-rev-b-94k3nzll4b {
    to {
        transform: rotate(-325deg) scaleY(.7);
    }
}

.hero[b-94k3nzll4b]  .hero-stat {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 36px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 18px;
    background: rgba(30, 30, 45, .88) !important;
    backdrop-filter: blur(12px);
}

.catalog[b-94k3nzll4b] {
    padding-top: 72px;
    padding-bottom: 80px;
}

/* Animated gradient accent bar across the top edge of the filter panel.
   A plain <div> (not a MudBlazor component) so the scoped-CSS hash attribute
   actually lands on it and these rules apply. */
.filter-sheen-bar[b-94k3nzll4b] {
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    z-index: 1;
    background: linear-gradient(90deg, #ff5752, #e1306c, #a4ff00, #ff5752);
    background-size: 300% 100%;
    animation: filter-sheen-b-94k3nzll4b 9s linear infinite;
}

@keyframes filter-sheen-b-94k3nzll4b {
    to {
        background-position: 300% 0;
    }
}

/* ===== Header ===== */
.filter-head[b-94k3nzll4b] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 1rem;
    padding-bottom: .85rem;
    border-bottom: 1px solid var(--mud-palette-lines-default);
}

.filter-head__title[b-94k3nzll4b] {
    font-weight: 700;
    letter-spacing: -.3px;
}

/* ===== Quick / Advanced segmented toggle ===== */
.filter-modes[b-94k3nzll4b] {
    margin-left: auto;
    display: inline-flex;
    padding: 4px;
    gap: 4px;
    border-radius: 14px;
    background: rgba(0, 0, 0, .28);
    border: 1px solid var(--mud-palette-lines-default);
    flex: 0 0 auto;
}

.filter-mode[b-94k3nzll4b] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    background: transparent;
    color: var(--mud-palette-text-secondary);
    font: inherit;
    font-weight: 600;
    font-size: .9rem;
    line-height: 1;
    padding: 8px 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: color .2s ease, background .25s ease, box-shadow .25s ease;
    white-space: nowrap;
}

.filter-mode:hover[b-94k3nzll4b] {
    color: #fff;
}

.filter-mode--active[b-94k3nzll4b] {
    color: #fff;
    background: linear-gradient(135deg, #ff9a5a, #ff5e62 55%, #e1306c);
    box-shadow: 0 8px 20px -10px rgba(225, 48, 108, .85);
}

/* ===== Quick filter block ===== */
.quick-filter[b-94k3nzll4b] {
    max-width: 560px;
}

.quick-filter__hint[b-94k3nzll4b] {
    display: block;
}

@media (max-width: 599px) {
    .filter-modes[b-94k3nzll4b] {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }

    .filter-mode[b-94k3nzll4b] {
        flex: 1 1 0;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .filter-sheen-bar[b-94k3nzll4b] {
        animation: none;
    }
}

@media (max-width: 959px) {
    .hero[b-94k3nzll4b] {
        padding: 84px 0 40px;
    }

    .hero-intro[b-94k3nzll4b] {
        flex-direction: column;
        gap: 18px;
    }

    .hero[b-94k3nzll4b]  .hero-title {
        margin-left: 0;
    }

    .hero-art[b-94k3nzll4b] {
        min-height: 300px;
    }

    .hero[b-94k3nzll4b]  .hero-stat {
        right: 8%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero[b-94k3nzll4b]::before,
    .hero-monogram[b-94k3nzll4b],
    .hero-orbit--one[b-94k3nzll4b],
    .hero-orbit--two[b-94k3nzll4b] {
        animation: none;
    }
}

/* Promoted (advertised) listings shown above the catalog, same fixed-width cards as the catalog. */
.promoted-section[b-94k3nzll4b] {
    margin-bottom: 8px;
}

.promoted-grid[b-94k3nzll4b] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 340px));
    gap: 24px;
    justify-content: center;
}
/* /Components/Pages/MySubscriptions.razor.rz.scp.css */
/* ----- shared card entrance animation ----- */
@keyframes sub-fade-up-b-21bx76x16f {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

@keyframes sub-meter-grow-b-21bx76x16f {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(var(--target, 0));
    }
}

/* ----- plan / subscription card ----- */
.sub-card[b-21bx76x16f] {
    position: relative;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--mud-palette-lines-default);
    background: var(--mud-palette-surface);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    opacity: 0;
    animation: sub-fade-up-b-21bx76x16f .5s ease forwards;
}

/* on hover the card lifts and glows in its own plan accent colour */
.sub-card:hover[b-21bx76x16f] {
    transform: translateY(-6px);
    box-shadow: 0 16px 42px var(--accent-soft);
    border-color: var(--accent);
}

/* accent strip along the top, tinted per plan */
.sub-card[b-21bx76x16f]::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: var(--accent, var(--mud-palette-primary));
}

.sub-card__body[b-21bx76x16f] {
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* ----- icon badge ----- */
.sub-badge[b-21bx76x16f] {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: #fff;
    background: var(--accent, var(--mud-palette-primary));
    box-shadow: 0 8px 20px var(--accent-soft, rgba(0, 0, 0, .2));
    transition: transform .35s ease;
}

.sub-card:hover .sub-badge[b-21bx76x16f] {
    transform: rotate(-8deg) scale(1.08);
}

.sub-badge[b-21bx76x16f]  .mud-icon-root {
    font-size: 2rem;
}

.sub-name[b-21bx76x16f] {
    font-weight: 700;
    line-height: 1;
}

.sub-price[b-21bx76x16f] {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin: 6px 0 18px;
}

.sub-price__amount[b-21bx76x16f] {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--accent, var(--mud-palette-primary));
    line-height: 1;
}

.sub-price__period[b-21bx76x16f] {
    color: var(--mud-palette-text-secondary);
    font-size: .85rem;
}

/* ----- feature list ----- */
.sub-features[b-21bx76x16f] {
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sub-features li[b-21bx76x16f] {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .95rem;
}

.sub-features[b-21bx76x16f]  .mud-icon-root {
    color: var(--accent, var(--mud-palette-primary));
    flex: 0 0 auto;
}

.sub-expiry[b-21bx76x16f]  .mud-icon-root {
    color: var(--accent, var(--mud-palette-primary));
}

/* ----- "popular" ribbon ----- */
.sub-ribbon[b-21bx76x16f] {
    position: absolute;
    top: 28px;
    right: -34px;
    transform: rotate(45deg);
    background: var(--accent, var(--mud-palette-primary));
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 4px 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
    z-index: 2;
}

.sub-card--popular[b-21bx76x16f] {
    border-color: var(--accent);
    box-shadow: 0 10px 30px var(--accent-soft);
}

/* ----- usage meters (active subscription) ----- */
.sub-meter[b-21bx76x16f] {
    margin-bottom: 16px;
}

.sub-meter__head[b-21bx76x16f] {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px;
    font-size: .9rem;
}

.sub-meter__head strong[b-21bx76x16f] {
    font-size: 1.05rem;
    color: var(--accent, var(--mud-palette-primary));
}

.sub-meter__track[b-21bx76x16f] {
    height: 9px;
    border-radius: 99px;
    background: var(--mud-palette-action-disabled-background);
    overflow: hidden;
}

.sub-meter__fill[b-21bx76x16f] {
    height: 100%;
    border-radius: 99px;
    background: var(--accent, var(--mud-palette-primary));
    transform-origin: left center;
    transform: scaleX(var(--target, 0));
    animation: sub-meter-grow-b-21bx76x16f .9s cubic-bezier(.22, .61, .36, 1) forwards;
}

.sub-expiry[b-21bx76x16f] {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--mud-palette-text-secondary);
    font-size: .9rem;
    margin-top: 6px;
}

/* ----- per-plan accents ----- */
.plan--silver[b-21bx76x16f] {
    --accent: #9aa6b4;
    --accent-soft: rgba(154, 166, 180, .45);
}

.plan--gold[b-21bx76x16f] {
    --accent: #e0a528;
    --accent-soft: rgba(224, 165, 40, .38);
}

.plan--platinum[b-21bx76x16f] {
    --accent: #8e7cc3;
    --accent-soft: rgba(142, 124, 195, .5);
}

/* ----- platinum: the most expressive tier ----- */
@keyframes sub-shimmer-b-21bx76x16f {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 200% 0;
    }
}

/* slow "breathing" glow, unique to platinum */
@keyframes sub-platinum-pulse-b-21bx76x16f {
    0%, 100% {
        box-shadow: 0 10px 26px rgba(142, 124, 195, .28);
    }

    50% {
        box-shadow: 0 18px 48px rgba(142, 124, 195, .7);
    }
}

.sub-card.plan--platinum[b-21bx76x16f] {
    border-color: var(--accent);
    box-shadow: 0 12px 34px var(--accent-soft);
    background: linear-gradient(160deg, rgba(142, 124, 195, .12), var(--mud-palette-surface) 55%);
    /* run the entrance first, then keep pulsing the glow slowly */
    animation: sub-fade-up-b-21bx76x16f .5s ease forwards,
    sub-platinum-pulse-b-21bx76x16f 4s ease-in-out .5s infinite;
}

.sub-card.plan--platinum[b-21bx76x16f]::before {
    height: 6px;
    background: linear-gradient(90deg, #c4b8e8, #7e57c2, #c4b8e8);
    background-size: 200% 100%;
    animation: sub-shimmer-b-21bx76x16f 3s linear infinite;
}

.sub-card.plan--platinum .sub-badge[b-21bx76x16f] {
    background: linear-gradient(135deg, #b9aee0, #6d5ba6);
}

/* keep the slow glow pulsing on hover; just add the lift */
.sub-card.plan--platinum:hover[b-21bx76x16f] {
    transform: translateY(-10px);
}
/* /Components/Pages/RecentlyViewed.razor.rz.scp.css */
/* Same fixed-width cards as the catalog, wrapped into as many centred columns as fit. */
.recent-grid[b-eibkh106ma] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 340px));
    gap: 24px;
    justify-content: center;
}
/* /Components/Pages/Statistics.razor.rz.scp.css */
/* Gradient icon badge in the page header. */
.stats-page-badge[b-1c4uleiaqw] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, #ff9a5a, #ff5e62 55%, #e1306c);
    box-shadow: 0 12px 26px -10px rgba(225, 48, 108, .8);
}

.stats-page-badge[b-1c4uleiaqw]  .mud-icon-root {
    font-size: 1.7rem;
}

.stats-page-title[b-1c4uleiaqw] {
    font-weight: 800;
    letter-spacing: -1px;
}

.stats-section-title[b-1c4uleiaqw] {
    font-weight: 700;
    letter-spacing: -.4px;
    position: relative;
    padding-left: .85rem;
}

.stats-section-title[b-1c4uleiaqw]::before {
    content: "";
    position: absolute;
    left: 0;
    top: .15em;
    bottom: .15em;
    width: 4px;
    border-radius: 4px;
    background: linear-gradient(180deg, #ff9a5a, #e1306c);
}

.stats-table-wrap[b-1c4uleiaqw] {
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 18px;
    overflow: hidden;
}
/* /Components/Pages/Wallet.razor.rz.scp.css */
/* Entrance animation (staggered via --d). */
@keyframes wallet-fade-up-b-darft1e5nd {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.wallet-anim[b-darft1e5nd] {
    opacity: 0;
    animation: wallet-fade-up-b-darft1e5nd .55s cubic-bezier(.22, .61, .36, 1) forwards;
    animation-delay: var(--d, 0s);
}

/* Base card: rounded, subtle border, lifts on hover. */
.wallet-card[b-darft1e5nd] {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid var(--mud-palette-lines-default);
    background: var(--mud-palette-surface);
    transition: transform .28s ease, box-shadow .28s ease;
}

.wallet-card:hover[b-darft1e5nd] {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px -24px rgba(0, 0, 0, .5);
}

.wallet-section-title[b-darft1e5nd] {
    font-weight: 700;
    letter-spacing: -.4px;
}

/* ===== Balance card: warm gradient + animated shine ===== */
.wallet-card--balance[b-darft1e5nd] {
    border: none;
    color: #fff;
    background: linear-gradient(135deg, #ff9a5a 0%, #ff5e62 48%, #e1306c 100%);
    background-size: 180% 180%;
    box-shadow: 0 18px 42px -22px rgba(225, 48, 108, .8);
    animation: wallet-fade-up-b-darft1e5nd .55s cubic-bezier(.22, .61, .36, 1) forwards,
    wallet-gradient-b-darft1e5nd 12s ease infinite;
    animation-delay: var(--d, 0s), 0s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 168px;
}

@keyframes wallet-gradient-b-darft1e5nd {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.wallet-card--balance[b-darft1e5nd]::after {
    content: "";
    position: absolute;
    top: -60%;
    left: 0;
    width: 35%;
    height: 220%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .4), transparent);
    transform: translateX(-150%) rotate(8deg);
    animation: wallet-shine-b-darft1e5nd 5s ease-in-out infinite;
}

@keyframes wallet-shine-b-darft1e5nd {
    0% {
        transform: translateX(-150%) rotate(8deg);
    }

    55%, 100% {
        transform: translateX(320%) rotate(8deg);
    }
}

/* Frosted circular icon badge in the top-right corner. */
.wallet-balance__badge[b-darft1e5nd] {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .28);
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 18px -8px rgba(0, 0, 0, .35);
}

.wallet-balance__badge .mud-icon-root[b-darft1e5nd] {
    color: #fff;
    font-size: 1.5rem;
}

.wallet-balance__label[b-darft1e5nd] {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, .85) !important;
    letter-spacing: 1px;
}

.wallet-balance__amount[b-darft1e5nd] {
    position: relative;
    z-index: 1;
    margin-top: .2rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    text-shadow: 0 4px 18px rgba(0, 0, 0, .22);
}

.wallet-balance__currency[b-darft1e5nd] {
    font-size: .5em;
    font-weight: 700;
    opacity: .9;
    margin-right: .12em;
    vertical-align: super;
}

/* ===== Stars card ===== */
.wallet-card--stars[b-darft1e5nd] {
    background: linear-gradient(135deg, var(--mud-palette-surface) 55%, rgba(246, 180, 10, .14) 100%);
}

.wallet-card--stars[b-darft1e5nd]::after {
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 16rem;
    height: 16rem;
    background: radial-gradient(circle, rgba(246, 180, 10, .22) 0%, transparent 65%);
    pointer-events: none;
    animation: wallet-glow-b-darft1e5nd 4.5s ease-in-out infinite;
}

@keyframes wallet-glow-b-darft1e5nd {
    0%, 100% {
        opacity: .45;
        transform: scale(1);
    }

    50% {
        opacity: .9;
        transform: scale(1.12);
    }
}

.wallet-stat[b-darft1e5nd] {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.wallet-stat__value[b-darft1e5nd] {
    display: flex;
    align-items: baseline;
    gap: .45rem;
}

.wallet-stat__num[b-darft1e5nd] {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1.5px;
    background: linear-gradient(120deg, #f6b40a, #ff8a00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wallet-star[b-darft1e5nd] {
    color: #f6b40a;
    filter: drop-shadow(0 0 7px rgba(246, 180, 10, .6));
    animation: wallet-star-pulse-b-darft1e5nd 2.6s ease-in-out infinite;
    align-self: center;
}

@keyframes wallet-star-pulse-b-darft1e5nd {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.18);
    }
}

/* Respect reduced-motion preferences. */
@media (prefers-reduced-motion: reduce) {
    .wallet-anim[b-darft1e5nd],
    .wallet-card--balance[b-darft1e5nd],
    .wallet-card--balance[b-darft1e5nd]::after,
    .wallet-card--stars[b-darft1e5nd]::after,
    .wallet-card__bgicon[b-darft1e5nd],
    .wallet-star[b-darft1e5nd] {
        animation: none;
    }

    .wallet-anim[b-darft1e5nd],
    .wallet-card--balance[b-darft1e5nd] {
        opacity: 1;
    }
}
