/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page-shell[b-8uz5ggya5s] {
    min-height: 100vh;
}

#blazor-error-ui[b-8uz5ggya5s] {
    color-scheme: light only;
    background: #fff3dd;
    bottom: 0;
    box-shadow: 0 -10px 24px rgba(90, 52, 36, 0.14);
    box-sizing: border-box;
    color: #693e2c;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .reload[b-8uz5ggya5s] {
        color: inherit;
        font-weight: 700;
    }

    #blazor-error-ui .dismiss[b-8uz5ggya5s] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-7ztg4cl2hc],
.components-reconnect-repeated-attempt-visible[b-7ztg4cl2hc],
.components-reconnect-failed-visible[b-7ztg4cl2hc],
.components-pause-visible[b-7ztg4cl2hc],
.components-resume-failed-visible[b-7ztg4cl2hc],
.components-rejoining-animation[b-7ztg4cl2hc] {
    display: none;
}

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


#components-reconnect-modal[b-7ztg4cl2hc] {
    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-7ztg4cl2hc 0.5s both;
    &[open]

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

@keyframes components-rejoining-animation-b-7ztg4cl2hc {
    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/Store/BrandMark.razor.rz.scp.css */
.brand-mark[b-nhsrnpankp] {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.brand-mark__image[b-nhsrnpankp] {
    display: block;
    width: auto;
    height: 4.3rem;
    max-width: min(22rem, 42vw);
    object-fit: contain;
}

.brand-mark--compact .brand-mark__image[b-nhsrnpankp] {
    height: 2.95rem;
    max-width: min(14rem, 38vw);
}

@media (max-width: 640px) {
    .brand-mark__image[b-nhsrnpankp] {
        height: 3.7rem;
        max-width: min(17rem, 58vw);
    }

    .brand-mark--compact .brand-mark__image[b-nhsrnpankp] {
        height: 2.6rem;
        max-width: min(12rem, 54vw);
    }
}
/* /Components/Store/CartPanel.razor.rz.scp.css */
.cart-panel[b-k9qbr4ba90] {
    display: grid;
    gap: 1.2rem;
    padding: 1.35rem;
    border-radius: 2rem;
    background: linear-gradient(180deg, rgba(250, 253, 255, 0.96), rgba(236, 247, 255, 0.92));
    border: 1px solid rgba(107, 154, 204, 0.14);
    box-shadow: 0 24px 66px rgba(72, 118, 168, 0.14);
    backdrop-filter: blur(12px);
}

.cart-panel__header[b-k9qbr4ba90] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: start;
}

.cart-panel__eyebrow[b-k9qbr4ba90] {
    display: inline-block;
    color: #5d8ab5;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 800;
}

.cart-panel h2[b-k9qbr4ba90],
.cart-panel h3[b-k9qbr4ba90] {
    margin: 0.35rem 0 0;
    font-family: "Sora", "Segoe UI", sans-serif;
    color: #18344f;
}

.cart-panel__counter[b-k9qbr4ba90] {
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: #315d87;
    font-size: 0.84rem;
    font-weight: 800;
}

.cart-panel__empty[b-k9qbr4ba90] {
    display: grid;
    gap: 0.9rem;
    padding: 1.35rem;
    border-radius: 1.6rem;
    background: rgba(255, 255, 255, 0.74);
    border: 1px dashed rgba(107, 154, 204, 0.2);
}

.cart-panel__empty p[b-k9qbr4ba90],
.cart-panel__note[b-k9qbr4ba90] {
    margin: 0;
    color: #627a93;
    line-height: 1.7;
}

.cart-panel__empty-visual[b-k9qbr4ba90] {
    position: relative;
    width: 5.5rem;
    height: 4rem;
}

.cart-panel__empty-visual span[b-k9qbr4ba90] {
    position: absolute;
    display: block;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 999px;
}

.cart-panel__empty-visual span:nth-child(1)[b-k9qbr4ba90] {
    left: 0;
    top: 1rem;
    background: #b9e1ff;
}

.cart-panel__empty-visual span:nth-child(2)[b-k9qbr4ba90] {
    left: 1.5rem;
    top: 0.2rem;
    background: #7fc0ff;
}

.cart-panel__empty-visual span:nth-child(3)[b-k9qbr4ba90] {
    left: 3.1rem;
    top: 1rem;
    background: #b6f0e6;
}

.cart-panel__list[b-k9qbr4ba90] {
    display: grid;
    gap: 0.9rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cart-panel__item[b-k9qbr4ba90] {
    display: grid;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(107, 154, 204, 0.12);
}

.cart-panel__item-copy[b-k9qbr4ba90] {
    display: grid;
    gap: 0.2rem;
}

.cart-panel__item-copy strong[b-k9qbr4ba90] {
    color: #18344f;
}

.cart-panel__item-copy span[b-k9qbr4ba90] {
    color: #5d8ab5;
    font-size: 0.84rem;
    font-weight: 700;
}

.cart-panel__item-tools[b-k9qbr4ba90] {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: center;
}

.cart-panel__stepper[b-k9qbr4ba90] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem;
    border-radius: 999px;
    background: #edf7ff;
}

.cart-panel__stepper button[b-k9qbr4ba90] {
    width: 2rem;
    height: 2rem;
    border: 0;
    border-radius: 999px;
    background: white;
    color: #315d87;
    font-size: 1rem;
    font-weight: 800;
}

.cart-panel__stepper span[b-k9qbr4ba90] {
    min-width: 1.4rem;
    text-align: center;
    color: #18344f;
    font-weight: 800;
}

.cart-panel__item-total[b-k9qbr4ba90] {
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 1.18rem;
    color: #18344f;
}

.cart-panel__remove[b-k9qbr4ba90] {
    justify-self: start;
    padding: 0;
    border: 0;
    background: none;
    color: #5d8ab5;
    font-size: 0.88rem;
    font-weight: 800;
}

.cart-panel__summary[b-k9qbr4ba90] {
    display: grid;
    gap: 0.75rem;
    padding: 1rem 0 0;
    border-top: 1px solid rgba(107, 154, 204, 0.14);
}

.cart-panel__actions[b-k9qbr4ba90] {
    display: grid;
}

.cart-panel__whatsapp[b-k9qbr4ba90] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 3.25rem;
    padding: 0.95rem 1.1rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #2cc96b, #18a954);
    color: #f6fff8;
    font-weight: 800;
    text-align: center;
    box-shadow: 0 18px 28px rgba(33, 158, 86, 0.22);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.cart-panel__whatsapp:hover[b-k9qbr4ba90] {
    transform: translateY(-2px);
    box-shadow: 0 22px 30px rgba(33, 158, 86, 0.28);
    filter: saturate(1.04);
}

.cart-panel__summary div[b-k9qbr4ba90] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.cart-panel__summary span[b-k9qbr4ba90] {
    color: #627a93;
}

.cart-panel__summary strong[b-k9qbr4ba90] {
    color: #18344f;
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 1.2rem;
}
/* /Components/Store/FlavorGrid.razor.rz.scp.css */
.flavor-grid[b-itiqu4co0l] {
    display: grid;
    gap: 2rem;
    padding: clamp(1.3rem, 2vw, 1.7rem);
    border-radius: 2rem;
    background: rgba(249, 253, 255, 0.84);
    border: 1px solid rgba(107, 154, 204, 0.12);
    box-shadow: 0 24px 70px rgba(74, 118, 168, 0.1);
    backdrop-filter: blur(10px);
}

.flavor-grid__heading[b-itiqu4co0l] {
    display: flex;
    justify-content: space-between;
    gap: 1.4rem;
    align-items: end;
}

.flavor-grid__heading h2[b-itiqu4co0l] {
    margin: 0.45rem 0 0;
    max-width: 14ch;
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #18344f;
}

.flavor-grid__heading p[b-itiqu4co0l] {
    margin: 0;
    max-width: 33rem;
    color: #627a93;
    line-height: 1.7;
}

.flavor-grid__eyebrow[b-itiqu4co0l] {
    display: inline-block;
    color: #5d8ab5;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 800;
}

.flavor-grid__list[b-itiqu4co0l] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.4rem;
}

