/* /Components/Layout/CookieConsent.razor.rz.scp.css */
.cookie-consent[b-ibff15c866] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d2d2d;
    border-top: 2px solid #ff6b35;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.3);
}

.cookie-content[b-ibff15c866] {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p[b-ibff15c866] {
    color: #e0e0e0;
    margin: 0;
    flex: 1;
}

.cookie-actions[b-ibff15c866] {
    display: flex;
    gap: 1rem;
}

.btn-accept[b-ibff15c866],
.btn-decline[b-ibff15c866] {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-accept[b-ibff15c866] {
    background-color: #ff6b35;
    color: white;
}

.btn-accept:hover[b-ibff15c866] {
    background-color: #ff8555;
}

.btn-decline[b-ibff15c866] {
    background-color: #3d3d3d;
    color: #e0e0e0;
}

.btn-decline:hover[b-ibff15c866] {
    background-color: #4d4d4d;
}

@media (max-width: 768px) {
    .cookie-content[b-ibff15c866] {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions[b-ibff15c866] {
        width: 100%;
        justify-content: center;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-ehgfpmtax0] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #1a1a1a;
}

main[b-ehgfpmtax0] {
    flex: 1;
}

header[b-ehgfpmtax0] {
    background-color: #2d2d2d;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

footer[b-ehgfpmtax0] {
    background-color: #2d2d2d;
    color: #b0b0b0;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #3d3d3d;
    margin-top: 3rem;
}

footer .container p[b-ehgfpmtax0] {
    margin: 0;
}

.content[b-ehgfpmtax0] {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
    .content[b-ehgfpmtax0] {
        padding: 2rem 2rem;
    }
}

#blazor-error-ui[b-ehgfpmtax0] {
    color-scheme: light only;
    background: #ff6b6b;
    color: white;
    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-ehgfpmtax0] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar[b-h0n098cetw] {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    background-color: #2d2d2d;
}

.navbar .container[b-h0n098cetw] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 1rem;
}

.navbar-brand[b-h0n098cetw] {
    display: flex;
    align-items: center;
    height: 3rem;
}

.navbar-brand img[b-h0n098cetw] {
    display: block;
    width: 15rem;
    height: auto;
    max-height: 3rem;
}

.navbar-brand:hover img[b-h0n098cetw] {
    filter: brightness(1.12);
}

.header-phone[b-h0n098cetw] {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-left: auto;
    color: #e0e0e0;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.header-phone:hover[b-h0n098cetw] {
    color: #ff6b35;
}

.navbar-toggler[b-h0n098cetw] {
    display: none;
    background: none;
    border: 1px solid #ff6b35;
    color: #ff6b35;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 4px;
}

.navbar-toggler-icon[b-h0n098cetw] {
    display: inline-block;
}

.navbar-toggler-icon[b-h0n098cetw]::before {
    content: "?";
    font-size: 1.5rem;
}

.navbar-collapse[b-h0n098cetw] {
    display: flex;
}

.navbar-collapse.collapse[b-h0n098cetw] {
    display: none;
}

.navbar-nav[b-h0n098cetw] {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-item[b-h0n098cetw] {
    margin: 0;
}

.nav-link[b-h0n098cetw] {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link:hover[b-h0n098cetw] {
    background-color: #3d3d3d;
    color: #ff6b35;
}

.nav-link.active[b-h0n098cetw] {
    background-color: #ff6b35;
    color: white;
}

@media (max-width: 768px) {
    .navbar-brand img[b-h0n098cetw] {
        width: 9.75rem;
    }

    .header-phone[b-h0n098cetw] {
        gap: 0.25rem;
        font-size: 0.75rem;
    }

    .navbar-toggler[b-h0n098cetw] {
        display: block;
    }

    .navbar-collapse[b-h0n098cetw] {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #2d2d2d;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }

    .navbar-collapse.collapse[b-h0n098cetw] {
        display: none;
    }

    .navbar-nav[b-h0n098cetw] {
        flex-direction: column;
        gap: 0;
    }

    .nav-link[b-h0n098cetw] {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid #3d3d3d;
    }
}


        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;[b-h0n098cetw]
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-c6zgcaacx2],
.components-reconnect-repeated-attempt-visible[b-c6zgcaacx2],
.components-reconnect-failed-visible[b-c6zgcaacx2],
.components-pause-visible[b-c6zgcaacx2],
.components-resume-failed-visible[b-c6zgcaacx2],
.components-rejoining-animation[b-c6zgcaacx2] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-c6zgcaacx2],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-c6zgcaacx2],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-c6zgcaacx2],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-c6zgcaacx2],
#components-reconnect-modal.components-reconnect-retrying[b-c6zgcaacx2],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-c6zgcaacx2],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-c6zgcaacx2],
#components-reconnect-modal.components-reconnect-failed[b-c6zgcaacx2],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-c6zgcaacx2] {
    display: block;
}


