@import '_content/Blazored.Modal/Blazored.Modal.bundle.scp.css';

/* _content/WAHShopForntend/Components/Layout/AddDecresaseCard.razor.rz.scp.css */
.productsCart[b-artto1w5n8] {
    display: flex;
    gap: 8px;
    align-items: center;
}

    .productsCart input[b-artto1w5n8] {
        width: 60px;
        text-align: center;
    }
/* button */
.btnProduct[b-artto1w5n8],
.btnProductDecrease[b-artto1w5n8],
.btnProductAdded[b-artto1w5n8] {
    height: 35px;
    padding: 0 10px;
    border-radius: 6px;
    border: none;
    color: white;
    font-size: 14px;
    cursor: pointer;
}

.btnProduct[b-artto1w5n8] {
    background-color: var(--btnBackgroundColor);
}

    .btnProduct:hover[b-artto1w5n8] {
        background-color: var(--btnBackgroundColorHover);
    }

.btnProductAdded[b-artto1w5n8] {
    background-color: var(--btnBackgroundColorProductAdded);
}

    .btnProductAdded:hover[b-artto1w5n8] {
        background-color: var(--btnBackgroundColorProductAddedHover);
    }

.btnProductDecrease[b-artto1w5n8] {
    background-color: #ff6b6b;
}

    .btnProductDecrease:hover[b-artto1w5n8] {
        background-color: #e63946;
    }
/* لإخفاء الأسهم في Chrome, Safari, Edge */
input[type=number][b-artto1w5n8]::-webkit-inner-spin-button,
input[type=number][b-artto1w5n8]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* لإخفاء الأسهم في Firefox */
input[type=number][b-artto1w5n8] {
    -moz-appearance: textfield;
}
/* _content/WAHShopForntend/Components/Layout/CarouselLayout.razor.rz.scp.css */
.carousel[b-v7e0rp75a1] {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden; 
}

.carousel-img[b-v7e0rp75a1] {
    width: auto ;
    max-width: 100%;
    height: auto;
    max-height: 100vh; 
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.carousel-item[b-v7e0rp75a1] {
    background-color: #000;
    text-align: center;
}

.fullscreenBtn[b-v7e0rp75a1] {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1060;
    border-radius: 50%;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 20px;
    color: white;
    background-color: rgba(0, 148, 255, 0.3);
    transition: all 0.3s ease-in-out;
}
    .fullscreenBtn:hover[b-v7e0rp75a1] {
        background-color: #0094ff;
        transform: scale(1.1);
    }

/* Indicators */
.carousel-indicators [data-bs-target][b-v7e0rp75a1] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #808080;
}

.carousel-indicators .active[b-v7e0rp75a1] {
    background-color: #0094ff;
}

.carousel-control-prev[b-v7e0rp75a1] {
    left: 0;
    width: 5%; 
    justify-content: flex-start; 
    padding-left: 30px; 
}

.carousel-control-next[b-v7e0rp75a1] {
    right: 0;
    width: 5%;
    justify-content: flex-end; 
    padding-right: 30px; 
}

.carousel-control-prev-icon[b-v7e0rp75a1],
.carousel-control-next-icon[b-v7e0rp75a1] {
    background-color: rgba(0, 148, 255, 0.3);
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
    background-size: 60%;
    width: 45px;
    height: 45px;
}
    .carousel-control-prev-icon:hover[b-v7e0rp75a1],
    .carousel-control-next-icon:hover[b-v7e0rp75a1] {
        background-color: #0094ff;
        transform: scale(1.1);
    }

@media (max-width: 768px) {
    .carousel-img[b-v7e0rp75a1] {
        transform: scaleX(1);
    }
    .fullscreenBtn[b-v7e0rp75a1] {
        top: 1px;
        right: 10px;
        width: 38px; 
        height: 38px;
        font-size: 16px;
    }
    .carousel-control-prev[b-v7e0rp75a1],
    .carousel-control-next[b-v7e0rp75a1] {
        width: 15%; 
        opacity: 0.9;
        z-index: 1050; 
    }

    .carousel-control-prev[b-v7e0rp75a1] {
        justify-content: flex-start;
        padding-left: 10px; 
    }

    .carousel-control-next[b-v7e0rp75a1] {
        justify-content: flex-end;
        padding-right: 10px;
    }

    .carousel-control-prev-icon[b-v7e0rp75a1],
    .carousel-control-next-icon[b-v7e0rp75a1] {
        border-radius: 50%;
        width: 35px; 
        height: 35px;
        background-size: 50%;
    }
}
/* _content/WAHShopForntend/Components/Layout/CategoryNav.razor.rz.scp.css */
.categoryNav[b-m0it68jiko] {
    position: fixed;
    top: 6rem; /* header height */
    z-index: 9980; /* weinger als Header um immer unter Header zu bleiben */
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 4px 0px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ddd;
    flex-wrap: wrap;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */

    transition: transform 0.3s ease-in-out;
}
    .categoryNav.stick-to-top[b-m0it68jiko] {
        transform: translateY(-6rem);
    }

    .categoryNav[b-m0it68jiko]::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

