/* /Components/Common/AdvertisementCard.razor.rz.scp.css */
.listing-card[b-rulibn33hn] {
    /* 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-rulibn33hn] {
    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-rulibn33hn {
    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-rulibn33hn {
    from {
        background-position: 0 0;
    }

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

.listing-card--promoted[b-rulibn33hn] {
    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-rulibn33hn 4s ease-in-out infinite;
}

.listing-card--promoted:hover[b-rulibn33hn] {
    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-rulibn33hn]::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-rulibn33hn 3s linear infinite;
}

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

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

/* Gold CTA button so the promoted card's action pops. */
[b-rulibn33hn] .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-rulibn33hn] .promoted-cta:hover {
    box-shadow: 0 6px 18px rgba(224, 165, 40, .7);
}

/* ===== diagonal corner "advertised" ribbon ===== */
.promoted-ribbon[b-rulibn33hn] {
    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-rulibn33hn 3s linear infinite;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .45);
}

.promoted-ribbon span[b-rulibn33hn] {
    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-rulibn33hn] {
    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-rulibn33hn] {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

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

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

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

.listing-footer[b-rulibn33hn] {
    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-rulibn33hn] {
    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-rulibn33hn]::-webkit-scrollbar {
    display: none;
}

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

.listing-photo__img[b-rulibn33hn] {
    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-rulibn33hn],
.listing-photo__identity[b-rulibn33hn],
.listing-photo__top[b-rulibn33hn],
.promoted-ribbon[b-rulibn33hn] {
    pointer-events: none;
}

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

/* Padlock badge centred on a hidden (blurred) photo in the carousel. */
.listing-photo__lock[b-rulibn33hn] {
    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-rulibn33hn] {
    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-rulibn33hn]::before,
.listing-photo[b-rulibn33hn]::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-rulibn33hn]::before,
.listing-photo:has(.listing-photo__img)[b-rulibn33hn]::after {
    display: none;
}

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

.listing-photo[b-rulibn33hn]::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-rulibn33hn] .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-rulibn33hn] .carousel-nav:hover {
    background: rgba(22, 20, 31, .85);
    transform: translateY(-50%) scale(1.08);
}

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

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

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

.carousel-dot[b-rulibn33hn] {
    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-rulibn33hn] {
    background: white;
    transform: scale(1.25);
}

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

.listing-photo__identity[b-rulibn33hn] {
    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-rulibn33hn] {
    justify-content: flex-end;
}

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

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

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

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

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

.favorite-button:hover[b-rulibn33hn] {
    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-rulibn33hn] {
    color: #ff4d6d !important;
}

.listing-name[b-rulibn33hn],
.listing-city[b-rulibn33hn] {
    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-rulibn33hn] {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.25;
}

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

.listing-description[b-rulibn33hn] {
    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-rulibn33hn] {
    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-iyh68ypdzc] {
    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-wk1pv8u5eg] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

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

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

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

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

.stats-card[b-wk1pv8u5eg] {
    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-wk1pv8u5eg .5s cubic-bezier(.22, .61, .36, 1) forwards;
    transition: transform .25s ease, box-shadow .25s ease;
}

.stats-card:hover[b-wk1pv8u5eg] {
    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-wk1pv8u5eg]::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-wk1pv8u5eg]::before {
    animation: stats-shine-b-wk1pv8u5eg .75s ease;
}

/* Faint oversized colour glow in the corner. */
.stats-card[b-wk1pv8u5eg]::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-wk1pv8u5eg] {
    animation-delay: 0s;
}

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

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

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

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

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

.stats-card__icon[b-wk1pv8u5eg] {
    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-wk1pv8u5eg] {
    transform: scale(1.12) rotate(-6deg);
}

.stats-card__num[b-wk1pv8u5eg] {
    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-wk1pv8u5eg] {
    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-wk1pv8u5eg] {
    --accent: #2196f3;
    --accent2: #21d4fd;
}

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

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

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

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

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

/* ===== Charts ===== */
.stats-chart[b-wk1pv8u5eg] {
    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-wk1pv8u5eg] {
    box-shadow: 0 18px 44px -28px rgba(0, 0, 0, .6);
}

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

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

    .stats-card:hover[b-wk1pv8u5eg]::before {
        animation: none;
    }
}
/* /Components/Common/OnlineIndicator.razor.rz.scp.css */
.presence[b-rbkyyywx90] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
    white-space: nowrap;
}

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

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

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