.flavor-grid__cell[b-itiqu4co0l] {
    animation: flavor-rise-b-itiqu4co0l 650ms ease both;
    animation-delay: calc(var(--card-order) * 85ms);
}

@keyframes flavor-rise-b-itiqu4co0l {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

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

@media (max-width: 900px) {
    .flavor-grid__heading[b-itiqu4co0l] {
        flex-direction: column;
        align-items: start;
    }

    .flavor-grid__heading h2[b-itiqu4co0l] {
        max-width: none;
    }
}

@media (max-width: 720px) {
    .flavor-grid[b-itiqu4co0l] {
        padding: 1.15rem;
        border-radius: 1.6rem;
    }
}
/* /Components/Store/HeroSection.razor.rz.scp.css */
.hero-section[b-sqo1t05kvt] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 2rem;
    padding: clamp(1.4rem, 2vw, 1.8rem);
    border-radius: 2rem;
    background: linear-gradient(155deg, rgba(250, 253, 255, 0.96), rgba(235, 246, 255, 0.86));
    border: 1px solid rgba(107, 154, 204, 0.14);
    box-shadow: 0 32px 80px rgba(64, 111, 161, 0.12);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.hero-section__content[b-sqo1t05kvt] {
    display: grid;
    gap: 1.3rem;
    align-content: start;
}

.hero-section__kicker[b-sqo1t05kvt] {
    max-width: 42rem;
    margin: 0;
    color: #5d8ab5;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.hero-section h1[b-sqo1t05kvt] {
    margin: 0;
    max-width: 14ch;
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: clamp(2.65rem, 5vw, 4.2rem);
    line-height: 1;
    letter-spacing: -0.04em;
    color: #18344f;
}

.hero-section__description[b-sqo1t05kvt] {
    max-width: 40rem;
    margin: 0;
    color: #627a93;
    font-size: 1.02rem;
    line-height: 1.75;
}

.hero-section__actions[b-sqo1t05kvt] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.hero-section__button[b-sqo1t05kvt] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 10.5rem;
    padding: 0.95rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(96, 149, 207, 0.18);
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.hero-section__button:hover[b-sqo1t05kvt] {
    transform: translateY(-2px);
}

.hero-section__button--primary[b-sqo1t05kvt] {
    background: linear-gradient(135deg, #43a4ff, #2f7df3);
    color: #f7fbff;
    box-shadow: 0 18px 28px rgba(60, 137, 227, 0.26);
}

.hero-section__button--secondary[b-sqo1t05kvt] {
    background: rgba(255, 255, 255, 0.76);
    color: #22527b;
    box-shadow: 0 12px 22px rgba(69, 116, 165, 0.08);
}

.hero-section__benefits[b-sqo1t05kvt] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-section__benefits li[b-sqo1t05kvt] {
    padding: 0.72rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(107, 154, 204, 0.14);
    color: #315d87;
    font-size: 0.93rem;
    font-weight: 700;
}

.hero-section__visual[b-sqo1t05kvt] {
    position: relative;
    min-height: 100%;
}

.hero-section__snapshot[b-sqo1t05kvt] {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    display: grid;
    gap: 0.2rem;
    width: min(100%, 13rem);
    padding: 1rem 1.1rem;
    border-radius: 1.4rem;
    background: rgba(252, 254, 255, 0.88);
    border: 1px solid rgba(107, 154, 204, 0.16);
    box-shadow: 0 18px 36px rgba(75, 124, 176, 0.12);
    backdrop-filter: blur(10px);
}

.hero-section__snapshot-label[b-sqo1t05kvt] {
    color: #5d8ab5;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 800;
}

.hero-section__snapshot strong[b-sqo1t05kvt] {
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 1.45rem;
    color: #18344f;
}

.hero-section__snapshot span:last-child[b-sqo1t05kvt] {
    color: #627a93;
    font-weight: 700;
}

.hero-section__art[b-sqo1t05kvt] {
    position: relative;
    min-height: 29rem;
    padding-top: 4.5rem;
}

.hero-section__halo[b-sqo1t05kvt] {
    position: absolute;
    border-radius: 999px;
}

.hero-section__halo--peach[b-sqo1t05kvt] {
    inset: 4.2rem 2rem 5.8rem auto;
    width: 16rem;
    background: radial-gradient(circle at center, rgba(140, 205, 255, 0.78), rgba(140, 205, 255, 0));
}

.hero-section__halo--mint[b-sqo1t05kvt] {
    inset: auto auto 1rem 0;
    width: 15rem;
    height: 15rem;
    background: radial-gradient(circle at center, rgba(182, 242, 255, 0.76), rgba(182, 242, 255, 0));
}

.hero-section__cup[b-sqo1t05kvt] {
    position: absolute;
    inset: 5.4rem 2.3rem 2rem 2.3rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-section__scoop[b-sqo1t05kvt],
.hero-section__cream[b-sqo1t05kvt],
.hero-section__cup-body[b-sqo1t05kvt] {
    position: absolute;
    border-radius: 999px;
}

.hero-section__scoop[b-sqo1t05kvt] {
    width: 8rem;
    height: 8rem;
    top: 3.8rem;
    box-shadow: inset -16px -12px 0 rgba(255, 255, 255, 0.22);
    animation: hero-float-b-sqo1t05kvt 5s ease-in-out infinite;
}

.hero-section__scoop--left[b-sqo1t05kvt] {
    left: 4rem;
    background: linear-gradient(180deg, #d8efff, #74b8ff);
}

.hero-section__scoop--right[b-sqo1t05kvt] {
    right: 4rem;
    background: linear-gradient(180deg, #dff9f6, #76d0c6);
    animation-delay: 0.8s;
}

.hero-section__scoop--top[b-sqo1t05kvt] {
    top: 0.9rem;
    width: 8.6rem;
    height: 8.6rem;
    background: linear-gradient(180deg, #f2fbff, #9ed7ff);
    animation-delay: 1.4s;
}

.hero-section__cream[b-sqo1t05kvt] {
    top: 8.8rem;
    width: 16rem;
    height: 4rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(230, 244, 255, 0.96));
    box-shadow: 0 14px 24px rgba(105, 149, 193, 0.12);
}

.hero-section__cup-body[b-sqo1t05kvt] {
    top: 10.7rem;
    width: 14rem;
    height: 12rem;
    border-radius: 1.8rem 1.8rem 4rem 4rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(205, 230, 255, 0.86));
    border: 1px solid rgba(112, 165, 221, 0.18);
    box-shadow: 0 26px 36px rgba(92, 138, 187, 0.14);
    backdrop-filter: blur(10px);
}

.hero-section__cup-body[b-sqo1t05kvt]::after {
    content: "";
    position: absolute;
    inset: 1rem;
    border-radius: 1.2rem 1.2rem 3rem 3rem;
    border: 1px solid rgba(140, 191, 237, 0.34);
}

.hero-section__card[b-sqo1t05kvt] {
    position: absolute;
    left: 0.5rem;
    bottom: 3.3rem;
    z-index: 2;
    display: grid;
    gap: 0.2rem;
    padding: 0.95rem 1rem;
    border-radius: 1.25rem;
    background: rgba(252, 254, 255, 0.84);
    border: 1px solid rgba(107, 154, 204, 0.14);
    box-shadow: 0 18px 32px rgba(75, 124, 176, 0.12);
    backdrop-filter: blur(10px);
}

.hero-section__card span[b-sqo1t05kvt] {
    color: #5d8ab5;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 800;
}

.hero-section__card strong[b-sqo1t05kvt] {
    color: #18344f;
}

.hero-section__card--secondary[b-sqo1t05kvt] {
    top: 6.6rem;
    right: 0.5rem;
    left: auto;
    bottom: auto;
}

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

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

@media (max-width: 980px) {
    .hero-section[b-sqo1t05kvt] {
        grid-template-columns: 1fr;
    }

    .hero-section__snapshot[b-sqo1t05kvt] {
        position: relative;
        margin-left: auto;
        margin-bottom: 1rem;
    }

    .hero-section__art[b-sqo1t05kvt] {
        min-height: 24rem;
        padding-top: 0;
    }

    .hero-section__cup[b-sqo1t05kvt] {
        inset: 1.8rem 1rem 1rem;
    }

    .hero-section__card--secondary[b-sqo1t05kvt] {
        right: 0;
    }
}

@media (max-width: 640px) {
    .hero-section[b-sqo1t05kvt] {
        padding: 1.2rem;
        border-radius: 1.6rem;
    }

    .hero-section h1[b-sqo1t05kvt] {
        max-width: none;
        font-size: clamp(2.5rem, 13vw, 3.5rem);
    }

    .hero-section__actions[b-sqo1t05kvt] {
        flex-direction: column;
    }

    .hero-section__button[b-sqo1t05kvt] {
        width: 100%;
    }

    .hero-section__art[b-sqo1t05kvt] {
        min-height: 22rem;
    }

    .hero-section__card[b-sqo1t05kvt] {
        left: 0;
    }
}
/* /Components/Store/ProductCard.razor.rz.scp.css */
.product-card[b-o3r5wdqogc] {
    position: relative;
    display: grid;
    gap: 1.2rem;
    min-height: 100%;
    padding: 1.2rem;
    border-radius: 1.8rem;
    background: linear-gradient(180deg, var(--product-surface), rgba(255, 255, 255, 0.98));
    border: 1px solid rgba(104, 151, 202, 0.12);
    box-shadow: 0 20px 38px rgba(72, 118, 168, 0.1);
    transition: transform 200ms ease, box-shadow 200ms ease;
    overflow: hidden;
}

.product-card[b-o3r5wdqogc]::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(210, 235, 255, 0.72), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 62%);
    pointer-events: none;
}

.product-card:hover[b-o3r5wdqogc] {
    transform: translateY(-5px);
    box-shadow: 0 28px 44px rgba(72, 118, 168, 0.14);
}

.product-card__header[b-o3r5wdqogc],
.product-card__footer[b-o3r5wdqogc] {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: center;
}

.product-card__badge[b-o3r5wdqogc],
.product-card__portion[b-o3r5wdqogc],
.product-card__notes span[b-o3r5wdqogc] {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
}

.product-card__badge[b-o3r5wdqogc] {
    background: rgba(255, 255, 255, 0.76);
    color: #2e5e88;
}

.product-card__portion[b-o3r5wdqogc] {
    color: #5d8ab5;
    background: rgba(233, 246, 255, 0.9);
}

.product-card__visual[b-o3r5wdqogc] {
    position: relative;
    min-height: 11rem;
    border-radius: 1.6rem;
    background: linear-gradient(180deg, rgba(244, 250, 255, 0.84), rgba(255, 255, 255, 0.96));
    overflow: hidden;
}

.product-card__shadow[b-o3r5wdqogc] {
    position: absolute;
    left: 50%;
    bottom: 1.1rem;
    width: 8rem;
    height: 1.1rem;
    border-radius: 999px;
    background: rgba(82, 126, 170, 0.12);
    transform: translateX(-50%);
}

.product-card__scoop[b-o3r5wdqogc],
.product-card__cone[b-o3r5wdqogc],
.product-card__swirl[b-o3r5wdqogc] {
    position: absolute;
}

.product-card__scoop[b-o3r5wdqogc] {
    width: 5.8rem;
    height: 5.8rem;
    border-radius: 999px;
    box-shadow: inset -12px -10px 0 rgba(255, 255, 255, 0.22);
    transition: transform 220ms ease;
}

.product-card:hover .product-card__scoop--back[b-o3r5wdqogc] {
    transform: translateY(-4px) rotate(-4deg);
}

.product-card:hover .product-card__scoop--front[b-o3r5wdqogc] {
    transform: translateY(-6px) rotate(4deg);
}

.product-card__scoop--back[b-o3r5wdqogc] {
    top: 2.35rem;
    left: 3.5rem;
    background: linear-gradient(180deg, var(--product-secondary), var(--product-accent));
}

.product-card__scoop--front[b-o3r5wdqogc] {
    top: 1.4rem;
    right: 3.4rem;
    background: linear-gradient(180deg, var(--product-accent), var(--product-shadow));
}

.product-card__swirl[b-o3r5wdqogc] {
    top: 4.6rem;
    left: 50%;
    width: 7rem;
    height: 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(231, 244, 255, 0.95));
    border-radius: 999px;
    transform: translateX(-50%);
    box-shadow: 0 10px 18px rgba(87, 132, 176, 0.12);
}

.product-card__cone[b-o3r5wdqogc] {
    left: 50%;
    bottom: 1.15rem;
    width: 7.2rem;
    height: 4.8rem;
    border: 1px solid rgba(123, 174, 224, 0.2);
    border-radius: 1.2rem 1.2rem 2.5rem 2.5rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(214, 236, 255, 0.88));
    transform: translateX(-50%);
    box-shadow: 0 14px 20px rgba(76, 123, 171, 0.14);
}