.categoryLink[b-m0it68jiko] {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background 0.2s ease;
    white-space: nowrap; /*Brich die Wörter nicht*/
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
    /* Hover style */
    .categoryLink:hover[b-m0it68jiko] {
        background-color: #e0e0e0;
    }
    .categoryLink.selected[b-m0it68jiko] {
        background-color: #d6d6d6; 
        color: #333333; 
        border-radius: 4px;
    }
.categoryLinkOnOffer[b-m0it68jiko] {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.25s ease;
    white-space: nowrap;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff3b3b, #b80000); 
    box-shadow: 0 2px 6px rgba(184, 0, 0, 0.3); 
}
    .categoryLinkOnOffer:hover[b-m0it68jiko] {
        background: linear-gradient(135deg, #ff4f4f, #e60000);
        transform: scale(1.05);
        box-shadow: 0 4px 10px rgba(184, 0, 0, 0.4);
    }
    .categoryLinkOnOffer.selected[b-m0it68jiko] {
        background: linear-gradient(135deg, #ff7a00, #ff3b3b); 
        color: #ffffff;
        box-shadow: 0 0 10px rgba(255, 59, 59, 0.5);
    }
.dropdownButton[b-m0it68jiko] {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    background-color: #f7f7f7;
    color:black;
}

.dropdown[b-m0it68jiko] {
    position: relative;
    display: inline-block;
}
    .dropdownButton:hover[b-m0it68jiko] {
        background-color: #e0e0e0;
    }
    .dropdownMenu[b-m0it68jiko] {
        display: none;
        position: fixed;
        background: white;
        border: 1px solid #f7f7f7;
        z-index: 100;
        gap: 10px; 
        padding:10px;
        text-align:center;
    }

.dropdown:hover .dropdownMenu[b-m0it68jiko] {
    display: flex;
}

.column[b-m0it68jiko] {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .column li[b-m0it68jiko] {
        padding: 8px 10px;
        cursor: pointer;
        white-space: nowrap;
    }

        .column li:hover[b-m0it68jiko] {
            background: #f1f1f1;
        }

@media (max-width: 750px) {
    .categoryNav[b-m0it68jiko] {
        gap: 0.4rem;
        padding: 5px 0px;
        top: 4.5rem;
    }

        .categoryNav.stick-to-top[b-m0it68jiko] {
            transform: translateY(-4.5rem);
        }

    .categoryNav a[b-m0it68jiko], .dropdown button[b-m0it68jiko] {
            font-size: 0.9rem;
            padding: 4px 8px;
        }
    .dropdown[b-m0it68jiko] {
        white-space: nowrap;
        flex-shrink: 0;
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .dropdownMenu[b-m0it68jiko] {
        display: none;
        position: fixed;
        top: 11.5rem;
        left: 0;
        right: 0;
        margin: auto;
        width: min(90%, 300px);
        max-height: 200px;
        overflow-y: auto;
        background: white;
        border-radius: 10px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        z-index: 10000;
        flex-direction: column;
        touch-action: pan-y; 
        -webkit-overflow-scrolling: touch;
    }
    .dropdown.active .dropdownMenu[b-m0it68jiko] {
        display: flex !important;
    }

    .backdrop[b-m0it68jiko] {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: transparent; 
        z-index: 9999;
    }
}

/* _content/WAHShopForntend/Components/Layout/Footer.razor.rz.scp.css */
.footer[b-86u363gz2c] {
    background-color: var(--hederBackgroundColoe);
    color: white;
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
    margin-top: auto;
}

    .footer > div[b-86u363gz2c] {
        flex: 1;
    }

html[dir="rtl"] .footer[b-86u363gz2c] {
    direction: ltr;
    text-align: left;
}

.logoDiv[b-86u363gz2c] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    text-align: left;
    padding: 10px;
}
/* alle Header und arabsiche texts in Arabisch mode zu rechtseite scheben */
html[dir="rtl"] .footer div h3[b-86u363gz2c],
html[dir="rtl"] .footer .linksDiv a[b-86u363gz2c]{
    align-self: flex-end;
    text-align: right;
}
/* icons in arbaische mode in rechte seite bleiben */
html[dir="rtl"] .footer .icons[b-86u363gz2c] {
    margin-left: auto; 
}

.contactDiv[b-86u363gz2c] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    text-align: left;
    padding: 10px;
}

    .contactDiv h3[b-86u363gz2c] {
        font-weight: bold;
    }


.contactDiv p[b-86u363gz2c] {
    display: flex;
    flex-direction: row;
    gap: 10px;
    font-size: 20px;
    color: #ffffff;
    cursor: pointer;
}

        .contactDiv p span[b-86u363gz2c] {
            color: #ffffff;
            cursor: pointer;
        }

            .contactDiv p span:hover[b-86u363gz2c] {
                color: #808080;
            }
.socialMedia[b-86u363gz2c]{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    padding:10px;
    gap:10px;
}
    .socialMedia h3[b-86u363gz2c]{
        font-weight:bold;
    }
    .icons[b-86u363gz2c] {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .icons a i[b-86u363gz2c]{
        font-size:30px;
    }
.linksDiv[b-86u363gz2c] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 10px;
    gap: 10px;
}

    .linksDiv h3[b-86u363gz2c] {
        font-weight: bold;
    }

    .linksDiv a[b-86u363gz2c] {
        display: flex;
        flex-direction: row;
        gap: 10px;
        font-size: 20px;
        color: #ffffff;
        text-decoration: none;
    }

        .linksDiv a:hover[b-86u363gz2c] {
            color: #808080;
        }

.mapDiv[b-86u363gz2c] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 10px;
    gap: 10px;
    width: 100%;
}

    .mapDiv h3[b-86u363gz2c] {
        font-weight: bold;
    }

    .mapDiv a[b-86u363gz2c] {
        width: 100%;
    }

.iframe[b-86u363gz2c] {
    width: 100%;
    height: clamp(150px, 40vw, 220px);
}

@media (max-width: 768px) {
    .footer[b-86u363gz2c] {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

        .footer > div[b-86u363gz2c] {
            width: 100%;
            padding: 5px;
        }

    .icons[b-86u363gz2c] {
        flex-direction: row;
        gap: 15px;
    }
    h3[b-86u363gz2c]{
        font-size:22px;
    }
    .contactDiv p[b-86u363gz2c] {
        font-size: 18px;
    }
    .linksDiv a[b-86u363gz2c] {
        font-size: 18px;
    }

}

/* _content/WAHShopForntend/Components/Layout/FullscreenCarousel.razor.rz.scp.css */
.modalOverlay[b-lwuirntzsc] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85); 
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fullscreenCarousel[b-lwuirntzsc] {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.carouselInner[b-lwuirntzsc] {
    width: 100%;
    height: 100vh; 
    display: flex;
    align-items: center;
}
.carouselImg[b-lwuirntzsc] {
    width: 100%;
    height: 100vh;
    object-fit: contain;
    z-index: 10000;
}
#offersCarouselFullscreen:fullscreen[b-lwuirntzsc] {
    background: radial-gradient(circle, #444 0%, #000 100%);
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*  Browser wie Safari */
#offersCarouselFullscreen:-webkit-full-screen[b-lwuirntzsc] {
    background: radial-gradient(circle, #444 0%, #000 100%);
}

/* Indicators */
.carousel-indicators[b-lwuirntzsc] {
    position: absolute;
    z-index: 10100;
}

.carousel-indicators button[b-lwuirntzsc] {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #ccc;
    }

.carousel-indicators .active[b-lwuirntzsc] {
        background-color: #fff;
    }
.carousel-control-prev[b-lwuirntzsc],
.carousel-control-next[b-lwuirntzsc] {
    width: 10% !important;
    z-index: 10100;
}

.carousel-control-prev[b-lwuirntzsc] {
    justify-content: flex-start;
    padding-left: 30px;
}

.carousel-control-next[b-lwuirntzsc] {
    justify-content: flex-end;
    padding-right: 30px;
}
.fullscreenBtn[b-lwuirntzsc] {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10010;
}

.closeFullscreenBtn[b-lwuirntzsc] {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10110;
}
/* _content/WAHShopForntend/Components/Layout/Header.razor.rz.scp.css */
.header[b-x61xa13amk] {
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--hederBackgroundColoe);
    color: white;
    height: 6rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

    .header.hidden[b-x61xa13amk] {
        transform: translateY(-100%); /* سحب الهيدر خارج الشاشة للأعلى */
    }

/* vermeiden die Header bewegen von rechts nach links*/
html[dir="rtl"] .header[b-x61xa13amk] {
    direction: ltr;
    text-align: left;
}

    .header .containerLeft[b-x61xa13amk],
    .header .containerCenter[b-x61xa13amk],
    .header .containerRight[b-x61xa13amk] {
        flex: 1;
        display: flex;
        align-items: center;
    }

    .header .containerLeft[b-x61xa13amk] {
        padding-left: 2rem;
        justify-content: flex-start;
    }

.header .containerCenter[b-x61xa13amk] {
    justify-content: center; 
    text-align: center;
    height: 100%;
}

    .header .containerRight[b-x61xa13amk] {
        justify-content: flex-end;
        padding-right: 2rem;
        gap: 1rem;
    }


/* search */
html[dir="rtl"] .searchBox[b-x61xa13amk] {
    direction: rtl;
    text-align: right;
}
.searchBox[b-x61xa13amk] {
    position: relative;
    width: 100%;
    max-width: 400px;
    height:100px;
    align-content:center;
}

.searchDropdown[b-x61xa13amk] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    border-top: none;
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    padding: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    color: var(--hederBackgroundColoe);
}

    .searchDropdown li[b-x61xa13amk] {
        display:flex;
        align-items:center;
        color: var(--hederBackgroundColoe);
        padding: 0.3rem 0;
        cursor: pointer;
    }

        .searchDropdown li:hover[b-x61xa13amk] {
            color:white;
            background-color: var(--hederBackgroundColoe);
        }
        .searchDropdown li > *[b-x61xa13amk] {
            margin-left: 0.5rem; 
        }
        .searchDropdown li img[b-x61xa13amk] {
            width: 50px;
            height: 50px;
        }
/**/
.btn[b-x61xa13amk] {
    background-color: var(--hederBackgroundColoe);
    border: none;
}
.dropdown[b-x61xa13amk] {
    
}
.dropdownMenu[b-x61xa13amk] {
    background-color: var(--hederBackgroundColoe);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: white;
}
.dropdownItem[b-x61xa13amk]{
    color:white;
    cursor:pointer;
}
    .dropdownItem:hover[b-x61xa13amk] {
        background-color: var(--dropdownBackgroundHover);
    }

@media (max-width: 768px) {
    .header[b-x61xa13amk] {
        height: 4.5rem;
    }
    .header .containerLeft[b-x61xa13amk] {
        display: none;
    }

    .header .containerCenter[b-x61xa13amk] {
        flex: 1; /* Es dehnt sich entsprechend dem verfügbaren Platz aus. */
        justify-content: center;
        padding: 0 1rem;
    }

    .header .containerRight[b-x61xa13amk] {
        flex-shrink: 0; /* Was schrumpft */
        flex-grow: 0; /* Was erweitert sich */
        justify-content: flex-end;
        padding-right: 1rem;
    }

    .searchBox[b-x61xa13amk] {
        width: 100%;
        max-width: none;
    }
    .searchDropdown li[b-x61xa13amk] {
        font-size: 0.8rem;
    }
    .searchDropdown li img[b-x61xa13amk] {
        width:40px;
        height:40px;
    }
}

/* _content/WAHShopForntend/Components/Layout/MainLayout.razor.rz.scp.css */

.page[b-vdq4mvcqnr] {
    display: flex;
    flex-direction: column;
    background-color: var(--mainBackgroundColor);
    min-height: 100dvh;
    flex: 1;
    padding-top: calc(7rem + 3rem); /* header height und categoryNav height */
}

html[b-vdq4mvcqnr], body[b-vdq4mvcqnr] {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #ff0000 !important;
}


.mainContent[b-vdq4mvcqnr] {
    flex-direction: column;
    flex: 1;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: var(--mainBackgroundColor);
    width: 100%;
    
}
.cookie-banner[b-vdq4mvcqnr] {
    position: fixed; 
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    gap: 10px;
    background-color: #fff3cd; 
    color: #856404;
    padding: 12px 20px;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
    border-radius: 6px 6px 0 0;
    z-index: 1000; 
    font-size: 0.95rem;
}

.cookieBanner[b-vdq4mvcqnr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: var(--hederBackgroundColoe);
    opacity: 0.95;
    color: #ffffff;
    border-radius: 0.3rem;
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    max-width: 90%;
    z-index: 9999;
}

.buttonGroup.ltr[b-vdq4mvcqnr] {
    display: flex;
    flex-direction: row; /* زر الأيسر أولاً */
}

.buttonGroup.rtl[b-vdq4mvcqnr] {
    display: flex;
    flex-direction: row-reverse; /* زر الأيمن أولاً */
}
/* Whatsapp */
.whatsappIcon[b-vdq4mvcqnr] {
    display: flex;
    justify-content: space-between;
    position: fixed;
    bottom: 1rem;
    bottom: 5%;
    left: 5%;
    z-index: 10000;
    background-color: #25D366;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    justify-content: center;
    align-items: center;
}
    .whatsappIcon img[b-vdq4mvcqnr] {
        width: 30px;
        height: 30px;
    }

    .whatsappIcon:hover[b-vdq4mvcqnr] {
        cursor: pointer;
        box-shadow: 0 6px 10px rgba(0,0,0,0.4);
        transform: scale(1.12);
    }
html[dir="rtl"] .whatsappIcon[b-vdq4mvcqnr] {
    left: auto;
    right: 5%;
}
@media (max-width: 768px) {
    .cookieBanner[b-vdq4mvcqnr] {
        flex-direction: column; 
        align-items: stretch; 
        text-align: center;
        gap: 0.5rem; 
        padding: 1rem;
    }
        .cookieBanner .buttonGroup[b-vdq4mvcqnr] {
            flex-direction: row;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.5rem;
            order: 2;
        }
    .page[b-vdq4mvcqnr] {
        padding-top: calc(6rem + 7rem); /* header height und categoryNav height */
    }
}

#blazor-error-ui[b-vdq4mvcqnr] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    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-vdq4mvcqnr] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/WAHShopForntend/Components/Layout/PriceLayout.razor.rz.scp.css */
.PriceDiv[b-hi05xymrpq] {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

    .PriceDiv .oldPrice[b-hi05xymrpq] {
        text-decoration: line-through;
        color: red;
        margin: 0;
    } 

    .PriceDiv .newPrice[b-hi05xymrpq] {
        color: green;
        font-weight: bold;
        margin: 0;
    }

    .PriceDiv .normalPrice[b-hi05xymrpq] {
        color: black;
        font-weight: bold;
        margin: 0;
    }
/* _content/WAHShopForntend/Components/Layout/ProductInfo.razor.rz.scp.css */
.textCard[b-en5pcfsxjj] {
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* ⬅️ يدفع المحتوى لأسفل */
    text-align: center;
    align-items: center;
    flex-grow: 1;
    gap:5px;
}

    .textCard:hover[b-en5pcfsxjj] {
        transform: scale(1.05);
        cursor: pointer;
    }

    .textCard a[b-en5pcfsxjj] {
        display: block;
        font-weight: bold;
        font-size: 1rem;
        color: #333;
        text-decoration: none;
    }

/* _content/WAHShopForntend/Components/Layout/ProjektLogo.razor.rz.scp.css */
.div[b-n2lomx4yba] {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.div img[b-n2lomx4yba] {
        cursor: pointer;
        width: clamp(60px, 15vw, 107px) !important;
        height: auto;
    }
h2[b-n2lomx4yba] {
    cursor: pointer;
    margin: 0;
    font-size: clamp(16px, 4vw, 30px);
}

@media (max-width: 768px) {
    h2[b-n2lomx4yba] {
        font-size: 20px; 
    }
}
/* _content/WAHShopForntend/Components/Layout/ShareLayout.razor.rz.scp.css */
.shareDiv[b-6aygzuh9oh] {
    display: flex;
    justify-content: flex-start;
    width:100%;
}

.shareBtn[b-6aygzuh9oh] {
    border:none;
}

    .shareBtn:hover[b-6aygzuh9oh] {
        transform: translateY(-2px) scale(1.02);
    }

    .shareBtn:active[b-6aygzuh9oh] {
        transform: scale(0.96);
    }

    .shareBtn i[b-6aygzuh9oh] {
        font-size: 20px;
    }

@media (max-width: 768px) {
    .shareDiv[dir="rtl"][b-6aygzuh9oh] {
        justify-content: flex-end;
    }
    .shareDiv[dir="rtl"][b-6aygzuh9oh] {
        justify-content: flex-start;
    }
}
/* _content/WAHShopForntend/Components/Pages/AGB.razor.rz.scp.css */
.mainContainer[b-hzkphe1ibi] {
    display: flex;
    flex-direction: column;
    margin: 20px auto;
}

h2[b-hzkphe1ibi] {
    margin-top: 20px;
}

p[b-hzkphe1ibi] {
    margin-bottom: 0.3rem;
}
/* _content/WAHShopForntend/Components/Pages/Cart.razor.rz.scp.css */
/* cart leer */
.emptyCart[b-a1fn8yck9e] {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    font-size: 20px;
}
/* Cart container */
.cartContainer[b-a1fn8yck9e] {
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top:70px;
    margin-bottom:20px;
}

/* cart */
.cart[b-a1fn8yck9e] {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cartItem[b-a1fn8yck9e] {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
}

    .cartItem img[b-a1fn8yck9e] {
        width: 100px;
        height: 100px;
        border-radius: 6px;
        object-fit: cover;
        cursor:pointer;
    }
        .cartItem img:hover[b-a1fn8yck9e] {
            transform: scale(1.30);
            cursor: pointer;
        }

        .cartItemDetails[b-a1fn8yck9e] {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

    .cartItemDetails h4[b-a1fn8yck9e] {
        margin: 0;
        font-size: 1.1rem;
        font-weight: bold;
    }

    .cartItemDetails p[b-a1fn8yck9e] {
        margin: 0;
        color: #555;
    }

.quantityInput input[b-a1fn8yck9e] {
    width: 70px;
    padding: 5px;
    font-size: 1rem;
}
.PriceDiv[b-a1fn8yck9e]{
    display:flex;
    flex-direction:row;
}
/* Total Price */
.TotalPrice[b-a1fn8yck9e] {
    text-align: right;
    font-size: 1.1rem;
    margin-top: 1rem;
    font-weight: bold;
}

/* Right side (checkout) */
.kasse[b-a1fn8yck9e] {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

    .kasse button[b-a1fn8yck9e] {
        width: 180px;
        height: 45px;
        background-color: var(--btnBackgroundColorProductAdded);
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 1rem;
        cursor: pointer;
    }

        .kasse button:hover[b-a1fn8yck9e] {
            background-color: var(--btnBackgroundColorProductAddedHover);
            transform: scale(1.05);
        }

/* Responsive for Mobile */
@media (max-width: 768px) {
    .cart[b-a1fn8yck9e] {
        flex-direction: column;
        gap: 1rem;
    }

    .cartItem[b-a1fn8yck9e] {
        flex-direction: column;
        align-items: center; /* يوسّط جميع العناصر */
        text-align: center;
    }

        .cartItem img[b-a1fn8yck9e] {
            width: 150px;
            height: 100px;
            border-radius: 6px;
            object-fit: cover;
            margin-bottom: 10px; /* مسافة تحت الصورة */
        }

    .cartItemDetails[b-a1fn8yck9e] {
        font-size: 0.95rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center; /* يوسّط النصوص */
    }

    .quantityInput input[b-a1fn8yck9e] {
        width: 60px;
        font-size: 0.9rem;
    }

    .cartRight[b-a1fn8yck9e] {
        width: 100%;
        justify-content: center;
    }

    .TotalPrice[b-a1fn8yck9e] {
        text-align: center;
        font-size: 1rem;
    }
}


/* _content/WAHShopForntend/Components/Pages/Checkout.razor.rz.scp.css */
/* ======== MAIN CHECKOUT STYLING ======== */
.mainContainer[b-9uay29fwyj] {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
    box-sizing: border-box;
}
/* ======== Message  ======== */
.messageWarning[b-9uay29fwyj] {
    display: flex;
    align-items: flex-start;
    justify-content:center;
    gap: 10px;
    background-color: #fff8e1; 
    border-left: 4px solid #ffc107;
    padding: 12px 14px;
    border-radius: 6px;
    color: #6b4f00;
    font-size: 0.95rem;
}

    .messageWarning i[b-9uay29fwyj] {
        font-size: 1.2rem;
        color: #ffc107;
        margin-right: auto;
    }

    .messageWarning p[b-9uay29fwyj] {
        margin: 0;
        margin-right: auto;
    }
/* ======== BACK TO MAIN PAGE ======== */
.backToMainPage[b-9uay29fwyj] {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

    .backToMainPage button[b-9uay29fwyj] {
        background-color: var(--btnBackgroundColor);
        color: white;
        width: 100%;
        max-width: 250px;
        padding: 10px;
        border-radius: 5px;
        margin-top: 10px;
        transition: 0.3s ease;
    }

        .backToMainPage button:hover[b-9uay29fwyj] {
            background-color: var(--btnBackgroundColorHover);
            transform: scale(1.05);
        }

    .backToMainPage p[b-9uay29fwyj] {
        font-size: 1rem;
        color: #2c3e50;
        background-color: #f1f1f1;
        padding: 15px;
        border-radius: 8px;
        max-width: 100%;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        margin: 20px 0;
    }

/* ======== SHIPPING SECTION ======== */
.shipping[b-9uay29fwyj] {
    display: flex;
    flex-direction: column;
    gap:5px;
    border-top: 2px solid #cccccc;
    padding-top: 10px;
}
/* ======== ADDRESS RADIO SECTION ======== */
.address[b-9uay29fwyj] {
    border-bottom: 2px solid #cccccc;
    padding-bottom: 10px;
}

.pShowAddressForm[b-9uay29fwyj] {
    color: #007bff;
    cursor: pointer;
    text-decoration: underline;
    margin-top: 10px;
    font-size: 0.95rem;
}

    .pShowAddressForm:hover[b-9uay29fwyj] {
        color: #0056b3;
    }
.addressRadioDiv[b-9uay29fwyj] {
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.addressRadio[b-9uay29fwyj] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.addressOption[b-9uay29fwyj] {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #f9f9f9;
}

    /* حتى لا يتمدد label */
    .addressOption label[b-9uay29fwyj] {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-grow: 1;
        margin: 0;
    }

    /* زر الحذف */
    .addressOption .deleteButton[b-9uay29fwyj] {
        background-color: var(--btnRed);
        color: white;
        border: none;
        padding: 6px 12px;
        border-radius: 4px;
        cursor: pointer;
        white-space: nowrap;
    }

        .addressOption .deleteButton:hover[b-9uay29fwyj] {
            background-color: var(--btnRedHover);
            transform: scale(1.05);
        }

/* ======== PAYMENT SECTION ======== */
.payment[b-9uay29fwyj] {
    padding: 0px;
    margin: 0px;
}
.paymentMethodOption[b-9uay29fwyj] {
    display: flex;
    flex-direction: column;
}

    .paymentMethodOption label[b-9uay29fwyj] {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.95rem;
    }

        .paymentMethodOption label:last-child[b-9uay29fwyj] {
            color: #198754;
            margin-top: 10px;
        }

/* ======== PLACE ORDER SECTION ======== */
.placeOrder[b-9uay29fwyj] {
    display: flex;
    flex-direction: column;
    gap:1px;
    padding-top: 15px;
    border-top: 2px solid #cccccc;
}
.placeOrderB[b-9uay29fwyj] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top:15px;
    gap:10px;
}

.btnEinloggen[b-9uay29fwyj], .btnPay[b-9uay29fwyj] {
    width: 100%;
    max-width: 250px;
    padding: 10px;
    color: white;
    border-radius: 6px;
    font-size: 1rem;
    transition: 0.3s ease;
}

.btnEinloggen[b-9uay29fwyj] {
    background-color: var(--btnBackgroundColor);
}

    .btnEinloggen:hover[b-9uay29fwyj] {
        background-color: var(--btnBackgroundColorHover);
        transform: scale(1.05);
    }

.btnPay[b-9uay29fwyj] {
    background-color: var(--btnBackgroundColorProductAdded);
}

    .btnPay:hover[b-9uay29fwyj] {
        background-color: var(--btnBackgroundColorProductAddedHover);
        transform: scale(1.05);
    }

/* ======== ADDRESS FORM OVERLAY ======== */
.overlay[b-9uay29fwyj] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 1rem;
    box-sizing: border-box;
}

.addressForm[b-9uay29fwyj] {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

    .addressForm .addressBtn[b-9uay29fwyj] {
        padding-top: 15px;
    }

.addAddressB[b-9uay29fwyj],
.addProductCancelB[b-9uay29fwyj] {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    margin-top: 10px;
    color: white;
    transition: 0.3s ease;
}

.addAddressB[b-9uay29fwyj] {
    background-color: #007bff;
}

    .addAddressB:hover[b-9uay29fwyj] {
        background-color: #0056b3;
        transform: scale(1.05);
    }

.addProductCancelB[b-9uay29fwyj] {
    background-color: #757e84;
}

    .addProductCancelB:hover[b-9uay29fwyj] {
        background-color: #5a6268;
        transform: scale(1.05);
    }

/* ======== RESPONSIVE ======== */
@media (max-width: 600px) {
    .checkoutMain[b-9uay29fwyj] {
        padding: 15px;
        gap: 30px;
        min-width: unset;
    }

    .addressOption[b-9uay29fwyj] {
        flex-direction: column;
        align-items: flex-start;
    }

    .btnEinloggen[b-9uay29fwyj], .btnPay[b-9uay29fwyj], .backToMainPage button[b-9uay29fwyj] {
        width: 100%;
        max-width: unset;
    }

    .backToMainPage p[b-9uay29fwyj] {
        font-size: 1rem;
    }

    .placeOrder h4[b-9uay29fwyj] {
        font-size: 0.95rem;
    }

    .addressForm[b-9uay29fwyj] {
        padding: 1rem;
    }
}
/* _content/WAHShopForntend/Components/Pages/ConfirmEmail.razor.rz.scp.css */
/* _content/WAHShopForntend/Components/Pages/customerDashboard.razor.rz.scp.css */
.mainContainer[b-tfcmczo39n] {
    width: 100%;
    margin-bottom: 50px;
}
.iconCircle[b-tfcmczo39n] {
    width: 35px;
    height: 35px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

.balanceCard[b-tfcmczo39n] {
    border-radius: 15px;
    background: linear-gradient(to bottom right, #ffffff, #fcfcfc);
}

.bg-danger-soft[b-tfcmczo39n] {
    background-color: #fee2e2;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 6px;
}
.titleUnderline[b-tfcmczo39n] {
    width: 100px; 
    height: 4px; 
    background-color: #0d6efd; 
    border-radius: 2px; 
    margin-top: 8px; 
}

@media (max-width: 767.98px) {
    .balanceText[b-tfcmczo39n] {
        font-size: 1.5rem !important; /* حجم مناسب للموبايل */
    }

    .cardBody[b-tfcmczo39n] {
        padding: 1rem !important;
    }
    .tableResponsive[b-tfcmczo39n] {
        border-radius: 10px;
        overflow-x: auto;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .customTable[b-tfcmczo39n] {
        font-size: 12px;
    }

        .customTable td[b-tfcmczo39n],
        .customTable th[b-tfcmczo39n] {
            padding: 6px;
        }
/* Button */
    .btnMobileSmall[b-tfcmczo39n] {
        padding: 5px 15px !important; 
        font-size: 12px !important; 
        min-height: 35px; 
    }

        .btnMobileSmall .spinner-border[b-tfcmczo39n] {
            width: 12px; 
            height: 12px;
        }
}
/* _content/WAHShopForntend/Components/Pages/CustomerPortal.razor.rz.scp.css */
.main[b-p0xtwq538m] {
    height: 100vh;
}

.loginContainer[b-p0xtwq538m] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    padding: 50px 50px;
    border-radius: 8px;
    background-color: white;
    gap: 10px;
    background-color: var(--mainBackgroundColor);
    width: max-content; 
    height: max-content; 
    margin: 50px auto;
}
    .loginContainer  h2[b-p0xtwq538m] {
        cursor: pointer;
        color: #007bff;
        transition: color 0.2s ease-in-out;
    }

/* _content/WAHShopForntend/Components/Pages/Forgotpassword.razor.rz.scp.css */
.main[b-490baqr044] {
    display: flex;
    align-items: center;
    justify-content: center;
    height:100vh;
}
.forgotPasswordHeader[b-490baqr044], .passwordRest[b-490baqr044] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    padding: 50px 50px;
    border-radius: 8px;
    background-color: white;
    gap: 20px;
    background-color: var(--mainBackgroundColor);
}
    .forgotPasswordHeader button:last-child[b-490baqr044] {
        margin-top: 25px;
    }
    .passwordRest button:last-child[b-490baqr044] {
        margin-top: 25px;
    }
    .forgotPasswordHeader button[b-490baqr044] {
        width: 250px;
        box-sizing: border-box;
        outline: none;
        text-align: center;
        font-size: 16px;
        border-radius: 8px;
        border: none;
        cursor: pointer;
        background-color: var(--btnBackgroundColor);
        color: #ffffff;
    }
   .passwordRest button[b-490baqr044] {
        width: 250px;
        box-sizing: border-box;
        outline: none;
        text-align: center;
        font-size: 16px;
        border-radius: 8px;
        border: none;
        cursor: pointer;
        background-color: var(--btnBackgroundColor);
        color: #ffffff;
    }
        .forgotPasswordHeader button:hover[b-490baqr044] {
            background-color: var(--btnBackgroundColorHover);
        }
    .passwordRest button:hover[b-490baqr044] {
        background-color: var(--btnBackgroundColorHover);
    }
/* _content/WAHShopForntend/Components/Pages/Impressum.razor.rz.scp.css */
.mainContainer[b-18bcrw76f9] {
    display: flex;
    flex-direction: column;
}
h1[b-18bcrw76f9]{
    margin-top:20px;
}
p[b-18bcrw76f9] {
    margin-bottom: 0.3rem;
}


/* _content/WAHShopForntend/Components/Pages/Index.razor.rz.scp.css */

/* _content/WAHShopForntend/Components/Pages/Login.razor.rz.scp.css */

.loginContainer[b-mk2l5x682x] {
    display: flex;
    align-items: center;
    justify-content: center;
}
    .loginForm[b-mk2l5x682x] {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align:center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        padding: 50px 50px;
        border-radius: 8px;
        background-color: white;
        gap: 10px;
        background-color: var(--mainBackgroundColor);
    }
    .loginForm button:last-child[b-mk2l5x682x] {
        margin-top: 25px;
    }
/* Title */
.loginContainer .loginForm h2[b-mk2l5x682x] {
    cursor: pointer;
    color: #007bff;
    transition: color 0.2s ease-in-out;
}
    .loginContainer .loginForm h2:hover[b-mk2l5x682x] {
        color: #0056b3;
    }

/* input, button style */
.loginContainer .loginForm .loginBtn[b-mk2l5x682x] {
    width: var(--elementWidth);
    height: var(--elementHeight);
    box-sizing: border-box;
    outline: none;
    text-align: center;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    background-color: var(--btnBackgroundColor);
    color: #ffffff;
}
.loginForm .loginBtn:hover[b-mk2l5x682x] {
    background-color: var(--btnBackgroundColorHover);
}
/* signup */
.signup a[b-mk2l5x682x] {
    text-decoration: none;
}
/* forgotPassword */
.forgotPassword a[b-mk2l5x682x]{
    cursor:pointer;
}
/* Feldverpackung */
.form-group[b-mk2l5x682x] {
   
    width: 100%;
   
}
.passwordDiv[b-mk2l5x682x] {
    position: relative;
    display: flex;
    align-items: center;
}


/* زر العين (Eye Button) */
.eyeButton[b-mk2l5x682x] {
    position: absolute;
    top: 50%;
    transform: translateY(-130%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    z-index: 5;
}
[dir="ltr"] .eyeButton[b-mk2l5x682x] {
    right: 12px;
    left: auto;
}

[dir="rtl"] .eyeButton[b-mk2l5x682x] {
    left: 12px;
    right: auto;
}
    .eyeButton i[b-mk2l5x682x] {
        font-size: 1.2rem;
    }
    .eyeButton:hover i[b-mk2l5x682x] {
        color: #000000;
    }
    .eyeButton:focus[b-mk2l5x682x] {
        outline: none;
    }

/* google button */
.googleBtn[b-mk2l5x682x] {
    width: var(--elementWidth);
    height: var(--elementHeight);
    background-color: white;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    height: 48px;
}
    .googleBtn:hover[b-mk2l5x682x] {
        background-color: #f1f1f1;
    }
    .googleBtn img[b-mk2l5x682x] {
        width: 30px;
        height: 30px;
        object-fit: contain;
    }
.RememberMe[b-mk2l5x682x] {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap:5px;
}
/* _content/WAHShopForntend/Components/Pages/Orders.razor.rz.scp.css */
.mainContainer[b-57pkjcri4b] {
    margin-top: 70px;
}
.orderContainer[b-57pkjcri4b] {
    max-width: 900px;
    margin: 20px auto;
    display: flex;
    align-content: center;
    justify-items: center;
    flex-direction: column;
    gap: 25px;
}

.order[b-57pkjcri4b] {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.orderHeader[b-57pkjcri4b] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.statusDropdown[b-57pkjcri4b] {
    cursor: pointer;
}

.orderHeader h3[b-57pkjcri4b] {
    margin: 0;
    font-size: 1.2rem;
    color: #2c3e50;
}

.orderHeader .status[b-57pkjcri4b] {
    background-color: #e0e0e0;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    white-space: nowrap;
    cursor: pointer;
}
.order p[b-57pkjcri4b] {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin: 0;
    font-size: 0.95rem;
    color: #333;
}
.orderMeta[b-57pkjcri4b] {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin: 0;
    font-size: 0.95rem;
    color: #333;
    background-color: #E0E0E0;
}
    .orderMeta span[b-57pkjcri4b] {
        display: flex;
        flex-direction: column;
        height: 50px;
        align-content:center;
        justify-content:center;
        text-align:center;
    }
    .orderItems[b-57pkjcri4b] {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

.orderItem[b-57pkjcri4b] {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    flex-wrap: wrap;
}

    .orderItem img[b-57pkjcri4b] {
        width: 100px;
        height: 100px;
        border-radius: 6px;
        object-fit: cover;
        border: 1px solid #ccc;
        flex-shrink: 0;
    }
        .orderItem img:hover[b-57pkjcri4b] {
            transform: scale(1.20);
            cursor: pointer;
        }
.orderItemsDetails[b-57pkjcri4b] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

    .orderItemsDetails h4[b-57pkjcri4b] {
        margin: 0;
        font-size: 1rem;
        font-weight: 600;
    }

    .orderItemsDetails p[b-57pkjcri4b] {
        margin: 0;
        font-size: 0.9rem;
        color: #555;
    }
/* button */
.orderContainer button[b-57pkjcri4b] {
    width: 150px;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
    /* button center */
    display: block;
    margin: 0 auto;
}
/* empty Order */
.emptyOrder[b-57pkjcri4b] {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    margin-top: 10vh;
    font-size: 20px;
}
/* Phone */
@media (max-width: 600px) {
    .orderHeader[b-57pkjcri4b] {
        flex-direction: column;
        align-items: flex-start;
    }

    .orderItem[b-57pkjcri4b] {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

        .orderItem img[b-57pkjcri4b] {
            width: 90%;
            width: 150px;
            height: 100px;
            height: auto;
        }

    .orderItemsDetails[b-57pkjcri4b] {
        align-items: center;
    }

    .order p[b-57pkjcri4b],
    .orderMeta[b-57pkjcri4b] {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

        .orderMeta span[b-57pkjcri4b] {
            padding: 5px;
            display: flex;
            flex-direction: row;
            gap: 5px;
            height: 50px;
        }
}
/* _content/WAHShopForntend/Components/Pages/OurDeliveryService.razor.rz.scp.css */
.mainContainer[b-e08oentdbp] {
    display: flex;
    flex-direction: column;
    margin: 20px auto;
}

h2[b-e08oentdbp] {
    margin-top: 20px;
}

p[b-e08oentdbp] {
    margin-bottom: 0.3rem;
}


/* _content/WAHShopForntend/Components/Pages/PrivacyPolicy.razor.rz.scp.css */
.mainContainer[b-4o8238339w] {
    display: flex;
    flex-direction: column;
}
/* _content/WAHShopForntend/Components/Pages/ProductPage.razor.rz.scp.css */

.productDetails[b-uot7vzi1qy] {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
    background-color: #fdfdfd;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
        .InfoSection[b-uot7vzi1qy] {
            flex: 1 1 300px;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
        }

.productTitle[b-uot7vzi1qy] {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.productDescription[b-uot7vzi1qy] {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

.productPrice[b-uot7vzi1qy] {
    display:flex;
    font-size: 1.5rem;
    font-weight: bold;
    color: #28a745;
}
/* image and zoom */
.ImageSection[b-uot7vzi1qy] {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: zoom-in;
}
.zoomableImage[b-uot7vzi1qy] {
    max-width: 100%;
    max-height: 400px;
    border-radius: 10px;
}
    .zoomableImage:hover[b-uot7vzi1qy] {
        transform: scale(1.05);
    }

.modalOverlay[b-uot7vzi1qy] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    cursor: zoom-out;
}

.modalImage[b-uot7vzi1qy] {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255,255,255,0.6);
    z-index: 10000;
}

/* Quantity Div */
.btnProduc2[b-uot7vzi1qy], .btnProductAdded2[b-uot7vzi1qy] {
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: fit-content;
}

.btnProduc2[b-uot7vzi1qy] {
    background-color: #007BFF;
    color: white;
}

    .btnProduc2:hover[b-uot7vzi1qy] {
        background-color: #0056b3;
    }

.btnProductAdded2[b-uot7vzi1qy] {
    background-color: #28a745;
    color: white;
}

    .btnProductAdded2:hover[b-uot7vzi1qy] {
        background-color: #218838;
    }
.QuantityInput[b-uot7vzi1qy] {
    width: 80px;
    padding: 0.4rem;
    font-size: 1rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    text-align: center;
}

@media (max-width: 768px) {
    .productDetails[b-uot7vzi1qy] {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .ImageSection[b-uot7vzi1qy],
    .InfoSection[b-uot7vzi1qy] {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .zoomableImage[b-uot7vzi1qy] {
        max-height: 250px;
        object-fit: contain;
    }

    .productTitle[b-uot7vzi1qy] {
        font-size: 1.5rem;
    }

    .productPrice[b-uot7vzi1qy] {
        font-size: 1.2rem;
    }

    .DivQuantity[b-uot7vzi1qy] {
        display:flex;
        align-items: stretch;
        width: 100%;
        gap:10px;
    }

    
}
/* _content/WAHShopForntend/Components/Pages/ProductsByCategory.razor.rz.scp.css */
.mainContainer[b-07gnravlj6] {
    width: 100%;
}
.moreLoadContainer[b-07gnravlj6] {
    text-align: center;
    margin: 20px 20px;
}

    .moreLoadContainer button[b-07gnravlj6] {
        padding: 10px 20px;
        font-weight: 500;
    }
.NoItemsFound[b-07gnravlj6],
.NoOffersFound[b-07gnravlj6] {
    display: inline-block;
    text-align: center;
    font-size: 1.3em;
    font-weight: 500;
    color: #222222;
    background: linear-gradient(135deg, #ffffff, #f3f3f3);
    padding: 16px 28px;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}
/* _content/WAHShopForntend/Components/Pages/Profile.razor.rz.scp.css */
.mainContainer[b-yswkj056zt] {
    width: 100%;
}
.profileCard[b-yswkj056zt] {
    display:flex;
    flex-direction:column;
    align-items:center;
    max-width: 500px;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.infoProfile[b-yswkj056zt] {
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0 auto;
}
    .infoProfile p[b-yswkj056zt] {
        margin-bottom: 1rem;
    }
.btnDivProfile[b-yswkj056zt] {
    display: flex;
    flex-direction:column;
    justify-content: center;
    margin-top: 1rem;
    gap: 13px;
}
.deleteConfirm[b-yswkj056zt]{
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:13px;
}
.deleteConfirmB[b-yswkj056zt] {
    margin-top:10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 13px;
}
.btnProfile[b-yswkj056zt] {
    background-color: var(--btnBackgroundColor);
    color: white;
}

    .btnProfile:hover[b-yswkj056zt] {
        background-color: var(--btnBackgroundColorHover);
        transform: scale(1.05);
    }

input.form-control[b-yswkj056zt] {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.3rem;
    border-radius: 5px;
    border: 1px solid #ccc;
}
/* _content/WAHShopForntend/Components/Pages/RightOfWithdrawal.razor.rz.scp.css */
.mainContainer[b-l3vqvqyu37] {
    display: flex;
    flex-direction: column;
    margin: 20px auto;
}
h2[b-l3vqvqyu37] {
    margin-top: 20px;
}
p[b-l3vqvqyu37] {
    margin-bottom: 0.3rem;
}
/* _content/WAHShopForntend/Components/Pages/SearchProducts.razor.rz.scp.css */
.mainContainer[b-7jd99ictld] {
    width: 100%;
}
/* _content/WAHShopForntend/Components/Pages/Signup.razor.rz.scp.css */
.signupContainer[b-y5f7qkzugi] {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
}

.signupForm[b-y5f7qkzugi] {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 70px 70px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    text-align: center;
    align-items: center;
}

    .signupForm button:last-child[b-y5f7qkzugi] {
        margin-top: 15px;
    }
/* Title */
.signupContainer .signupForm h2[b-y5f7qkzugi] {
    cursor: pointer;
    color: #007bff;
    transition: color 0.2s ease-in-out;
}

.signupContainer .signupForm h2:hover[b-y5f7qkzugi] {
    color: #0056b3;
}
    .signupForm button[b-y5f7qkzugi] {
        width: var(--elementWidth);
        height: var(--elementHeight);
        box-sizing: border-box;
        outline: none;
        text-align: center;
        font-size: 16px;
        border-radius: 8px;
        border: none;
    }
    .signupForm button[b-y5f7qkzugi] {
        background-color: var(--btnBackgroundColor);
        color: white;
        cursor: pointer;
    }

        .signupForm button:hover[b-y5f7qkzugi] {
            background-color: var(--btnBackgroundColorHover);
        }
.loginLink a[b-y5f7qkzugi] {
    text-decoration: none;
}
