/* /Components/Home/CustomOrderCta.razor.rz.scp.css */
.custom-cta[b-x9wsu4ib1w] {
    background: radial-gradient(circle at 82% 50%, rgba(215, 25, 32, .28), transparent 28%), linear-gradient(110deg, #05070a 0%, #090d12 55%, #351216 100%);
    color: white;
}

.custom-cta-inner[b-x9wsu4ib1w] {
    max-width: 1500px;
    min-height: 320px;
    margin: 0 auto;
    padding: 60px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.custom-cta-copy[b-x9wsu4ib1w] {
    max-width: 850px;
}

.eyebrow[b-x9wsu4ib1w] {
    margin-bottom: 14px;
    color: #d71920;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
}

h2[b-x9wsu4ib1w] {
    margin: 0 0 18px;
    color: white;
    font-size: clamp(38px, 4vw, 62px);
    font-weight: 900;
    line-height: .95;
    letter-spacing: -2px;
}

    h2 span[b-x9wsu4ib1w] {
        color: #d71920;
    }

p[b-x9wsu4ib1w] {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
    line-height: 1.6;
}

.custom-cta-action[b-x9wsu4ib1w] {
    flex: 0 0 auto;
}

    .custom-cta-action[b-x9wsu4ib1w]  .mud-button-root {
        min-height: 54px;
        padding: 0 28px;
        font-weight: 900;
    }

@media (max-width: 900px) {
    .custom-cta-inner[b-x9wsu4ib1w] {
        min-height: auto;
        padding: 55px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .custom-cta-action[b-x9wsu4ib1w] {
        width: 100%;
    }

        .custom-cta-action[b-x9wsu4ib1w]  .mud-button-root {
            width: 100%;
        }
}
/* /Components/Home/FeaturedCollections.razor.rz.scp.css */
.featured-collections[b-dyxw680onc] {
    background: #ffffff;
    padding: 90px 32px 75px;
}

.collections-container[b-dyxw680onc] {
    max-width: 1500px;
    margin: 0 auto;
}

.section-heading[b-dyxw680onc] {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-kicker[b-dyxw680onc] {
    display: block;
    margin-bottom: 10px;
    color: #d71920;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-heading h2[b-dyxw680onc] {
    margin: 0 0 14px;
    color: #05070a;
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.section-heading p[b-dyxw680onc] {
    margin: 0;
    color: #555;
    font-size: 18px;
    line-height: 1.6;
}

.collection-grid[b-dyxw680onc] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.collection-card[b-dyxw680onc] {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border-radius: 4px;
    background: #05070a;
    text-decoration: none;
}

    .collection-card img[b-dyxw680onc] {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .35s ease;
    }

.collection-overlay[b-dyxw680onc] {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(5, 7, 10, .05) 20%, rgba(5, 7, 10, .35) 55%, rgba(5, 7, 10, .95) 100% );
}

.collection-content[b-dyxw680onc] {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 32px;
    color: white;
}

    .collection-content > span[b-dyxw680onc] {
        display: block;
        margin-bottom: 6px;
        color: #ed1c24;
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }

    .collection-content h3[b-dyxw680onc] {
        margin: 0 0 14px;
        color: white;
        font-size: 30px;
        font-weight: 900;
        line-height: 1;
        text-transform: uppercase;
    }

.collection-link[b-dyxw680onc] {
    color: white;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.collection-card:hover img[b-dyxw680onc] {
    transform: scale(1.04);
}

.collection-card:hover .collection-link[b-dyxw680onc] {
    color: #ed1c24;
}

.view-all[b-dyxw680onc] {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

    .view-all[b-dyxw680onc]  .mud-button-root {
        border-color: #05070a;
        color: #05070a;
        font-weight: 800;
    }

@media (max-width: 1000px) {
    .collection-grid[b-dyxw680onc] {
        grid-template-columns: 1fr 1fr;
    }

    .collection-card:last-child[b-dyxw680onc] {
        grid-column: 1 / -1;
    }
}

@media (max-width: 650px) {
    .featured-collections[b-dyxw680onc] {
        padding: 60px 18px 70px;
    }

    .section-heading[b-dyxw680onc] {
        margin-bottom: 34px;
    }

    .collection-grid[b-dyxw680onc] {
        grid-template-columns: 1fr;
    }

    .collection-card[b-dyxw680onc],
    .collection-card:last-child[b-dyxw680onc] {
        grid-column: auto;
        min-height: 420px;
    }

    .collection-content[b-dyxw680onc] {
        padding: 24px;
    }
}
/* /Components/Home/FeaturedProducts.razor.rz.scp.css */
.featured-products[b-mcry1dgrya] {
    background: #f4f4f4;
    padding: 90px 32px 100px;
}

.products-container[b-mcry1dgrya] {
    max-width: 1500px;
    margin: 0 auto;
}

.section-heading[b-mcry1dgrya] {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-kicker[b-mcry1dgrya] {
    display: block;
    margin-bottom: 10px;
    color: #d71920;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-heading h2[b-mcry1dgrya] {
    margin: 0 0 14px;
    color: #05070a;
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.section-heading p[b-mcry1dgrya] {
    margin: 0;
    color: #555;
    font-size: 18px;
    line-height: 1.6;
}

.product-grid[b-mcry1dgrya] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card[b-mcry1dgrya] {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: white;
    color: #05070a;
    text-decoration: none;
    border: 1px solid #e3e3e3;
    transition: transform .25s ease, box-shadow .25s ease;
}

.product-image[b-mcry1dgrya] {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #e9e9e9;
}

    .product-image img[b-mcry1dgrya] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .35s ease;
    }

.product-badge[b-mcry1dgrya] {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 7px 11px;
    background: #d71920;
    color: white;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-info[b-mcry1dgrya] {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.product-category[b-mcry1dgrya] {
    margin-bottom: 7px;
    color: #d71920;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.product-info h3[b-mcry1dgrya] {
    margin: 0 0 22px;
    color: #05070a;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

.product-link[b-mcry1dgrya] {
    margin-top: auto;
    color: #05070a;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.product-card:hover[b-mcry1dgrya] {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

    .product-card:hover .product-image img[b-mcry1dgrya] {
        transform: scale(1.04);
    }

    .product-card:hover .product-link[b-mcry1dgrya] {
        color: #d71920;
    }

.products-actions[b-mcry1dgrya] {
    display: flex;
    justify-content: center;
    margin-top: 44px;
}

    .products-actions[b-mcry1dgrya]  .mud-button-root {
        font-weight: 800;
    }

@media (max-width: 1100px) {
    .product-grid[b-mcry1dgrya] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .featured-products[b-mcry1dgrya] {
        padding: 60px 18px 70px;
    }

    .section-heading[b-mcry1dgrya] {
        margin-bottom: 34px;
    }

    .product-grid[b-mcry1dgrya] {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-image[b-mcry1dgrya] {
        aspect-ratio: 4 / 3;
    }
}
/* /Components/Home/HeroSection.razor.rz.scp.css */
.hero[b-k3kkpqd8za] {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: radial-gradient( circle at 70% 50%, rgba(215, 25, 32, .30), transparent 32% ), linear-gradient( 90deg, #05070a 0%, #091018 42%, #3b171b 72%, #6b2228 100% );
}

.hero-inner[b-k3kkpqd8za] {
    min-height: 650px;
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 50px 34px;
}

.hero-copy[b-k3kkpqd8za] {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.eyebrow[b-k3kkpqd8za] {
    color: #d71920;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

    .eyebrow[b-k3kkpqd8za]::before {
        content: "";
        width: 38px;
        height: 3px;
        background: #d71920;
        border-radius: 99px;
    }

h1[b-k3kkpqd8za] {
    margin: 0 0 20px;
    color: white;
    font-size: clamp(48px, 5.5vw, 86px);
    font-weight: 900;
    line-height: .92;
    letter-spacing: -3px;
    text-transform: uppercase;
    text-shadow: 0 5px 30px rgba(0, 0, 0, .5);
}

    h1 span[b-k3kkpqd8za] {
        color: #d71920;
    }

.hero-copy p[b-k3kkpqd8za] {
    max-width: 640px;
    margin: 0 0 32px;
    color: white;
    font-size: 20px;
    font-weight: 800;
}

.hero-buttons[b-k3kkpqd8za] {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-product[b-k3kkpqd8za] {
    height: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

    .hero-product img[b-k3kkpqd8za] {
        width: 100%;
        min-height: 0;
        flex: 1;
        object-fit: contain;
        object-position: center;
    }

    .hero-product[b-k3kkpqd8za]  .mud-button-root {
        flex: 0 0 auto;
        min-width: 220px;
    }

.hero-buttons[b-k3kkpqd8za]  .mud-button-outlined {
    color: white !important;
    border-color: rgba(255, 255, 255, .75) !important;
}

    .hero-buttons[b-k3kkpqd8za]  .mud-button-outlined:hover {
        border-color: white !important;
        background: rgba(255, 255, 255, .08) !important;
    }

@media (max-width: 1350px) {
    h1[b-k3kkpqd8za] {
        font-size: clamp(46px, 5vw, 68px);
    }
}

@media (max-width: 1180px) {
    .hero-inner[b-k3kkpqd8za] {
        grid-template-columns: 1fr .85fr;
    }

    .hero-product[b-k3kkpqd8za] {
        height: 500px;
    }
}

@media (max-width: 800px) {
    .hero-inner[b-k3kkpqd8za] {
        grid-template-columns: 1fr;
        padding: 45px 20px 60px;
    }

    .hero-copy[b-k3kkpqd8za] {
        max-width: none;
    }

    .hero-product[b-k3kkpqd8za] {
        height: 420px;
        order: -1;
    }

    h1[b-k3kkpqd8za] {
        font-size: clamp(40px, 8vw, 58px);
    }
}

@media (max-width: 620px) {
    .hero[b-k3kkpqd8za],
    .hero-inner[b-k3kkpqd8za] {
        min-height: 650px;
    }

    .hero-product[b-k3kkpqd8za] {
        height: 340px;
    }

    h1[b-k3kkpqd8za] {
        font-size: clamp(38px, 11vw, 48px);
        letter-spacing: -1px;
    }

    .hero-copy p[b-k3kkpqd8za] {
        font-size: 17px;
    }

    .hero-buttons[b-k3kkpqd8za] {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* /Components/Home/KokosCorner.razor.rz.scp.css */
.kokos-corner[b-640bhqkrav] {
    background: #ffffff;
    padding: 70px 32px;
}

.kokos-inner[b-640bhqkrav] {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.kokos-image[b-640bhqkrav] {
    height: 480px;
    overflow: hidden;
}

    .kokos-image img[b-640bhqkrav] {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

.kokos-copy[b-640bhqkrav] {
    max-width: 620px;
}

.eyebrow[b-640bhqkrav] {
    margin-bottom: 14px;
    color: #d71920;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

h2[b-640bhqkrav] {
    margin: 0 0 22px;
    color: #05070a;
    font-size: clamp(42px, 4vw, 64px);
    font-weight: 900;
    line-height: .95;
    letter-spacing: -2px;
}

    h2 span[b-640bhqkrav] {
        color: #d71920;
    }

p[b-640bhqkrav] {
    max-width: 600px;
    margin: 0 0 30px;
    color: #444;
    font-size: 18px;
    line-height: 1.65;
}

.kokos-copy[b-640bhqkrav]  .mud-button-root {
    min-height: 52px;
    padding: 0 26px;
    font-weight: 900;
}

@media (max-width: 900px) {
    .kokos-corner[b-640bhqkrav] {
        padding: 60px 20px;
    }

    .kokos-inner[b-640bhqkrav] {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .kokos-image[b-640bhqkrav] {
        height: 380px;
    }

    .kokos-copy[b-640bhqkrav] {
        max-width: none;
    }
}

@media (max-width: 600px) {
    .kokos-image[b-640bhqkrav] {
        height: 300px;
    }

    h2[b-640bhqkrav] {
        font-size: 42px;
    }
}
/* /Components/Layout/AnnouncementBar.razor.rz.scp.css */
.ccb-announcement[b-390f2wb9w8] {
    width: 100%;
    background: linear-gradient(90deg, #7f090d, #d71920, #7f090d);
    color: #ffffff;
    text-align: center;
    padding: 9px 16px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 900;
    line-height: 1.4;
    z-index: 2000;
}
/* /Components/Layout/AppFooter.razor.rz.scp.css */
.app-footer[b-zg2ze0xvvg] {
    background: #05070a;
    color: white;
    padding: 70px 32px 28px;
}

.footer-inner[b-zg2ze0xvvg] {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-brand[b-zg2ze0xvvg] {
    max-width: 420px;
}

    .footer-brand p[b-zg2ze0xvvg] {
        margin: 22px 0 0;
        color: #c8ced8;
        font-size: 15px;
        line-height: 1.7;
    }

.footer-column[b-zg2ze0xvvg] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer-column h3[b-zg2ze0xvvg] {
        margin: 0 0 8px;
        color: white;
        font-size: 14px;
        font-weight: 900;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .footer-column a[b-zg2ze0xvvg] {
        color: #c8ced8;
        font-size: 14px;
        text-decoration: none;
        transition: color .2s ease;
    }

        .footer-column a:hover[b-zg2ze0xvvg] {
            color: #d71920;
        }

.footer-bottom[b-zg2ze0xvvg] {
    max-width: 1500px;
    margin: 50px auto 0;
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .10);
    color: #8f98a5;
    font-size: 13px;
}

.footer-texas[b-zg2ze0xvvg] {
    color: #d71920;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 1000px) {
    .footer-inner[b-zg2ze0xvvg] {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }
}

@media (max-width: 650px) {
    .app-footer[b-zg2ze0xvvg] {
        padding: 55px 20px 24px;
    }

    .footer-inner[b-zg2ze0xvvg] {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-bottom[b-zg2ze0xvvg] {
        margin-top: 40px;
        flex-direction: column;
        align-items: flex-start;
    }
}
/* /Components/Layout/AppHeader.razor.rz.scp.css */
.ccb-header[b-pozseh9w3t] {
    position: sticky;
    top: 0;
    z-index: 1500;
    background: #05070a !important;
    color: white !important;
    min-height: 88px;
    display: flex;
    align-items: center;
    padding: 0 34px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.ccb-mobile-menu[b-pozseh9w3t] {
    display: none;
    margin-right: 12px;
}

.ccb-desktop-nav[b-pozseh9w3t] {
    display: flex;
    align-items: center;
}

.logout-form[b-pozseh9w3t] {
    display: flex;
    margin: 0;
}

@media (max-width: 1180px) {
    .ccb-mobile-menu[b-pozseh9w3t] {
        display: block;
    }

    .ccb-desktop-nav[b-pozseh9w3t] {
        display: none;
    }
}
/* /Components/Layout/Brand.razor.rz.scp.css */
/* CSS for Brand component */
.brand[b-4wv1izhy59] {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    color: white;
}

.logo[b-4wv1izhy59] {
    width: 56px;
    height: 56px;
    border: 3px solid #d71920;
    border-radius: 13px;
    display: grid;
    place-items: center;
    font-weight: 1000;
    font-size: 21px;
    letter-spacing: -1px;
    box-shadow: inset 0 0 3px rgba(255,255,255,.04);
    color: white;
}

.brand-name[b-4wv1izhy59] {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 20px;
    line-height: .95;
}

.brand-name span[b-4wv1izhy59] {
    color: #d71920;
}

.brand-small[b-4wv1izhy59] {
    margin-top: 3px;
    font-size: 13px;
    color: #bdbdbd;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.mobile-drawer-content[b-uq0jcgklcd] {
    padding-top: 145px;
}

.drawer-logout-form[b-uq0jcgklcd] {
    margin: 0;
    padding: 0 8px;
}

.ccb-main[b-uq0jcgklcd] {
    margin: 0;
    padding: 0;
    width: 100%;
}
/* /Components/Layout/NavigationMenu.razor.rz.scp.css */
.ccb-nav[b-5osv7x8r5t] {
    display: flex;
    gap: 34px;
    align-items: center;
}

.ccb-nav-link[b-5osv7x8r5t] {
    color: white !important;
    text-decoration: none !important;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .5px;
    padding: 34px 0 31px;
    border-bottom: 4px solid transparent;
    opacity: .92;
}

.ccb-nav-link:hover[b-5osv7x8r5t] {
    color: white !important;
    border-bottom-color: #d71920;
    opacity: 1;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-cy3no9t03p] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-cy3no9t03p] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-cy3no9t03p] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-cy3no9t03p] {
    font-size: 1.1rem;
}

.bi[b-cy3no9t03p] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-cy3no9t03p] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-cy3no9t03p] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-cy3no9t03p] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.bi-lock-nav-menu[b-cy3no9t03p] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zM5 8h6a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
}

.bi-person-nav-menu[b-cy3no9t03p] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4Zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10Z'/%3E%3C/svg%3E");
}

.bi-person-badge-nav-menu[b-cy3no9t03p] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-badge' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3zM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0z'/%3E%3Cpath d='M4.5 0A2.5 2.5 0 0 0 2 2.5V14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2.5A2.5 2.5 0 0 0 11.5 0h-7zM3 2.5A1.5 1.5 0 0 1 4.5 1h7A1.5 1.5 0 0 1 13 2.5v10.795a4.2 4.2 0 0 0-.776-.492C11.392 12.387 10.063 12 8 12s-3.392.387-4.224.803a4.2 4.2 0 0 0-.776.492V2.5z'/%3E%3C/svg%3E");
}

.bi-person-fill-nav-menu[b-cy3no9t03p] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-fill' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E");
}

.bi-arrow-bar-left-nav-menu[b-cy3no9t03p] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-arrow-bar-left' viewBox='0 0 16 16'%3E%3Cpath d='M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5ZM10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5Z'/%3E%3C/svg%3E");
}

.nav-item[b-cy3no9t03p] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-cy3no9t03p] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-cy3no9t03p] {
        padding-bottom: 1rem;
    }

    .nav-item[b-cy3no9t03p]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-cy3no9t03p]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-cy3no9t03p]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-cy3no9t03p] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-cy3no9t03p] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-cy3no9t03p] {
        display: none;
    }

    .nav-scrollable[b-cy3no9t03p] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-jzjubxs624],
.components-reconnect-repeated-attempt-visible[b-jzjubxs624],
.components-reconnect-failed-visible[b-jzjubxs624],
.components-pause-visible[b-jzjubxs624],
.components-resume-failed-visible[b-jzjubxs624],
.components-rejoining-animation[b-jzjubxs624] {
    display: none;
}

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


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

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

@keyframes components-rejoining-animation-b-jzjubxs624 {
    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/Admin/ProductEdit.razor.rz.scp.css */
.product-edit[b-z75e8xmv3f] {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 32px 90px;
}

.page-header[b-z75e8xmv3f] {
    margin-bottom: 32px;
}

.eyebrow[b-z75e8xmv3f] {
    display: block;
    margin-bottom: 8px;
    color: #d71920;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}

h1[b-z75e8xmv3f] {
    margin: 0 0 8px;
    color: #05070a;
    font-size: 44px;
    font-weight: 900;
    text-transform: uppercase;
}

.page-header p[b-z75e8xmv3f] {
    margin: 0;
    color: #666;
}

.product-form[b-z75e8xmv3f] {
    padding: 36px;
}

.form-grid[b-z75e8xmv3f] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.full-width[b-z75e8xmv3f] {
    grid-column: 1 / -1;
}

.field-label[b-z75e8xmv3f] {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.form-actions[b-z75e8xmv3f] {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid #ddd;
}

@media (max-width: 700px) {
    .product-edit[b-z75e8xmv3f] {
        padding: 40px 18px 70px;
    }

    .product-form[b-z75e8xmv3f] {
        padding: 24px 18px;
    }

    .form-grid[b-z75e8xmv3f] {
        grid-template-columns: 1fr;
    }

    .full-width[b-z75e8xmv3f] {
        grid-column: auto;
    }
}
.slug-field[b-z75e8xmv3f] {
    width: 100%;
}

.slug-helper[b-z75e8xmv3f] {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 4px 8px 0;
    color: #777;
    font-size: 12px;
}

.slug-info[b-z75e8xmv3f] {
    color: #777;
    cursor: help;
}

.slug-field[b-z75e8xmv3f]  .mud-input-control {
    opacity: 0.65;
}

.slug-field[b-z75e8xmv3f]  .mud-input-outlined {
    background-color: #f3f3f3;
    cursor: default;
}

.slug-field[b-z75e8xmv3f]  input {
    cursor: default;
}
/* /Components/Pages/Admin/ProductPresetEdit.razor.rz.scp.css */
.color-grid[b-elagyyxroh] {
    display: grid;
    grid-template-columns: repeat(5, minmax(100px, 1fr));
    gap: .75rem;
}

.color-grid label[b-elagyyxroh] {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    font-size: .8rem;
    font-weight: 700;
}

.color-grid input[b-elagyyxroh] {
    width: 100%;
    height: 42px;
    cursor: pointer;
}

@media (max-width: 700px) {
    .color-grid[b-elagyyxroh] { grid-template-columns: repeat(2, 1fr); }
}
/* /Components/Pages/Admin/Products.razor.rz.scp.css */
.admin-products[b-jr6fmzfha7] {
    max-width: 1500px;
    margin: 0 auto;
    padding: 60px 32px;
}

.admin-header[b-jr6fmzfha7] {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 36px;
}

.eyebrow[b-jr6fmzfha7] {
    display: block;
    margin-bottom: 8px;
    color: #d71920;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}

h1[b-jr6fmzfha7] {
    margin: 0 0 8px;
    color: #05070a;
    font-size: 44px;
    font-weight: 900;
    text-transform: uppercase;
}

p[b-jr6fmzfha7] {
    margin: 0;
    color: #666;
    font-size: 16px;
}

@media (max-width: 700px) {
    .admin-products[b-jr6fmzfha7] {
        padding: 40px 18px;
    }

    .admin-header[b-jr6fmzfha7] {
        flex-direction: column;
        align-items: stretch;
    }
}
/* /Components/Pages/Admin/Users.razor.rz.scp.css */
.admin-users[b-cebjc2kvfz] {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 1.5rem 5rem;
}

.admin-header[b-cebjc2kvfz] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.admin-header h1[b-cebjc2kvfz] {
    margin: 0.2rem 0;
}

.admin-header p[b-cebjc2kvfz] {
    margin: 0;
    color: #5f6368;
}

.eyebrow[b-cebjc2kvfz] {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

@media (max-width: 600px) {
    .admin-header[b-cebjc2kvfz] {
        align-items: flex-start;
        flex-direction: column;
    }
}
/* /Components/Pages/Cart.razor.rz.scp.css */
.cart-image[b-o736sfaew8] {
    width: 100%;
    max-height: 100px;
    object-fit: cover;
    border-radius: 8px;
}
/* /Components/Pages/CollectionDetail.razor.rz.scp.css */
.collection-page[b-1kkfryrb70] {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1.5rem 6rem;
}

.collection-heading[b-1kkfryrb70] {
    max-width: 720px;
    margin-bottom: 2.5rem;
}

.collection-heading span[b-1kkfryrb70] {
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .16em;
}

.collection-heading h1[b-1kkfryrb70] {
    margin: .4rem 0;
    font-size: clamp(2.4rem, 6vw, 4.5rem);
}

.collection-heading p[b-1kkfryrb70] { color: #655f58; font-size: 1.1rem; }

.product-grid[b-1kkfryrb70] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (max-width: 900px) {
    .product-grid[b-1kkfryrb70] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
    .product-grid[b-1kkfryrb70] { grid-template-columns: 1fr; }
}
/* /Components/Pages/ProductDetail.razor.rz.scp.css */
.product-page[b-he9da5hq5v] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem 6rem;
}

.product-layout[b-he9da5hq5v] {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
    gap: 4rem;
}

.primary-image[b-he9da5hq5v] {
    display: grid;
    place-items: center;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    color: #777;
    background: #eee9e1;
    border-radius: 18px;
}

.primary-image img[b-he9da5hq5v] {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.image-caption[b-he9da5hq5v] {
    min-height: 1.5rem;
    margin: .65rem 0 0;
    color: #5f5a54;
    font-size: .85rem;
    line-height: 1.45;
}

.thumbnails[b-he9da5hq5v] {
    display: flex;
    gap: .75rem;
    margin-top: 1rem;
    overflow-x: auto;
}

.thumbnail[b-he9da5hq5v] {
    width: 88px;
    height: 72px;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    background: #eee9e1;
    border: 2px solid transparent;
    border-radius: 10px;
}

.thumbnail:hover[b-he9da5hq5v] { border-color: #222; }
.thumbnail img[b-he9da5hq5v] { width: 100%; height: 100%; object-fit: cover; }

.product-copy[b-he9da5hq5v] { padding-top: 1rem; }
.category[b-he9da5hq5v] { font-size: .75rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.product-copy h1[b-he9da5hq5v] { margin: .5rem 0; font-size: clamp(2.3rem, 5vw, 4rem); line-height: 1; }
.price[b-he9da5hq5v] { margin: 1rem 0; font-size: 1.6rem; font-weight: 800; }
.description[b-he9da5hq5v] { margin-bottom: 2rem; color: #5f5a54; font-size: 1.05rem; line-height: 1.75; white-space: pre-line; }

.color-grid[b-he9da5hq5v] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
}

.color-grid label[b-he9da5hq5v] {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    font-size: .8rem;
    font-weight: 700;
}

.color-grid input[b-he9da5hq5v] { width: 100%; height: 42px; cursor: pointer; }

@media (max-width: 850px) {
    .product-layout[b-he9da5hq5v] { grid-template-columns: 1fr; gap: 2rem; }
}
/* /Components/Pages/Shop.razor.rz.scp.css */
.store-page[b-cdnlmlirut] {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1.5rem 6rem;
}

.store-heading[b-cdnlmlirut] {
    max-width: 700px;
    margin-bottom: 2.5rem;
}

.store-heading span[b-cdnlmlirut] {
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .16em;
}

.store-heading h1[b-cdnlmlirut] {
    margin: .4rem 0;
    font-size: clamp(2.4rem, 6vw, 4.5rem);
}

.store-heading p[b-cdnlmlirut] {
    color: #655f58;
    font-size: 1.1rem;
}

.product-grid[b-cdnlmlirut] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (max-width: 900px) {
    .product-grid[b-cdnlmlirut] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
    .product-grid[b-cdnlmlirut] { grid-template-columns: 1fr; }
}
/* /Components/Store/ProductCard.razor.rz.scp.css */
.store-product-card[b-skk3gavs1g] {
    display: block;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    background: #fff;
    border: 1px solid #e7e2da;
    border-radius: 16px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.store-product-card:hover[b-skk3gavs1g] {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(21, 24, 28, .12);
}

.store-product-image[b-skk3gavs1g] {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #eee9e1;
}

.store-product-image img[b-skk3gavs1g] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-placeholder[b-skk3gavs1g] {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    color: #777;
}

.product-badge[b-skk3gavs1g] {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: .35rem .7rem;
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: #b3261e;
    border-radius: 999px;
}

.store-product-info[b-skk3gavs1g] {
    padding: 1.1rem 1.2rem 1.3rem;
}

.product-category[b-skk3gavs1g] {
    color: #6b6259;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

h3[b-skk3gavs1g] {
    margin: .3rem 0 .5rem;
    font-size: 1.2rem;
}

.product-price[b-skk3gavs1g] {
    font-weight: 700;
}