.product-card__cone[b-o3r5wdqogc]::after {
    content: "";
    position: absolute;
    inset: 0.75rem;
    border-radius: 0.85rem 0.85rem 1.9rem 1.9rem;
    border: 1px solid rgba(141, 190, 236, 0.24);
}

.product-card__body[b-o3r5wdqogc] {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.7rem;
}

.product-card__subtitle[b-o3r5wdqogc] {
    margin: 0;
    color: #5d8ab5;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 800;
}

.product-card__body h3[b-o3r5wdqogc] {
    margin: 0;
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 1.58rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #18344f;
}

.product-card__description[b-o3r5wdqogc] {
    margin: 0;
    color: #627a93;
    line-height: 1.65;
}

.product-card__notes[b-o3r5wdqogc] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.product-card__notes span[b-o3r5wdqogc] {
    background: rgba(237, 247, 255, 0.88);
    color: #315d87;
}

.product-card__price[b-o3r5wdqogc] {
    display: grid;
    gap: 0.1rem;
}

.product-card__price span[b-o3r5wdqogc] {
    color: #5d8ab5;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 800;
}

.product-card__price strong[b-o3r5wdqogc] {
    font-family: "Sora", "Segoe UI", sans-serif;
    font-size: 1.4rem;
    color: #18344f;
}