#components-reconnect-modal[b-c6zgcaacx2] {
    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-c6zgcaacx2 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-c6zgcaacx2 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-c6zgcaacx2 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-c6zgcaacx2]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-c6zgcaacx2 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-c6zgcaacx2 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-c6zgcaacx2 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-c6zgcaacx2 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-c6zgcaacx2] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-c6zgcaacx2] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-c6zgcaacx2] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-c6zgcaacx2] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-c6zgcaacx2] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-c6zgcaacx2] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-c6zgcaacx2] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-c6zgcaacx2 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-c6zgcaacx2] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-c6zgcaacx2 {
    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/Contact.razor.rz.scp.css */
.contact-page[b-ccbfrmbdsa] {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-hero[b-ccbfrmbdsa] {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 8px;
    margin-bottom: 3rem;
    border: 1px solid #3d3d3d;
}

.contact-hero h1[b-ccbfrmbdsa] {
    color: #ff6b35;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-hero .lead[b-ccbfrmbdsa] {
    color: #b0b0b0;
    font-size: 1.2rem;
}

.contact-content[b-ccbfrmbdsa] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-info[b-ccbfrmbdsa],
.contact-form-section[b-ccbfrmbdsa] {
    background-color: #2d2d2d;
    border: 1px solid #3d3d3d;
    border-radius: 8px;
    padding: 2rem;
}

.contact-info h2[b-ccbfrmbdsa],
.contact-form-section h2[b-ccbfrmbdsa] {
    color: #ff6b35;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-details[b-ccbfrmbdsa] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item[b-ccbfrmbdsa] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item strong[b-ccbfrmbdsa] {
    color: #ff6b35;
    font-size: 1rem;
}

.contact-item a[b-ccbfrmbdsa] {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover[b-ccbfrmbdsa] {
    color: #ff6b35;
}

.contact-item span[b-ccbfrmbdsa] {
    color: #e0e0e0;
}

.contact-form[b-ccbfrmbdsa] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group[b-ccbfrmbdsa] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label[b-ccbfrmbdsa] {
    color: #ff6b35;
    font-weight: bold;
}

.form-control[b-ccbfrmbdsa] {
    background-color: #1a1a1a;
    border: 1px solid #3d3d3d;
    color: #e0e0e0;
    padding: 0.75rem;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus[b-ccbfrmbdsa] {
    outline: none;
    border-color: #ff6b35;
}

.form-control[b-ccbfrmbdsa]::placeholder {
    color: #666;
}

textarea.form-control[b-ccbfrmbdsa] {
    resize: vertical;
    font-family: inherit;
}

.btn-submit[b-ccbfrmbdsa] {
    background-color: #ff6b35;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover[b-ccbfrmbdsa] {
    background-color: #ff8555;
}

.success-message[b-ccbfrmbdsa] {
    background-color: #2d4d2d;
    border: 1px solid #4caf50;
    color: #4caf50;
    padding: 1.5rem;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
}

@media (max-width: 768px) {
    .contact-hero h1[b-ccbfrmbdsa] {
        font-size: 1.8rem;
    }

    .contact-content[b-ccbfrmbdsa] {
        grid-template-columns: 1fr;
    }

    .contact-info[b-ccbfrmbdsa],
    .contact-form-section[b-ccbfrmbdsa] {
        padding: 1.5rem;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
.home-hero[b-wlrs1h1c4x] {
    text-align: center;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 8px;
    margin-bottom: 3rem;
    border: 1px solid #3d3d3d;
}

.home-hero h1[b-wlrs1h1c4x] {
    color: #ff6b35;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.home-hero .lead[b-wlrs1h1c4x] {
    color: #b0b0b0;
    font-size: 1.2rem;
}

.products-section[b-wlrs1h1c4x] {
    margin-bottom: 3rem;
}

.products-section h2[b-wlrs1h1c4x] {
    color: #ff6b35;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.loading[b-wlrs1h1c4x], .no-products[b-wlrs1h1c4x] {
    text-align: center;
    color: #b0b0b0;
    font-size: 1.2rem;
    padding: 2rem;
}

.products-grid[b-wlrs1h1c4x] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card[b-wlrs1h1c4x] {
    background-color: #2d2d2d;
    border: 1px solid #3d3d3d;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover[b-wlrs1h1c4x] {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
}

.product-image[b-wlrs1h1c4x] {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #3d3d3d 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img[b-wlrs1h1c4x] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info[b-wlrs1h1c4x] {
    padding: 1.5rem;
}

.product-info h3[b-wlrs1h1c4x] {
    color: #e0e0e0;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.product-description[b-wlrs1h1c4x] {
    color: #b0b0b0;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-details[b-wlrs1h1c4x] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem 0;
    border-top: 1px solid #3d3d3d;
    border-bottom: 1px solid #3d3d3d;
}

.product-weight[b-wlrs1h1c4x] {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.product-price[b-wlrs1h1c4x] {
    color: #ff6b35;
    font-size: 1.3rem;
    font-weight: bold;
}

.in-stock[b-wlrs1h1c4x] {
    color: #4caf50;
    font-size: 0.9rem;
    font-weight: bold;
}

.out-of-stock[b-wlrs1h1c4x] {
    color: #f44336;
    font-size: 0.9rem;
    font-weight: bold;
}

.info-section[b-wlrs1h1c4x] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card[b-wlrs1h1c4x] {
    background-color: #2d2d2d;
    border: 1px solid #3d3d3d;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.info-card h3[b-wlrs1h1c4x] {
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.info-card p[b-wlrs1h1c4x] {
    color: #b0b0b0;
    line-height: 1.6;
}

.links-section[b-wlrs1h1c4x] {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.links-section h2[b-wlrs1h1c4x] {
    color: #ff6b35;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.links-grid[b-wlrs1h1c4x] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.link-card[b-wlrs1h1c4x] {
    background-color: #2d2d2d;
    border: 1px solid #3d3d3d;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: block;
}

.link-card:hover[b-wlrs1h1c4x] {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
}

.link-card h3[b-wlrs1h1c4x] {
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.link-card p[b-wlrs1h1c4x] {
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .home-hero h1[b-wlrs1h1c4x] {
        font-size: 1.8rem;
    }

    .products-grid[b-wlrs1h1c4x] {
        grid-template-columns: 1fr;
    }

    .links-grid[b-wlrs1h1c4x] {
        grid-template-columns: 1fr;
    }
}
