/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-1pkph0212u] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-1pkph0212u] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.site-nav[b-rnag8rbxfk] {
    background: #ffffff;
    backdrop-filter: blur(10px);
}

.nav-dropdown[b-rnag8rbxfk] {
    background: rgba(255, 255, 255, 0.96);
    /* border-color: rgba(226, 232, 240, 0.85);
    box-shadow: 0 20px 32px -24px rgba(15, 23, 42, 0.5); */
    backdrop-filter: blur(10px);
}

@media (prefers-reduced-motion: reduce) {

    .site-nav[b-rnag8rbxfk],
    .nav-dropdown[b-rnag8rbxfk] {
        backdrop-filter: none;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-cx795hmagm],
.components-reconnect-repeated-attempt-visible[b-cx795hmagm],
.components-reconnect-failed-visible[b-cx795hmagm],
.components-pause-visible[b-cx795hmagm],
.components-resume-failed-visible[b-cx795hmagm],
.components-rejoining-animation[b-cx795hmagm] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-cx795hmagm],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-cx795hmagm],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-cx795hmagm],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-cx795hmagm],
#components-reconnect-modal.components-reconnect-retrying[b-cx795hmagm],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-cx795hmagm],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-cx795hmagm],
#components-reconnect-modal.components-reconnect-failed[b-cx795hmagm],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-cx795hmagm] {
    display: block;
}


#components-reconnect-modal[b-cx795hmagm] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-cx795hmagm 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-cx795hmagm 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-cx795hmagm 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-cx795hmagm]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-cx795hmagm 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-cx795hmagm {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-cx795hmagm {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-cx795hmagm {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-cx795hmagm] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-cx795hmagm] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-cx795hmagm] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-cx795hmagm] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-cx795hmagm] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-cx795hmagm] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-cx795hmagm] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-cx795hmagm 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-cx795hmagm] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-cx795hmagm {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/About.razor.rz.scp.css */
.hero-orb[b-ceyrvvthaz] {
    position: absolute;
    border-radius: 9999px;
    filter: blur(44px);
    opacity: 0.42;
    pointer-events: none;
    z-index: 0;
    animation: float-b-ceyrvvthaz 10s ease-in-out infinite;
}

.hero-orb-blue[b-ceyrvvthaz] {
    width: 17rem;
    height: 17rem;
    top: 4rem;
    left: -5rem;
    background: rgba(59, 130, 246, 0.24);
}

.hero-orb-pink[b-ceyrvvthaz] {
    width: 15rem;
    height: 15rem;
    top: 8rem;
    right: -4rem;
    background: rgba(236, 72, 153, 0.22);
    animation-delay: 1.2s;
}

.reveal[b-ceyrvvthaz] {
    opacity: 0;
    transform: translateY(18px) scale(0.99);
    animation: reveal-up-b-ceyrvvthaz 680ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: var(--delay, 0ms);
}

@keyframes reveal-up-b-ceyrvvthaz {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.99);
    }

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

@keyframes float-b-ceyrvvthaz {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, 12px, 0);
    }
}

@media (max-width: 768px) {
    .hero-orb[b-ceyrvvthaz] {
        opacity: 0.3;
        filter: blur(36px);
    }
}

@media (prefers-reduced-motion: reduce) {

    .hero-orb[b-ceyrvvthaz],
    .reveal[b-ceyrvvthaz] {
        animation: none !important;
        opacity: 1;
        transform: none;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
.home-shell[b-s477sli825] {
    position: relative;
    isolation: isolate;
    background: #ffffff;
    min-height: 100vh;
}

.home-shell[b-s477sli825]::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffffff;
    pointer-events: none;
    z-index: -2;
}

.home-surface[b-s477sli825] {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
}

.home-surface-alt[b-s477sli825] {
    background: rgba(241, 245, 249, 0.72);
    backdrop-filter: blur(10px);
}

.hero-section[b-s477sli825] {
    position: relative;
    isolation: isolate;
}

.hero-orb[b-s477sli825] {
    position: absolute;
    border-radius: 9999px;
    filter: blur(44px);
    opacity: 0.42;
    pointer-events: none;
    z-index: 0;
    animation: float-b-s477sli825 10s ease-in-out infinite;
}

.hero-orb-blue[b-s477sli825] {
    width: 17rem;
    height: 17rem;
    top: 4rem;
    left: -5rem;
    background: rgba(59, 130, 246, 0.24);
}

.hero-orb-pink[b-s477sli825] {
    width: 15rem;
    height: 15rem;
    top: 8rem;
    right: -4rem;
    background: rgba(236, 72, 153, 0.22);
    animation-delay: 1.2s;
}

.hero-shape[b-s477sli825] {
    position: absolute;
    border-radius: 28% 72% 55% 45% / 45% 30% 70% 55%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(56, 189, 248, 0.08));
    border: 1px solid rgba(59, 130, 246, 0.12);
    opacity: 0.55;
    pointer-events: none;
    z-index: -1;
    animation: drift-b-s477sli825 18s ease-in-out infinite;
}