.product-card__action[b-o3r5wdqogc] {
    border: 0;
    padding: 0.9rem 1.15rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #44a7ff, #2f7df3);
    color: #f7fbff;
    font-weight: 800;
    box-shadow: 0 16px 24px rgba(64, 135, 224, 0.24);
    transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.product-card__action:hover[b-o3r5wdqogc] {
    transform: translateY(-2px);
    box-shadow: 0 20px 28px rgba(64, 135, 224, 0.3);
}

.product-card__action:active[b-o3r5wdqogc] {
    transform: translateY(0);
    opacity: 0.92;
}
/* /Components/Store/StoreFooter.razor.rz.scp.css */
.store-footer[b-flj9sps93n] {
    width: 100%;
    margin-top: 2rem;
    background: rgba(248, 253, 255, 0.92);
    border-top: 1px solid rgba(107, 154, 204, 0.14);
}

.store-footer__shell[b-flj9sps93n] {
    max-width: 1480px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 420px);
    gap: 1.2rem;
    align-items: start;
    width: 100%;
    padding: 1.35rem 1.5rem;
}

.store-footer__brand[b-flj9sps93n] {
    display: grid;
    gap: 0.85rem;
}

.store-footer__copy[b-flj9sps93n] {
    max-width: 34rem;
    margin: 0;
    color: #627a93;
    line-height: 1.7;
}