.presence--online .presence__label[b-rbkyyywx90] {
    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-ancok8mlql {
    from {
        opacity: 0;
        transform: translateY(10px) scale(.96);
    }

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

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

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

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

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

.chat-bubble[b-ancok8mlql] {
    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-ancok8mlql] {
    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-ancok8mlql] {
    background: linear-gradient(135deg, var(--mud-palette-primary), #9f3f6c);
    border-bottom-right-radius: 5px;
    color: #fff;
}

.chat-bubble__author[b-ancok8mlql] {
    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-ancok8mlql {
    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-ancok8mlql] {
    background: linear-gradient(135deg, #3b8bff, #1b5fd0) !important;
    border: none !important;
    color: #fff !important;
    animation: chat-admin-glow-b-ancok8mlql 3s ease-in-out infinite;
}

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

.chat-bubble__badge[b-ancok8mlql] {
    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-ancok8mlql]  .mud-icon-root {
    font-size: .9rem;
    color: #fff;
}

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

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

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

@media (prefers-reduced-motion: reduce) {
    .chat-row[b-ancok8mlql],
    .chat-bubble--admin[b-ancok8mlql] {
        animation: none;
    }
}
/* /Pages/CreateAdvertisement.razor.rz.scp.css */
/* Keep the live preview in view while the form is scrolled. */
.preview-pane[b-xfvy6h0xe2] {
    position: sticky;
    top: 24px;
}

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

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

/* Living, drifting colour blobs behind the hero content. */
.hero[b-g3sdfvo5r9]::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-g3sdfvo5r9 18s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes hero-drift-b-g3sdfvo5r9 {
    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-g3sdfvo5r9]::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--mud-palette-lines-default), transparent);
}

.hero-intro[b-g3sdfvo5r9] {
    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-g3sdfvo5r9]  .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-g3sdfvo5r9]  .hero-title span {
    color: var(--mud-palette-primary);
}

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

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

.hero-monogram[b-g3sdfvo5r9] {
    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-g3sdfvo5r9 7s ease-in-out infinite;
    will-change: transform;
}

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

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

.hero-orbit[b-g3sdfvo5r9] {
    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-g3sdfvo5r9] {
    width: 330px;
    height: 330px;
    animation: hero-spin-b-g3sdfvo5r9 26s linear infinite;
}

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

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

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

.hero[b-g3sdfvo5r9]  .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-g3sdfvo5r9] {
    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-g3sdfvo5r9] {
    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-g3sdfvo5r9 9s linear infinite;
}

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

/* ===== Header ===== */
.filter-head[b-g3sdfvo5r9] {
    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-g3sdfvo5r9] {
    font-weight: 700;
    letter-spacing: -.3px;
}

/* ===== Quick / Advanced segmented toggle ===== */
.filter-modes[b-g3sdfvo5r9] {
    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-g3sdfvo5r9] {
    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-g3sdfvo5r9] {
    color: #fff;
}

.filter-mode--active[b-g3sdfvo5r9] {
    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-g3sdfvo5r9] {
    max-width: 560px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ----- plan / subscription card ----- */
.sub-card[b-2tljsix14t] {
    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-2tljsix14t .5s ease forwards;
}

/* on hover the card lifts and glows in its own plan accent colour */
.sub-card:hover[b-2tljsix14t] {
    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-2tljsix14t]::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: var(--accent, var(--mud-palette-primary));
}

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

/* ----- icon badge ----- */
.sub-badge[b-2tljsix14t] {
    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-2tljsix14t] {
    transform: rotate(-8deg) scale(1.08);
}

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

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

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

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

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

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

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

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

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

/* ----- "popular" ribbon ----- */
.sub-ribbon[b-2tljsix14t] {
    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-2tljsix14t] {
    border-color: var(--accent);
    box-shadow: 0 10px 30px var(--accent-soft);
}

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

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

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

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

.sub-meter__fill[b-2tljsix14t] {
    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-2tljsix14t .9s cubic-bezier(.22, .61, .36, 1) forwards;
}

.sub-expiry[b-2tljsix14t] {
    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-2tljsix14t] {
    --accent: #9aa6b4;
    --accent-soft: rgba(154, 166, 180, .45);
}

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

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

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

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

/* slow "breathing" glow, unique to platinum */
@keyframes sub-platinum-pulse-b-2tljsix14t {
    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-2tljsix14t] {
    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-2tljsix14t .5s ease forwards,
    sub-platinum-pulse-b-2tljsix14t 4s ease-in-out .5s infinite;
}

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

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

/* keep the slow glow pulsing on hover; just add the lift */
.sub-card.plan--platinum:hover[b-2tljsix14t] {
    transform: translateY(-10px);
}
/* /Pages/RecentlyViewed.razor.rz.scp.css */
/* Same fixed-width cards as the catalog, wrapped into as many centred columns as fit. */
.recent-grid[b-0v9lo8l9m4] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 340px));
    gap: 24px;
    justify-content: center;
}
/* /Pages/Statistics.razor.rz.scp.css */
/* Gradient icon badge in the page header. */
.stats-page-badge[b-cs9a53ohlr] {
    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-cs9a53ohlr]  .mud-icon-root {
    font-size: 1.7rem;
}

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

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

.stats-section-title[b-cs9a53ohlr]::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-cs9a53ohlr] {
    border: 1px solid var(--mud-palette-lines-default);
    border-radius: 18px;
    overflow: hidden;
}
/* /Pages/Wallet.razor.rz.scp.css */
/* Entrance animation (staggered via --d). */
@keyframes wallet-fade-up-b-7in5rhtm60 {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

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

/* Base card: rounded, subtle border, lifts on hover. */
.wallet-card[b-7in5rhtm60] {
    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-7in5rhtm60] {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px -24px rgba(0, 0, 0, .5);
}

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

/* ===== Balance card: warm gradient + animated shine ===== */
.wallet-card--balance[b-7in5rhtm60] {
    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-7in5rhtm60 .55s cubic-bezier(.22, .61, .36, 1) forwards,
    wallet-gradient-b-7in5rhtm60 12s ease infinite;
    animation-delay: var(--d, 0s), 0s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 168px;
}

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

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

.wallet-card--balance[b-7in5rhtm60]::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-7in5rhtm60 5s ease-in-out infinite;
}

@keyframes wallet-shine-b-7in5rhtm60 {
    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-7in5rhtm60] {
    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-7in5rhtm60] {
    color: #fff;
    font-size: 1.5rem;
}

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

.wallet-balance__amount[b-7in5rhtm60] {
    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-7in5rhtm60] {
    font-size: .5em;
    font-weight: 700;
    opacity: .9;
    margin-right: .12em;
    vertical-align: super;
}

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

.wallet-card--stars[b-7in5rhtm60]::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-7in5rhtm60 4.5s ease-in-out infinite;
}

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

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

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

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

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

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

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

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

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