.hero-shape-1[b-s477sli825] {
    width: 9rem;
    height: 9rem;
    top: 12%;
    left: 14%;
    animation-duration: 20s;
}

.hero-shape-2[b-s477sli825] {
    width: 14rem;
    height: 8rem;
    top: 22%;
    right: 10%;
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.2), rgba(59, 130, 246, 0.08));
    border-color: rgba(244, 114, 182, 0.18);
    animation-name: drift-alt-b-s477sli825;
    animation-duration: 24s;
}

.hero-shape-3[b-s477sli825] {
    width: 6.5rem;
    height: 6.5rem;
    bottom: 22%;
    left: 18%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.16), rgba(14, 165, 233, 0.12));
    animation-name: spin-slow-b-s477sli825;
    animation-duration: 30s;
}

.hero-shape-4[b-s477sli825] {
    width: 12rem;
    height: 12rem;
    bottom: 10%;
    right: 16%;
    background: linear-gradient(135deg, rgba(148, 163, 184, 0.2), rgba(59, 130, 246, 0.08));
    border-color: rgba(148, 163, 184, 0.2);
    animation-name: drift-wide-b-s477sli825;
    animation-duration: 26s;
}

.section-anchor[b-s477sli825] {
    position: relative;
    scroll-margin-top: 6rem;
}

.section-anchor[b-s477sli825]::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    border: 1px solid transparent;
    box-shadow: 0 0 0 0 rgba(15, 23, 42, 0);
    pointer-events: none;
    opacity: 0;
}

.section-anchor.is-scroll-arrived[b-s477sli825]::after {
    animation: section-arrival-b-s477sli825 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

:global(html)[b-s477sli825] {
    scroll-behavior: smooth;
}

.reveal[b-s477sli825] {
    opacity: 0;
    transform: translateY(18px) scale(0.99);
    animation: reveal-up-b-s477sli825 680ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: var(--delay, 0ms);
}

.hero-primary[b-s477sli825],
.hero-secondary[b-s477sli825],
.interactive-cta[b-s477sli825] {
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.hero-primary:hover[b-s477sli825],
.hero-secondary:hover[b-s477sli825],
.interactive-cta:hover[b-s477sli825] {
    transform: translateY(-2px);
}

.hero-scroll-indicator[b-s477sli825] {
    font-weight: 500;
    letter-spacing: 0.01em;
}

.hero-scroll-indicator span[b-s477sli825] {
    transition: transform 220ms ease;
}

.hero-scroll-indicator:hover span[b-s477sli825] {
    transform: translateY(2px);
}

.product-panel[b-s477sli825] {
    border-radius: 1.5rem;
    transition: box-shadow 260ms ease, transform 260ms ease;
}

.product-section[b-s477sli825] {
    position: relative;
    z-index: 0;
}

.product-section[b-s477sli825]::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 2rem;
    opacity: 0.6;
    pointer-events: none;
    z-index: -1;
}

.product-section-stylit[b-s477sli825]::before {
    background:
        radial-gradient(circle at 12% 30%, rgba(59, 130, 246, 0.16), transparent 55%),
        radial-gradient(circle at 85% 70%, rgba(99, 102, 241, 0.12), transparent 50%);
}

.product-section-enfant[b-s477sli825]::before {
    background:
        radial-gradient(circle at 18% 25%, rgba(56, 189, 248, 0.18), transparent 60%),
        radial-gradient(circle at 82% 68%, rgba(20, 184, 166, 0.14), transparent 55%);
}

.product-panel-modern[b-s477sli825] {
    position: relative;
    padding: 2.75rem;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.82));
    box-shadow: 0 32px 60px -48px rgba(15, 23, 42, 0.45);
    overflow: hidden;
}