.store-footer__meta[b-flj9sps93n] {
    display: grid;
    gap: 0.55rem;
    justify-items: end;
    align-content: start;
}

.store-footer__label[b-flj9sps93n] {
    color: #5d8ab5;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 800;
}

.store-footer__address[b-flj9sps93n] {
    color: #315d87;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: right;
}

.store-footer__contact[b-flj9sps93n],
.store-footer__hours[b-flj9sps93n] {
    color: #315d87;
    font-size: 0.92rem;
    text-align: right;
}

.store-footer__rights[b-flj9sps93n] {
    color: #627a93;
    font-size: 0.92rem;
}

@media (max-width: 980px) {
    .store-footer__shell[b-flj9sps93n] {
        grid-template-columns: 1fr;
    }

    .store-footer__meta[b-flj9sps93n] {
        justify-items: start;
    }

    .store-footer__address[b-flj9sps93n],
    .store-footer__contact[b-flj9sps93n],
    .store-footer__hours[b-flj9sps93n] {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .store-footer__shell[b-flj9sps93n] {
        padding: 1.1rem 1rem;
    }
}
/* /Components/Store/Storefront.razor.rz.scp.css */
.storefront[b-cy8llbjd8j] {
    position: relative;
    padding: 1.4rem 1.5rem 3rem;
    overflow: clip;
    min-height: 100vh;
}

.storefront[b-cy8llbjd8j]::before,
.storefront[b-cy8llbjd8j]::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(6px);
    pointer-events: none;
}