.product-panel-modern[b-s477sli825]::after {
    content: "";
    position: absolute;
    inset: -40% -20% auto auto;
    width: 18rem;
    height: 18rem;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.16), transparent 70%);
    opacity: 0.6;
    pointer-events: none;
}

.product-badge[b-s477sli825] {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(255, 255, 255, 0.75);
    color: #1e293b;
}

.product-badge-stylit[b-s477sli825] {
    border-color: rgba(59, 130, 246, 0.35);
    color: #1d4ed8;
    background: rgba(239, 246, 255, 0.9);
}

.product-badge-enfant[b-s477sli825] {
    border-color: rgba(14, 165, 233, 0.35);
    color: #0e7490;
    background: rgba(236, 254, 255, 0.9);
}

.product-meta[b-s477sli825] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.product-chip[b-s477sli825] {
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #0f172a;
    background: rgba(241, 245, 249, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.28);
}

.feature-list li[b-s477sli825] {
    padding: 0.75rem 0.9rem;
    border-radius: 0.9rem;
    background: rgba(248, 250, 252, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.product-media-glow[b-s477sli825] {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(99, 102, 241, 0.12));
}

.product-media-glow-enfant[b-s477sli825] {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.24), rgba(20, 184, 166, 0.14));
}

.product-media-frame[b-s477sli825] {
    box-shadow: 0 28px 50px -40px rgba(30, 41, 59, 0.6);
}

.product-cta[b-s477sli825] {
    position: relative;
}

.product-cta[b-s477sli825]::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0.4);
    transform-origin: left;
    transition: transform 220ms ease;
}

.product-cta:hover[b-s477sli825]::after {
    transform: scaleX(1);
}

.product-panel:hover[b-s477sli825] {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -28px rgba(15, 23, 42, 0.22);
}

.feature-media img[b-s477sli825] {
    transition: transform 420ms ease, box-shadow 420ms ease;
}

.feature-media:hover img[b-s477sli825] {
    transform: scale(1.025);
}

.feature-media-free[b-s477sli825] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-media-free img[b-s477sli825] {
    border-radius: 2rem;
    box-shadow: 0 30px 60px -42px rgba(15, 23, 42, 0.45);
}

.feature-media-free:hover img[b-s477sli825] {
    transform: translateY(-6px);
}

.mono-icon-chip[b-s477sli825] {
    color: #fff;
    background: linear-gradient(145deg, #0f172a, #020617);
    border: 1px solid rgba(15, 23, 42, 0.85);
    box-shadow: 0 12px 24px -18px rgba(2, 6, 23, 0.85);
}

.mono-icon-chip-soft[b-s477sli825] {
    color: #0f172a;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 10px 20px -18px rgba(15, 23, 42, 0.4);
}

.mono-list-icon[b-s477sli825] {
    color: #111827;
}

.cta-link span[b-s477sli825] {
    transition: transform 220ms ease;
}

.cta-link:hover span[b-s477sli825] {
    transform: translateX(3px);
}

.infrastructure-card[b-s477sli825] {
    position: relative;
    overflow: hidden;
    transition: transform 240ms ease, box-shadow 240ms ease;
}

.infrastructure-card[b-s477sli825]::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid transparent;
    transition: border-color 240ms ease;
    pointer-events: none;
}

.infrastructure-card:hover[b-s477sli825] {
    transform: translateY(-6px);
    box-shadow: 0 24px 40px -26px rgba(15, 23, 42, 0.34);
}

.infrastructure-card:hover[b-s477sli825]::after {
    border-color: rgba(148, 163, 184, 0.45);
}

:global(a:focus-visible)[b-s477sli825],
:global(button:focus-visible)[b-s477sli825] {
    outline: 3px solid rgba(15, 23, 42, 0.35);
    outline-offset: 3px;
    border-radius: 0.75rem;
}

@keyframes reveal-up-b-s477sli825 {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.99);
    }

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

@keyframes float-b-s477sli825 {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, 12px, 0);
    }
}

@keyframes drift-b-s477sli825 {

    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(14px, -18px, 0) rotate(6deg);
    }
}

@keyframes drift-alt-b-s477sli825 {

    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(-18px, 16px, 0) rotate(-4deg);
    }
}