.storefront[b-cy8llbjd8j]::before {
    top: -4rem;
    right: -6rem;
    width: 18rem;
    height: 18rem;
    background: radial-gradient(circle at center, rgba(114, 185, 255, 0.34), rgba(114, 185, 255, 0));
}

.storefront[b-cy8llbjd8j]::after {
    left: -7rem;
    bottom: 0;
    width: 20rem;
    height: 20rem;
    background: radial-gradient(circle at center, rgba(176, 237, 255, 0.28), rgba(176, 237, 255, 0));
}

.storefront__layout[b-cy8llbjd8j] {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(340px, 420px);
    gap: 1.9rem;
    max-width: 1480px;
    margin: 0 auto;
}

.storefront__content[b-cy8llbjd8j] {
    display: grid;
    gap: 1.7rem;
}

.storefront__cart[b-cy8llbjd8j] {
    position: sticky;
    top: 1.25rem;
    align-self: start;
}

@media (min-width: 1400px) {
    .storefront[b-cy8llbjd8j] {
        padding-inline: 1.8rem;
    }

    .storefront__layout[b-cy8llbjd8j] {
        grid-template-columns: minmax(0, 1.35fr) minmax(360px, 440px);
        gap: 2.1rem;
    }
}

@media (max-width: 1024px) {
    .storefront__layout[b-cy8llbjd8j] {
        grid-template-columns: 1fr;
    }

    .storefront__cart[b-cy8llbjd8j] {
        position: static;
    }
}

@media (max-width: 640px) {
    .storefront[b-cy8llbjd8j] {
        padding: 1rem 0.9rem 2rem;
    }
}
/* /Components/Store/StoreHeader.razor.rz.scp.css */
.store-header[b-ep0uck2lb4] {
    position: sticky;
    top: 0;
    z-index: 25;
    width: 100%;
    background: rgba(248, 253, 255, 0.92);
    border-bottom: 1px solid rgba(107, 154, 204, 0.14);
    box-shadow: 0 10px 24px rgba(72, 118, 168, 0.08);
    backdrop-filter: blur(14px);
}

.store-header__shell[b-ep0uck2lb4] {
    max-width: 1480px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 0.6rem 1.5rem;
    transition: padding 180ms ease, min-height 180ms ease;
}

.store-header__brand[b-ep0uck2lb4] {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    transform-origin: left center;
    transition: transform 180ms ease;
}

.store-header__nav[b-ep0uck2lb4] {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.65rem;
}

.store-header__link[b-ep0uck2lb4] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.62rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(107, 154, 204, 0.14);
    color: #315d87;
    font-size: 0.9rem;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, padding 180ms ease;
}

.store-header__link:hover[b-ep0uck2lb4] {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(72, 118, 168, 0.12);
    background: rgba(255, 255, 255, 0.88);
}

.store-header.is-condensed .store-header__shell[b-ep0uck2lb4] {
    padding-block: 0.35rem;
}

.store-header.is-condensed .store-header__brand[b-ep0uck2lb4] {
    transform: scale(0.92);
}

.store-header.is-condensed .store-header__link[b-ep0uck2lb4] {
    padding: 0.5rem 0.82rem;
}

@media (max-width: 920px) {
    .store-header[b-ep0uck2lb4] {
        position: relative;
    }

    .store-header__shell[b-ep0uck2lb4] {
        flex-direction: column;
        align-items: stretch;
        padding: 0.7rem 1rem;
    }

    .store-header__nav[b-ep0uck2lb4] {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .store-header__link[b-ep0uck2lb4] {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 560px) {
    .store-header__nav[b-ep0uck2lb4] {
        grid-template-columns: 1fr;
    }
}