@keyframes drift-wide-b-s477sli825 {

    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(20px, 10px, 0) rotate(4deg);
    }
}

@keyframes spin-slow-b-s477sli825 {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(-10px, -6px, 0) rotate(12deg);
    }

    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
}

@keyframes section-arrival-b-s477sli825 {
    0% {
        opacity: 0.75;
        border-color: rgba(15, 23, 42, 0.16);
        box-shadow: 0 0 0 0 rgba(15, 23, 42, 0.18);
    }

    60% {
        opacity: 0.55;
        border-color: rgba(15, 23, 42, 0.12);
        box-shadow: 0 0 0 12px rgba(15, 23, 42, 0.06);
    }

    100% {
        opacity: 0;
        border-color: rgba(15, 23, 42, 0);
        box-shadow: 0 0 0 20px rgba(15, 23, 42, 0);
    }
}

@media (max-width: 768px) {
    .hero-orb[b-s477sli825] {
        opacity: 0.3;
        filter: blur(36px);
    }

    .hero-shape[b-s477sli825] {
        opacity: 0.35;
    }

    .product-panel-modern[b-s477sli825] {
        padding: 2rem 1.6rem;
    }

    .feature-list li[b-s477sli825] {
        padding: 0.65rem 0.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    :global(html)[b-s477sli825] {
        scroll-behavior: auto;
    }

    .hero-orb[b-s477sli825],
    .hero-shape[b-s477sli825],
    .reveal[b-s477sli825] {
        animation: none !important;
        opacity: 1;
        transform: none;
    }

    .section-anchor[b-s477sli825]::after {
        animation: none !important;
        opacity: 0 !important;
    }

    .hero-primary[b-s477sli825],
    .hero-secondary[b-s477sli825],
    .interactive-cta[b-s477sli825],
    .product-panel[b-s477sli825],
    .feature-media img[b-s477sli825],
    .hero-scroll-indicator span[b-s477sli825],
    .cta-link span[b-s477sli825],
    .infrastructure-card[b-s477sli825] {
        transition-duration: 1ms !important;
    }
}
/* /Components/Shared/CookieConsent.razor.rz.scp.css */
.cookie-banner[b-m2zo14zg2f] {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 70;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.cookie-card[b-m2zo14zg2f] {
    width: min(780px, 100%);
    background: rgba(15, 23, 42, 0.95);
    color: #f8fafc;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 24px 44px -30px rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(8px);
    pointer-events: auto;
    animation: cookie-slide-up-b-m2zo14zg2f 240ms ease-out;
}

.cookie-copy[b-m2zo14zg2f] {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(241, 245, 249, 0.96);
}

.cookie-copy a[b-m2zo14zg2f] {
    color: #93c5fd;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-copy a:hover[b-m2zo14zg2f] {
    color: #bfdbfe;
}

.cookie-actions[b-m2zo14zg2f] {
    margin-top: 0.9rem;
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.cookie-btn[b-m2zo14zg2f] {
    border: 1px solid transparent;
    border-radius: 0.7rem;
    padding: 0.55rem 0.85rem;
    font-size: 0.88rem;
    font-weight: 600;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.cookie-btn:hover[b-m2zo14zg2f] {
    transform: translateY(-1px);
}

.cookie-btn-secondary[b-m2zo14zg2f] {
    background: rgba(30, 41, 59, 0.92);
    border-color: rgba(148, 163, 184, 0.5);
    color: #e2e8f0;
}

.cookie-btn-secondary:hover[b-m2zo14zg2f] {
    background: rgba(51, 65, 85, 0.95);
}

.cookie-btn-primary[b-m2zo14zg2f] {
    background: #2563eb;
    color: #ffffff;
}

.cookie-btn-primary:hover[b-m2zo14zg2f] {
    background: #1d4ed8;
}

@keyframes cookie-slide-up-b-m2zo14zg2f {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

@media (max-width: 640px) {
    .cookie-card[b-m2zo14zg2f] {
        padding: 0.9rem;
        border-radius: 0.85rem;
    }

    .cookie-actions[b-m2zo14zg2f] {
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cookie-card[b-m2zo14zg2f],
    .cookie-btn[b-m2zo14zg2f] {
        animation: none;
        transition-duration: 1ms;
    }
}
