/* _content/BehasAccessories/Components/Layout/Footer.razor.rz.scp.css */
/* Footer Container */
.footer-container[b-7xejp9hmyy] {
    background: #1B365D; /* Match navbar background */
    color: white; /* Match navbar text color */
    margin-top: auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Match navbar font */
    position: relative;
    padding: 2rem 1.5rem;
}

/* Footer Grid Layout */
.footer-grid[b-7xejp9hmyy] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column[b-7xejp9hmyy] {
    animation: fadeInUp-b-7xejp9hmyy 0.6s ease-out;
    animation-fill-mode: both;
}

    .footer-column:nth-child(1)[b-7xejp9hmyy] {
        animation-delay: 0s;
    }

    .footer-column:nth-child(2)[b-7xejp9hmyy] {
        animation-delay: 0.1s;
    }

    .footer-column:nth-child(3)[b-7xejp9hmyy] {
        animation-delay: 0.2s;
    }

    .footer-column:nth-child(4)[b-7xejp9hmyy] {
        animation-delay: 0.3s;
    }

    .footer-column:nth-child(5)[b-7xejp9hmyy] {
        animation-delay: 0.4s;
    }

/* Brand Section */
.footer-brand-section[b-7xejp9hmyy] {
    grid-column: span 2;
}

.footer-brand[b-7xejp9hmyy] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo[b-7xejp9hmyy] {
    width: 85px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

    .footer-logo:hover[b-7xejp9hmyy] {
        transform: scale(1.1) rotate(5deg);
    }

.footer-brand-text[b-7xejp9hmyy] {
    font-size: 20px;
    font-weight: 500;
    font-family: 'Dancing Script', 'Brush Script MT', cursive; /* Match navbar title font */
    color: white;
    letter-spacing: 0.5px;
}

.footer-description[b-7xejp9hmyy] {
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

/* Section Titles */
.footer-section-title[b-7xejp9hmyy] {
    font-size: 16px;
    font-weight: 500;
    color: white;
    margin-bottom: 16px;
}

/* Navigation and Social Lists */
.footer-nav-list[b-7xejp9hmyy],
.footer-social-list[b-7xejp9hmyy] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav-link[b-7xejp9hmyy] {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    transition: all 0.3s ease;
    position: relative;
}

    .footer-nav-link:hover[b-7xejp9hmyy] {
        color: #6C9BD1; /* Match navbar hover color */
        transform: translateX(4px);
    }

.footer-social-link[b-7xejp9hmyy] {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    transition: all 0.3s ease;
    position: relative;
}

    .footer-social-link:hover[b-7xejp9hmyy] {
        color: #6C9BD1; /* Match navbar hover color */
        transform: translateX(4px);
    }

/* Contact Info */
.footer-contact-info[b-7xejp9hmyy] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
}

.footer-contact-label[b-7xejp9hmyy] {
    color: white;
    font-weight: 500;
    font-size: 13px;
}

/* Divider */
.footer-divider[b-7xejp9hmyy] {
    border: none;
    height: 1px;
    background-color: rgba(255,255,255,0.3);
    margin: 2rem 0 1rem 0;
    opacity: 0;
    animation: fadeIn-b-7xejp9hmyy 0.8s ease-out 0.5s forwards;
}

/* Bottom Bar */
.footer-bottom-bar[b-7xejp9hmyy] {
    text-align: center;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 400;
    padding-top: 8px;
    animation: fadeInUp-b-7xejp9hmyy 0.6s ease-out 0.6s both;
}

/* Animations */
@keyframes fadeInUp-b-7xejp9hmyy {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn-b-7xejp9hmyy {
    to {
        opacity: 1;
    }
}

/* Tablet Responsive (768px and below) */
@media (max-width: 768px) {
    .footer-container[b-7xejp9hmyy] {
        padding: 1.5rem 1rem;
    }

    .footer-grid[b-7xejp9hmyy] {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-brand-section[b-7xejp9hmyy] {
        grid-column: span 2;
        text-align: center;
    }

    .footer-brand[b-7xejp9hmyy] {
        justify-content: center;
    }

    .footer-brand-text[b-7xejp9hmyy] {
        font-size: 18px;
    }

    .footer-description[b-7xejp9hmyy] {
        text-align: center;
        font-size: 13px;
    }

    .footer-section-title[b-7xejp9hmyy] {
        font-size: 15px;
        text-align: center;
    }

    .footer-nav-list[b-7xejp9hmyy],
    .footer-social-list[b-7xejp9hmyy] {
        align-items: center;
    }

    .footer-contact-info[b-7xejp9hmyy] {
        text-align: center;
        align-items: center;
    }
}

/* Mobile Responsive (480px and below) */
@media (max-width: 480px) {
    .footer-container[b-7xejp9hmyy] {
        padding: 1.25rem 1rem;
        text-align: center;
    }

    .footer-grid[b-7xejp9hmyy] {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .footer-brand[b-7xejp9hmyy] {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo[b-7xejp9hmyy] {
        width: 70px;
        margin-bottom: 8px;
    }

    .footer-brand-text[b-7xejp9hmyy] {
        font-size: 18px;
    }

    .footer-description[b-7xejp9hmyy] {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .footer-section-title[b-7xejp9hmyy] {
        font-size: 15px;
        margin-bottom: 10px;
        text-align: center;
    }

    .footer-nav-list[b-7xejp9hmyy],
    .footer-social-list[b-7xejp9hmyy] {
        align-items: center;
        gap: 10px;
    }

    .footer-nav-link[b-7xejp9hmyy],
    .footer-social-link[b-7xejp9hmyy] {
        font-size: 14px;
        justify-content: center;
        padding: 6px 0;
    }

    .footer-contact-info[b-7xejp9hmyy] {
        font-size: 13px;
        text-align: center;
        gap: 8px;
    }

    .footer-bottom-bar[b-7xejp9hmyy] {
        margin-top: 1rem;
        font-size: 12px;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .footer-container[b-7xejp9hmyy] {
        padding: 0.75rem 0.5rem;
    }

    .footer-grid[b-7xejp9hmyy] {
        gap: 0.75rem;
    }

    .footer-logo[b-7xejp9hmyy] {
        width: 60px;
    }

    .footer-brand-text[b-7xejp9hmyy] {
        font-size: 16px;
    }

    .footer-description[b-7xejp9hmyy] {
        font-size: 12px;
    }

    .footer-nav-link[b-7xejp9hmyy],
    .footer-social-link[b-7xejp9hmyy] {
        font-size: 13px;
    }
}

/* Focus States for Accessibility (fixed) */
.footer-nav-link:focus[b-7xejp9hmyy],
.footer-social-link:focus[b-7xejp9hmyy] {
    outline: none;
    border: none;
    box-shadow: 0 0 0 2px rgba(108, 155, 209, 0.6); /* subtle bluish glow */
    border-radius: 4px;
}

/* Utility Classes for Padding (if needed) */
.px-6[b-7xejp9hmyy] {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-8[b-7xejp9hmyy] {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
/* _content/BehasAccessories/Components/Layout/MainLayout.razor.rz.scp.css */


/* Apply padding top based on navbar height */
.content[b-zmuyuftm5y] {
    padding-top: 88px; /* Desktop default */
    transition: padding-top 0.25s ease;
}

/* Tablet / small laptop */
@media (max-width: 768px) {
    .content[b-zmuyuftm5y] {
        padding-top: 66.4px; /* Matches mobile navbar height */
    }
}

/* Very small mobile */
@media (max-width: 480px) {
    .content[b-zmuyuftm5y] {
        padding-top: 59.2px; /* Matches small mobile navbar height */
    }
}

#blazor-error-ui[b-zmuyuftm5y] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-zmuyuftm5y] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/BehasAccessories/Components/Layout/Navbar.razor.rz.scp.css */
/* ---------- Navbar (responsive) #1B365D  background: linear-gradient(135deg, #e2e8f0 0%, #e2e8f0 100%); ---------- */
.navbar[b-l1qy839ivd] {
    background: linear-gradient(135deg, #e2e8f0 0%, #e2e8f0 100%);
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.9rem 1.25rem;
    transition: padding 0.25s ease;
    box-sizing: border-box;
    min-height: 60px;
}

/* center container */
.navbar-content[b-l1qy839ivd] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    gap: 1rem;
}

/* left group: logo + title */
.logo-title[b-l1qy839ivd] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-logo[b-l1qy839ivd] {
    height: 88px; /* Matches min-height (60px) + padding (0.9rem * 2 ≈ 28px) */
    margin: -0.9rem 0; /* Offsets navbar padding to touch top/bottom */
    flex-shrink: 0;
    max-width: 120px; /* Optional: constrain width */
}

.navbar-title[b-l1qy839ivd] {
    font-size: clamp(1.6rem, 2.5vw, 1.4rem);
    font-weight: 400;
    color: #1B365D;
    font-family: 'Dancing Script', 'Brush Script MT', cursive;
    letter-spacing: 0.5px;
}

/* nav links (right) */
.nav-links[b-l1qy839ivd] {
    display: flex;
    gap: clamp(0.6rem, 1.5vw, 1.5rem);
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    margin-left: auto;
    flex-wrap: nowrap;
    transition: all 0.2s ease;
}

    .nav-links li[b-l1qy839ivd] {
        flex: 0 0 auto;
    }

        .nav-links li a[b-l1qy839ivd] {
            text-decoration: none;
            color: #1B365D;
            font-size: clamp(0.95rem, 1.2vw, 1.1rem);
            padding: 0.2rem 0.45rem;
            display: inline-block;
            transition: color 0.2s ease;
            font-weight: 500; /* Medium weight for better readability */
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Clean modern font */
        }

            .nav-links li a:hover[b-l1qy839ivd] {
                color: #6C9BD1;
            }

/* hamburger (hidden on desktop) */
.hamburger[b-l1qy839ivd] {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.25rem;
    margin-left: 0.5rem;
}

.bar[b-l1qy839ivd] {
    height: 3px;
    width: 25px;
    background-color: white;
    margin: 2px 0;
    transition: transform 0.25s, opacity 0.25s;
}

.hamburger.active .bar:nth-child(1)[b-l1qy839ivd] {
    transform: rotate(-45deg) translate(-5px, 5px);
}

.hamburger.active .bar:nth-child(2)[b-l1qy839ivd] {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3)[b-l1qy839ivd] {
    transform: rotate(45deg) translate(-5px, -5px);
}

/* --------- Breakpoints --------- */

/* Medium screens (tablets / small laptops) */
@media (max-width: 1024px) {
    .nav-links[b-l1qy839ivd] {
        gap: 0.7rem;
    }

        .nav-links li a[b-l1qy839ivd] {
            font-size: 0.98rem;
            padding: 0.2rem 0.4rem;
        }

    .navbar-title[b-l1qy839ivd] {
        font-size: 1.15rem;
    }
}

/* Mobile: show hamburger, hide regular links by default */
@media (max-width: 768px) {
    .nav-links[b-l1qy839ivd] {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        width: 220px;
        padding: 0.7rem;
        background: linear-gradient(135deg, #e2e8f0 0%, #e2e8f0 100%);
        flex-direction: column;
        gap: 0.4rem;
        border-left: 1px solid rgba(255,255,255,0.03);
        box-shadow: 0 6px 18px rgba(0,0,0,0.4);
    }

        .nav-links.open[b-l1qy839ivd] {
            display: flex;
        }

    .hamburger[b-l1qy839ivd] {
        display: flex;
    }

    .navbar-title[b-l1qy839ivd] {
        font-size: 1.05rem;
    }

    .navbar-logo[b-l1qy839ivd] {
        height: 66.4px; /* Matches min-height (60px) + reduced padding (0.2rem * 2 ≈ 6.4px) */
        margin: -0.2rem 0; /* Offsets reduced padding */
        max-width: 100px;
    }
}

/* Very small devices - tighten up */
@media (max-width: 480px) {
    .nav-links.open[b-l1qy839ivd] {
        width: 100%;
        left: 0;
        right: 0;
    }

    .nav-links li a[b-l1qy839ivd] {
        font-size: 0.9rem;
        padding: 0.22rem 0.4rem;
    }

    .navbar[b-l1qy839ivd] {
        padding: 0.6rem 0.7rem;
        min-height: 52px;
    }

    .navbar-logo[b-l1qy839ivd] {
        height: 59.2px; /* Matches min-height (52px) + padding (0.6rem * 2 ≈ 7.2px) */
        margin: -0.6rem 0; /* Offsets navbar padding */
        max-width: 90px;
    }

    .navbar-title[b-l1qy839ivd] {
        font-size: 1.4rem;
    }
}
/* _content/BehasAccessories/Components/Pages/AboutUs.razor.rz.scp.css */
.about-container[b-igtnfd4s56] {
    min-height: 100vh;
    background: #F5F5F5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-bottom: 60px;
}

/* HERO SECTION */
.hero-section[b-igtnfd4s56] {
    background: #FAFAFA;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
}

    .hero-section[b-igtnfd4s56]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('/Abg.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: 1;
    }

.hero-content[b-igtnfd4s56] {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title[b-igtnfd4s56] {
    font-size: 3.5rem;
    font-weight: 700;
    color: #6C9BD1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle[b-igtnfd4s56] {
    font-size: 1.3rem;
    color: #1B365D;
    line-height: 1.6;
    margin-bottom: 0;
}

.hero-decoration[b-igtnfd4s56] {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.6;
}

.accessory-icon[b-igtnfd4s56] {
    font-size: 4rem;
    animation: sparkle-b-igtnfd4s56 3s ease-in-out infinite;
}

@keyframes sparkle-b-igtnfd4s56 {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.1) rotate(10deg);
        opacity: 1;
    }
}

/* CONTENT */
.content-wrapper[b-igtnfd4s56] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-section[b-igtnfd4s56] {
    padding: 60px 0;
    border-bottom: 1px solid #e9ecef;
}

    .content-section:last-child[b-igtnfd4s56] {
        border-bottom: none;
    }

/* HEADINGS */
.section-header[b-igtnfd4s56] {
    text-align: center;
    margin-bottom: 3rem;
}

    .section-header h2[b-igtnfd4s56] {
        font-size: 2.5rem;
        color: #1B365D;
        margin-bottom: 1rem;
        font-weight: 600;
    }

.section-line[b-igtnfd4s56] {
    width: 80px;
    height: 3px;
    background: #1B365D;
    margin: 0 auto;
    border-radius: 2px;
}

.section-content[b-igtnfd4s56] {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

    .section-content p[b-igtnfd4s56] {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #495057;
        margin-bottom: 1.5rem;
    }

/* MISSION */
.mission-section[b-igtnfd4s56] {
    background: #FAFAFA;
    margin: 0 -20px;
    padding: 60px 20px;
    border-radius: 15px;
}

/* FEATURES */
.features-grid[b-igtnfd4s56] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card[b-igtnfd4s56] {
    background: #FAFAFA;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f8f9fa;
}

    .feature-card:hover[b-igtnfd4s56] {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

.feature-icon[b-igtnfd4s56] {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3[b-igtnfd4s56] {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p[b-igtnfd4s56] {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* NAME SECTION */
.name-section[b-igtnfd4s56] {
    background: #FAFAFA;
    margin: 0 -20px;
    padding: 60px 20px;
    border-radius: 15px;
}

/* CTA SECTION */
.cta-section[b-igtnfd4s56] {
    background: #f7c19b;
    margin: 60px -20px 40px;
    padding: 80px 20px;
    text-align: center;
    color: white;
    border-radius: 15px;
}

.cta-content h2[b-igtnfd4s56] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-content p[b-igtnfd4s56] {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons[b-igtnfd4s56] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn[b-igtnfd4s56] {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary[b-igtnfd4s56] {
    color: white;
}

    .btn-primary:hover[b-igtnfd4s56] {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(253, 203, 110, 0.4);
    }

.btn-secondary[b-igtnfd4s56] {
    background: transparent;
    color: white;
    border: 2px solid white;
}

    .btn-secondary:hover[b-igtnfd4s56] {
        background: white;
        color: #2c3e50;
        transform: translateY(-2px);
    }

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-title[b-igtnfd4s56] {
        font-size: 2.5rem;
    }

    .hero-subtitle[b-igtnfd4s56] {
        font-size: 1.1rem;
    }

    .hero-decoration[b-igtnfd4s56] {
        top: 10px;
        right: 10px;
    }

    .accessory-icon[b-igtnfd4s56] {
        font-size: 2.5rem;
    }

    .content-section[b-igtnfd4s56] {
        padding: 40px 0;
    }

    .section-header h2[b-igtnfd4s56] {
        font-size: 2rem;
    }

    .features-grid[b-igtnfd4s56] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card[b-igtnfd4s56] {
        padding: 2rem 1.5rem;
    }

    .cta-buttons[b-igtnfd4s56] {
        flex-direction: column;
        align-items: center;
    }

    .btn[b-igtnfd4s56] {
        width: 100%;
        max-width: 300px;
    }

    .mission-section[b-igtnfd4s56],
    .name-section[b-igtnfd4s56],
    .cta-section[b-igtnfd4s56] {
        margin: 40px -15px 40px;
        padding: 60px 15px;
    }
}

@media (max-width: 480px) {
    .hero-section[b-igtnfd4s56] {
        padding: 60px 15px;
    }

    .hero-title[b-igtnfd4s56] {
        font-size: 2rem;
    }

    .hero-subtitle[b-igtnfd4s56] {
        font-size: 1rem;
    }

    .content-wrapper[b-igtnfd4s56] {
        padding: 0 15px;
    }

    .section-header h2[b-igtnfd4s56] {
        font-size: 1.8rem;
    }

    .cta-content h2[b-igtnfd4s56] {
        font-size: 2rem;
    }

    .cta-content p[b-igtnfd4s56] {
        font-size: 1.1rem;
    }
}
/* _content/BehasAccessories/Components/Pages/AdminDashboard.razor.rz.scp.css */
/* ====== Layout Section ====== */
.admin-dashboard-section[b-mvoy03xtr4] {
    background: #F5F5F5;
    padding: 60px 20px;
}

.admin-content-wrapper[b-mvoy03xtr4] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.admin-section-header[b-mvoy03xtr4] {
    text-align: center;
    margin-bottom: 3rem;
}

    .admin-section-header h2[b-mvoy03xtr4] {
        font-size: 2.5rem;
        color: #1B365D;
        margin-bottom: 1rem;
        font-weight: 600;
    }

.admin-section-line[b-mvoy03xtr4] {
    width: 80px;
    height: 3px;
    background: #1B365D;
    margin: 0 auto;
    border-radius: 2px;
}

/* ====== Welcome Card ====== */
.admin-welcome-card[b-mvoy03xtr4] {
    background: #FAFAFA;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f2f6;
}

    .admin-welcome-card h3[b-mvoy03xtr4] {
        font-size: 1.5rem;
        font-weight: 600;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }

    .admin-welcome-card p[b-mvoy03xtr4] {
        color: #6c757d;
        font-size: 1rem;
        margin: 0.3rem 0;
    }

/* ====== Feature Cards Grid ====== */
.admin-features-grid[b-mvoy03xtr4] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.admin-feature-card[b-mvoy03xtr4] {
    background: #FAFAFA;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .admin-feature-card:hover[b-mvoy03xtr4] {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

.admin-feature-icon[b-mvoy03xtr4] {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: sparkle-b-mvoy03xtr4 3s ease-in-out infinite;
}

@keyframes sparkle-b-mvoy03xtr4 {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.1) rotate(10deg);
        opacity: 1;
    }
}

.admin-feature-card h3[b-mvoy03xtr4] {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.admin-feature-card p[b-mvoy03xtr4] {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* ====== Fallback Loader Text ====== */
.admin-loading-text[b-mvoy03xtr4] {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.1rem;
    color: #666;
}

/* ====== Responsive Adjustments ====== */
@media (max-width: 768px) {
    .admin-section-header h2[b-mvoy03xtr4] {
        font-size: 2rem;
    }

    .admin-feature-card[b-mvoy03xtr4] {
        padding: 2rem 1.5rem;
    }

    .admin-feature-icon[b-mvoy03xtr4] {
        font-size: 2.5rem;
    }
}
/* _content/BehasAccessories/Components/Pages/Admin/AdminOrders.razor.rz.scp.css */
.admin-orders-wrapper[b-yf8n5tjnl6] {
    padding: 2rem 1rem;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    background-color: #F5F5F5; /* Same color */
    min-height: 100vh; /* Full height of viewport */
    margin: 0;
}

.admin-orders-title[b-yf8n5tjnl6] {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2e3a59;
    margin-bottom: 1rem;
    border-left: 5px solid #4e54c8;
    padding-left: 12px;
}

.admin-orders-loading[b-yf8n5tjnl6],
.admin-orders-empty[b-yf8n5tjnl6] {
    font-style: italic;
    text-align: center;
    margin-top: 2rem;
}

.admin-orders-table-container[b-yf8n5tjnl6] {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.admin-orders-table[b-yf8n5tjnl6] {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #dee2e6;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

    .admin-orders-table thead[b-yf8n5tjnl6] {
        background-color: #4e54c8;
        color: #fff;
    }

    .admin-orders-table.delivered-table thead[b-yf8n5tjnl6] {
        background-color: #28a745;
        color: #fff;
    }

    .admin-orders-table th[b-yf8n5tjnl6],
    .admin-orders-table td[b-yf8n5tjnl6] {
        padding: 12px 16px;
        text-align: left;
        font-size: 0.95rem;
        vertical-align: middle;
        border-bottom: 1px solid #e2e6ea;
        white-space: nowrap;
    }

    .admin-orders-table tbody tr:hover[b-yf8n5tjnl6] {
        background-color: #f9f9f9;
        transition: background 0.2s ease-in-out;
    }

    .admin-orders-table a[b-yf8n5tjnl6] {
        color: #4e54c8;
        text-decoration: none;
        font-weight: 500;
    }

        .admin-orders-table a:hover[b-yf8n5tjnl6] {
            text-decoration: underline;
        }

.admin-btn[b-yf8n5tjnl6] {
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 4px;
    transition: background-color 0.2s ease-in-out;
}

.admin-btn-primary[b-yf8n5tjnl6] {
    background-color: #4e54c8;
    color: #fff;
}

    .admin-btn-primary:hover[b-yf8n5tjnl6] {
        background-color: #3d42b1;
    }

.admin-btn-danger[b-yf8n5tjnl6] {
    background-color: #e63946;
    color: #fff;
}

    .admin-btn-danger:hover[b-yf8n5tjnl6] {
        background-color: #c9303b;
    }

@media (max-width: 768px) {
    .admin-orders-title[b-yf8n5tjnl6] {
        font-size: 1.3rem;
    }

    .admin-orders-table th[b-yf8n5tjnl6],
    .admin-orders-table td[b-yf8n5tjnl6] {
        font-size: 0.85rem;
        padding: 10px 12px;
    }

    .admin-btn[b-yf8n5tjnl6] {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}
/* _content/BehasAccessories/Components/Pages/Admin/ProductList.razor.rz.scp.css */
/* Container Grid */
.product-grid[b-2ybp60k2cf] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    padding: 20px;
}

/* Product Card */
.product-card[b-2ybp60k2cf] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .product-card:hover[b-2ybp60k2cf] {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
    }

/* Carousel Container inside Card */
.product-carousel[b-2ybp60k2cf] {
    border-bottom: 1px solid #f3f4f6;
    background-color: #f8f9fa;
}

.product-image[b-2ybp60k2cf],
.placeholder-image[b-2ybp60k2cf] {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

/* Carousel Controls */
.carousel-control-prev[b-2ybp60k2cf],
.carousel-control-next[b-2ybp60k2cf] {
    width: 36px;
    height: 36px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev[b-2ybp60k2cf] {
    left: 8px;
}

.carousel-control-next[b-2ybp60k2cf] {
    right: 8px;
}

/* Product Details */
.product-details[b-2ybp60k2cf] {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-name[b-2ybp60k2cf] {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.product-category[b-2ybp60k2cf] {
    font-size: 14px;
    color: #6366f1;
    margin: 0;
}

.product-description[b-2ybp60k2cf] {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Messages */
.error-message[b-2ybp60k2cf] {
    color: #dc2626;
    font-size: 14px;
    margin-bottom: 12px;
    text-align: center;
}

.success-message[b-2ybp60k2cf] {
    color: #22c55e;
    font-size: 14px;
    margin-bottom: 12px;
    text-align: center;
}

.no-products-message[b-2ybp60k2cf] {
    text-align: center;
    color: #6b7280;
    font-size: 16px;
    margin-top: 40px;
}

/* Delete Button + Confirmation */
.btn-delete[b-2ybp60k2cf] {
    margin: 12px 16px 16px 16px;
    background: #f3f4f6;
    color: #374151;
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease;
}

    .btn-delete:hover[b-2ybp60k2cf] {
        background: #e5e7eb;
    }

.delete-confirmation[b-2ybp60k2cf] {
    margin: 12px 16px 16px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #374151;
}

.btn-confirm-delete[b-2ybp60k2cf] {
    background: #dc2626;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease;
}

    .btn-confirm-delete:hover[b-2ybp60k2cf] {
        background: #b91c1c;
    }

.btn-cancel-delete[b-2ybp60k2cf] {
    background: #f3f4f6;
    color: #374151;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease;
}

    .btn-cancel-delete:hover[b-2ybp60k2cf] {
        background: #e5e7eb;
    }

/* Responsive */
@media (max-width: 768px) {
    .product-grid[b-2ybp60k2cf] {
        grid-template-columns: 1fr;
    }

    .product-image[b-2ybp60k2cf],
    .placeholder-image[b-2ybp60k2cf] {
        height: 180px;
    }
}
/* _content/BehasAccessories/Components/Pages/Admin/Products.razor.rz.scp.css */
/* Container styles */
.product-management-container[b-po7ljl3nwg] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%; /* take full height */
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    box-sizing: border-box;
}

/* Button group at top center */
.button-group[b-po7ljl3nwg] {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

/* Base button styling */
.btn[b-po7ljl3nwg] {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: #007bff;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

    /* Hover and active states */
    .btn:hover[b-po7ljl3nwg] {
        background: #0056b3;
        transform: translateY(-2px);
    }

    .btn:active[b-po7ljl3nwg] {
        background: #004085;
        transform: scale(0.97);
    }

/* Component wrapper styling */
.component-wrapper[b-po7ljl3nwg] {
    flex: 1; /* take available height */
    width: 100%;
    max-width: 1200px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 20px;
    overflow-y: auto;
}

/* Unauthorized message */
.unauthorized-message[b-po7ljl3nwg] {
    color: #dc3545;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    margin-top: 40px;
}
/* _content/BehasAccessories/Components/Pages/Banner.razor.rz.scp.css */
/* Banner carousel full width and 80% of viewport height */
#bannerCarousel[b-shdyw1p0be] {
    width: 100%;
    height: 85vh;
    position: relative;
    overflow: hidden;
}

    /* Inner carousel should also take full height */
    #bannerCarousel .carousel-inner[b-shdyw1p0be] {
        height: 100%;
    }

    /* Each slide (carousel-item) should fill the full space */
    #bannerCarousel .carousel-item[b-shdyw1p0be] {
        height: 100%;
        transition: transform 0.6s ease-in-out; /* smooth animation */
    }

        /* Image styling to fit nicely */
        #bannerCarousel .carousel-item img[b-shdyw1p0be] {
            object-fit: cover;
            width: 100%;
            height: 100%;
        }

/* Navigation buttons */
.carousel-control-prev[b-shdyw1p0be],
.carousel-control-next[b-shdyw1p0be] {
    width: 5%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #bannerCarousel[b-shdyw1p0be] {
        height: 60vh;
    }
}
/* _content/BehasAccessories/Components/Pages/ContactMessages.razor.rz.scp.css */
.contact-page-container[b-y4d8udy5q1] {
    width: 100%;
    max-width: none; /* Remove width restriction */
    margin: 0; /* Remove auto-centering */
    padding: 1.5rem 1rem;
    background-color: #F5F5F5; /* Match the same background */
    min-height: 100vh; /* Full viewport height */
    box-sizing: border-box;
}


.contact-title[b-y4d8udy5q1] {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
}

.contact-cards-wrapper[b-y4d8udy5q1] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.contact-card[b-y4d8udy5q1] {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow 0.3s ease;
}

    .contact-card:hover[b-y4d8udy5q1] {
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    }

.contact-header[b-y4d8udy5q1] {
    margin-bottom: 0.75rem;
}

.contact-name[b-y4d8udy5q1] {
    font-weight: 600;
    font-size: 1.1rem;
    color: #222;
}

.contact-email[b-y4d8udy5q1] {
    font-size: 0.95rem;
    color: #666;
    word-break: break-all;
}

.contact-body[b-y4d8udy5q1] {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 1rem;
}

.contact-message[b-y4d8udy5q1] {
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.contact-info[b-y4d8udy5q1] {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    color: #555;
}

    .contact-info li[b-y4d8udy5q1] {
        margin-bottom: 0.3rem;
    }

.contact-actions[b-y4d8udy5q1] {
    display: flex;
    justify-content: flex-end;
}

.contact-delete-btn[b-y4d8udy5q1] {
    background-color: #e53935;
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .contact-delete-btn:hover[b-y4d8udy5q1] {
        background-color: #c62828;
    }

.contact-loading[b-y4d8udy5q1],
.contact-empty[b-y4d8udy5q1],
.contact-unauthorized[b-y4d8udy5q1] {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
    color: #666;
}
/* _content/BehasAccessories/Components/Pages/ContactUs.razor.rz.scp.css */
html[b-ucwwr4xpg5] {
    scroll-behavior: smooth;
}

/* Apply border-box everywhere so padding/borders don't cause overflow */
*[b-ucwwr4xpg5], *[b-ucwwr4xpg5]::before, *[b-ucwwr4xpg5]::after {
    box-sizing: border-box;
}

.contact-page[b-ucwwr4xpg5] {
    background: url('/5.webp') center/cover no-repeat;
    background-attachment: scroll;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 15px;

}

.form-container[b-ucwwr4xpg5] {
    width: 100%;
    max-width: 540px;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    /*  backdrop-filter: blur(12px) saturate(120%);
    -webkit-backdrop-filter: blur(12px) saturate(120%); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    background-clip: padding-box; /* crisper border */
}

    .form-container h3[b-ucwwr4xpg5] {
        font-weight: 700;
        color: #000;
        text-align: center;
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

.info-text[b-ucwwr4xpg5] {
    margin-bottom: 20px;
    text-align: center;
    font-size: 1rem;
    color: #000;
}

label[b-ucwwr4xpg5] {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
}

.input-field[b-ucwwr4xpg5] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.15);
    color: #000;
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .input-field:focus[b-ucwwr4xpg5] {
        border-color: #c0392b;
        box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.25);
        outline: none;
    }

    .input-field[b-ucwwr4xpg5]::placeholder {
        color: rgba(0, 0, 0, 0.5);
    }

.validation-error[b-ucwwr4xpg5] {
    margin-top: 5px;
    font-size: 0.9rem;
    color: #c0392b;
}

.alert-success-message[b-ucwwr4xpg5] {
    background-color: #d4edda;
    color: #155724;
    padding: 12px 15px;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.validation-summary[b-ucwwr4xpg5] {
    background-color: #ffe6e6;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.submit-button[b-ucwwr4xpg5] {
    display: inline-block;
    padding: 12px 25px;
    font-size: 16px;
    border: 2px solid #000;
    border-radius: 8px;
    background-color: transparent;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .submit-button:hover[b-ucwwr4xpg5] {
        background-color: rgba(0, 0, 0, 0.05);
        transform: translateY(-1px);
    }

.form-group[b-ucwwr4xpg5] {
    margin-bottom: 1.2rem;
}

@media (max-width: 768px) {
    .form-container[b-ucwwr4xpg5] {
        margin: 20px;
        padding: 25px;
    }

    .submit-button[b-ucwwr4xpg5] {
        width: 100%;
        text-align: center;
    }
}
/* _content/BehasAccessories/Components/Pages/HBottom.razor.rz.scp.css */
.content-wrapper[b-lg8jwhalyf] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-section[b-lg8jwhalyf] {
    background: #F5F5F5; /* Light silver background */
    /* Removed blur and saturate for performance */
    padding: 80px 20px;
    text-align: center;
    color: #2c3e50;
    overflow: hidden;
}

.cta-content h2[b-lg8jwhalyf] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.cta-content p[b-lg8jwhalyf] {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons[b-lg8jwhalyf] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn[b-lg8jwhalyf] {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary[b-lg8jwhalyf] {
    background-color: #6C9BD1;
    color: white;
}

    .btn-primary:hover[b-lg8jwhalyf] {
        background-color: #1B365D;
        transform: translateY(-3px);
        /* Removed box-shadow for performance */
    }

.btn-secondary[b-lg8jwhalyf] {
    background: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

    .btn-secondary:hover[b-lg8jwhalyf] {
        background: #2c3e50;
        color: white;
        transform: translateY(-3px);
        /* Removed box-shadow for performance */
    }

@media (max-width: 768px) {
    .cta-content h2[b-lg8jwhalyf] {
        font-size: 2rem;
    }

    .cta-content p[b-lg8jwhalyf] {
        font-size: 1.1rem;
    }

    .cta-buttons[b-lg8jwhalyf] {
        flex-direction: column;
        align-items: center;
    }

    .btn[b-lg8jwhalyf] {
        width: 100%;
        max-width: 300px;
    }

    .cta-section[b-lg8jwhalyf] {
        padding: 60px 15px;
    }
}
/* _content/BehasAccessories/Components/Pages/ImageCarousel.razor.rz.scp.css */
.full-width-no-padding[b-zzxp2jttzg] {
    width: 100%;
    margin: 0;
    padding: 0;
}

.carousel-slide-item[b-zzxp2jttzg] {
    background: #F5F5F5;
    padding: 2rem 0;
    contain: layout paint;
    will-change: transform, opacity;
}

.carousel-inner .carousel-item > .carousel-slide-item > .carousel-container[b-zzxp2jttzg] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    max-width: 1200px;
    margin: auto;
    will-change: transform, opacity;
}

@media (min-width: 768px) {
    .carousel-inner .carousel-item > .carousel-slide-item > .carousel-container[b-zzxp2jttzg] {
        flex-direction: row;
    }
}

.carousel-text[b-zzxp2jttzg] {
    text-align: center;
    padding: 1rem;
}

@media (min-width: 768px) {
    .carousel-text[b-zzxp2jttzg] {
        text-align: left;
    }
}

.carousel-img[b-zzxp2jttzg] {
    max-height: 400px;
    width: auto;
    height: auto;
    max-width: 100%;
    will-change: transform, opacity;
}

/* Typography Styling */
.carousel-text h2[b-zzxp2jttzg] {
    font-size: 2rem;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    color: #1B365D;
    margin-bottom: 0.2rem;
}

.carousel-text h4[b-zzxp2jttzg] {
    font-size: 1.25rem;
    font-weight: 300;
    font-family: 'Roboto', sans-serif;
    color: #1B365D;
    margin-bottom: 0.4rem;
}

.carousel-text h1[b-zzxp2jttzg] {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -1px;
    font-family: 'Roboto', sans-serif;
    color: #1B365D;
    margin: 0.3rem 0;
}

/* Mobile adjustments */
@media (max-width: 767.98px) {
    .carousel-text h1[b-zzxp2jttzg] {
        font-size: 2rem;
        margin: 0.25rem 0;
    }

    .carousel-text h2[b-zzxp2jttzg] {
        font-size: 1.5rem;
        margin-bottom: 0.15rem;
    }

    .carousel-text h4[b-zzxp2jttzg] {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
}
@keyframes fade-in-up-b-zzxp2jttzg {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-item .carousel-container[b-zzxp2jttzg] {
    opacity: 0;
    transform: translateY(30px);
    transition: none;
}

.carousel-item.active .carousel-container[b-zzxp2jttzg] {
    animation: fade-in-up-b-zzxp2jttzg 0.8s ease-in-out both;
}
/* _content/BehasAccessories/Components/Pages/ImageUploader.razor.rz.scp.css */
/* Headings and messages */
.custom-heading[b-2m8soug9qr] {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
}

.custom-subheading[b-2m8soug9qr] {
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #444;
    text-align: center;
}

.custom-status-message[b-2m8soug9qr] {
    text-align: center;
    color: #007bff;
    font-weight: 500;
    margin-top: 1rem;
}

.custom-no-images-message[b-2m8soug9qr] {
    text-align: center;
    color: #888;
    margin-top: 2rem;
    font-style: italic;
}

/* File input */
.custom-file-input[b-2m8soug9qr] {
    display: block;
    margin: 1rem auto 2rem auto;
    padding: 0.5rem;
    max-width: 300px;
    border: 2px dashed #ccc;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    background-color: #f8f9fa;
    transition: border-color 0.3s ease;
}

    .custom-file-input:hover[b-2m8soug9qr] {
        border-color: #007bff;
    }

/* Image gallery layout */
.custom-image-row[b-2m8soug9qr] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.custom-image-col[b-2m8soug9qr] {
    flex: 1 1 200px;
    max-width: 250px;
}

/* Card styling */
.custom-card[b-2m8soug9qr] {
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
   
}

    .custom-card:hover[b-2m8soug9qr] {
        transform: scale(1.02);
    }

/* Card image */
.custom-card-img[b-2m8soug9qr] {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* Card body */
.custom-card-body[b-2m8soug9qr] {
    padding: 0.75rem;

}

/* Delete button */
.custom-delete-button[b-2m8soug9qr] {
    background-color: #dc3545;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 5px;
    transition: background-color 0.2s ease;
}

    .custom-delete-button:hover[b-2m8soug9qr] {
        background-color: #c82333;
        cursor: pointer;
    }
.toggle-button-container[b-2m8soug9qr] {
    display: flex;
    justify-content: center; /* centers horizontally */
    margin: 1rem 0; /* spacing above and below */
}

    .toggle-button-container button[b-2m8soug9qr] {
        background-color: #d39972;
        color: white;
        border: none;
        padding: 12px 24px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .toggle-button-container button:hover[b-2m8soug9qr] {
            background-color: #d39972;
        }

        .toggle-button-container button:active[b-2m8soug9qr] {
            transform: scale(0.97); /* slight press effect */
        }

/* Responsive adjustments */
@media (max-width: 576px) {
    .custom-card-img[b-2m8soug9qr] {
        height: 150px;
    }

    .custom-heading[b-2m8soug9qr] {
        font-size: 1.5rem;
    }

    .custom-subheading[b-2m8soug9qr] {
        font-size: 1.1rem;
    }

    .custom-delete-button[b-2m8soug9qr] {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .custom-file-input[b-2m8soug9qr] {
        max-width: 90%;
    }
}

/* _content/BehasAccessories/Components/Pages/MainLogin.razor.rz.scp.css */
/* Login Container */
.login-container[b-20en02cpn6] {
    display: flex;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #F5F5F5;
    padding: 1rem;
    overflow: hidden;
}

/* Login Form Section */
.login-form-section[b-20en02cpn6] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

/* Login Card */
.login-card[b-20en02cpn6] {
    background: rgba(192, 192, 192, 0.3);
    border-radius: 24px;
    padding: 2rem 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: fadeInUp-b-20en02cpn6 0.8s ease-out;
}

    .login-card:hover[b-20en02cpn6] {
        transform: translateY(-8px);
        box-shadow: 0 32px 64px rgba(0, 0, 0, 0.15), 0 16px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }

@media (max-width: 768px) {
    .login-card:hover[b-20en02cpn6] {
        transform: none;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }
}

/* Title Styling */
.login-card h1[b-20en02cpn6] {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    margin-top: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    position: relative;
}

    .login-card h1[b-20en02cpn6]::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #667eea, #764ba2);
        border-radius: 2px;
        animation: pulse-b-20en02cpn6 2s ease-in-out infinite;
    }

@keyframes pulse-b-20en02cpn6 {
    0%, 100% {
        opacity: 1;
        width: 60px;
    }

    50% {
        opacity: 0.7;
        width: 80px;
    }
}

/* Tagline */
.tagline[b-20en02cpn6] {
    color: #6b7280;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
    opacity: 0.8;
}

/* Lottie Animation Container */
#lottie-animation[b-20en02cpn6] {
    width: 200px !important;
    height: 200px !important;
    margin: 0.5rem auto 1rem auto !important;
}

/* Google Sign-in Button */
.google-signin-btn[b-20en02cpn6] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 24px;
    background: rgba(192, 192, 192, 0.3);
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

    .google-signin-btn[b-20en02cpn6]::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transition: left 0.5s;
    }

    .google-signin-btn:hover[b-20en02cpn6]::before {
        left: 100%;
    }

    .google-signin-btn:hover[b-20en02cpn6] {
        background: pink;
        color: white;
        border-color: pink;
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(255, 105, 180, 0.3), 0 6px 12px rgba(255, 105, 180, 0.2);
    }

    .google-signin-btn:active[b-20en02cpn6] {
        transform: translateY(0);
        box-shadow: 0 4px 8px rgba(255, 105, 180, 0.3), 0 2px 4px rgba(255, 105, 180, 0.2);
    }

    .google-signin-btn:focus[b-20en02cpn6] {
        outline: none;
        box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.3), 0 12px 24px rgba(255, 105, 180, 0.2);
    }

/* Google Logo */
.google-logo[b-20en02cpn6] {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.google-signin-btn:hover .google-logo[b-20en02cpn6] {
    filter: brightness(0) invert(1);
    transform: rotate(360deg);
}

/* Button Text */
.texts[b-20en02cpn6] {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

@keyframes fadeInUp-b-20en02cpn6 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-container[b-20en02cpn6] {
        flex-direction: column;
        padding: 0;
        min-height: 100vh;
        max-height: 100vh;
        align-items: stretch;
        justify-content: stretch;
        overflow: hidden;
    }

    .login-form-section[b-20en02cpn6] {
        padding: 0;
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: stretch;
        overflow: hidden;
    }

    .login-card[b-20en02cpn6] {
        padding: 1.5rem 1rem;
        margin: 0;
        height: 100vh;
        max-height: 100vh;
        width: 100%;
        box-sizing: border-box;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        overflow: hidden;
    }

        .login-card h1[b-20en02cpn6] {
            font-size: 1.8rem;
        }

    .tagline[b-20en02cpn6] {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    #lottie-animation[b-20en02cpn6] {
        width: 150px !important;
        height: 150px !important;
        margin: 0.3rem auto 0.8rem auto !important;
    }
}

@media (max-width: 480px) {
    .login-container[b-20en02cpn6] {
        padding: 0;
        max-height: 100vh;
        overflow: hidden;
    }

    .login-form-section[b-20en02cpn6] {
        overflow: hidden;
    }

    .login-card[b-20en02cpn6] {
        padding: 1.2rem 0.8rem;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        overflow: hidden;
    }

        .login-card h1[b-20en02cpn6] {
            font-size: 1.6rem;
        }

    .google-signin-btn[b-20en02cpn6] {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    #lottie-animation[b-20en02cpn6] {
        width: 120px !important;
        height: 120px !important;
    }
}
/* _content/BehasAccessories/Components/Pages/Normal.razor.rz.scp.css */
/* === Admin Panel Layout === */

.admin-panel-wrapper[b-pa5vw9bi6m] {
    padding: 2rem;
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff5f8;
    border-radius: 10px;
}

/* === Panel Title === */
.admin-panel-title[b-pa5vw9bi6m] {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: bold;
    color: #c0392b;
}

/* === Admin Setup === */
.admin-setup-card[b-pa5vw9bi6m] {
    background: #fff9f9;
    border: 1px solid #ffd6d6;
    padding: 1.5rem;
    border-radius: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.admin-setup-title[b-pa5vw9bi6m] {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.admin-setup-label[b-pa5vw9bi6m] {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.admin-setup-input[b-pa5vw9bi6m] {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.admin-setup-button[b-pa5vw9bi6m] {
    width: 100%;
    background-color: #e91e63;
    color: white;
    border: none;
    padding: 0.6rem;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

    .admin-setup-button:hover[b-pa5vw9bi6m] {
        background-color: #d81b60;
    }

.admin-setup-error[b-pa5vw9bi6m] {
    color: #d32f2f;
}

.admin-setup-success[b-pa5vw9bi6m] {
    color: #388e3c;
}

/* === Login Section === */
.admin-login-card[b-pa5vw9bi6m] {
    background: #fef7f8;
    border: 1px solid #ffd6d6;
    padding: 1.5rem;
    border-radius: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.admin-login-label[b-pa5vw9bi6m],
.admin-reset-label[b-pa5vw9bi6m] {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.admin-login-input[b-pa5vw9bi6m],
.admin-reset-input[b-pa5vw9bi6m] {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.admin-login-button[b-pa5vw9bi6m],
.admin-reset-button[b-pa5vw9bi6m],
.admin-change-password-button[b-pa5vw9bi6m] {
    width: 100%;
    background-color: #9c27b0;
    color: white;
    border: none;
    padding: 0.6rem;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

    .admin-login-button:hover[b-pa5vw9bi6m],
    .admin-reset-button:hover[b-pa5vw9bi6m],
    .admin-change-password-button:hover[b-pa5vw9bi6m] {
        background-color: #7b1fa2;
    }

.admin-login-reset-link[b-pa5vw9bi6m] {
    display: block;
    background: none;
    border: none;
    color: #3f51b5;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    margin-top: 0.5rem;
}

.admin-login-error[b-pa5vw9bi6m],
.admin-reset-error[b-pa5vw9bi6m] {
    color: #d32f2f;
}

.admin-password-success[b-pa5vw9bi6m] {
    color: #388e3c;
}

.admin-login-divider[b-pa5vw9bi6m] {
    margin: 1rem 0;
}

/* === User Management Table === */
.admin-user-table-section[b-pa5vw9bi6m] {
    margin-top: 2rem;
    background-color: #fff0f5;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.admin-user-table-title[b-pa5vw9bi6m] {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.admin-user-table[b-pa5vw9bi6m] {
    width: 100%;
    border-collapse: collapse;
}

.admin-user-table-head[b-pa5vw9bi6m] {
    background-color: #ffe0e0;
}

.user-col-name[b-pa5vw9bi6m],
.user-col-email[b-pa5vw9bi6m],
.user-col-role[b-pa5vw9bi6m],
.user-col-action[b-pa5vw9bi6m] {
    padding: 0.6rem;
    border: 1px solid #ccc;
    font-weight: bold;
}

.admin-user-table-body .admin-user-table-row:nth-child(even)[b-pa5vw9bi6m] {
    background-color: #fff7f7;
}

.user-name[b-pa5vw9bi6m],
.user-email[b-pa5vw9bi6m],
.user-role[b-pa5vw9bi6m],
.user-action[b-pa5vw9bi6m] {
    padding: 0.6rem;
    border: 1px solid #eee;
}

.role-badge[b-pa5vw9bi6m] {
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.role-admin[b-pa5vw9bi6m] {
    background-color: #2e7d32;
}

.role-user[b-pa5vw9bi6m] {
    background-color: #1976d2;
}

.user-action-btn[b-pa5vw9bi6m] {
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
}

    .user-action-btn.promote[b-pa5vw9bi6m] {
        background-color: #4caf50;
        color: white;
    }

        .user-action-btn.promote:hover[b-pa5vw9bi6m] {
            background-color: #388e3c;
        }

    .user-action-btn.demote[b-pa5vw9bi6m] {
        background-color: #e53935;
        color: white;
    }

        .user-action-btn.demote:hover[b-pa5vw9bi6m] {
            background-color: #c62828;
        }
/* _content/BehasAccessories/Components/Pages/Reviews.razor.rz.scp.css */
/* === PAGE & REVIEW STYLES === */

.reviews-container[b-ni635vd3l7] {
    min-height: 100vh;
    background: #F5F5F5;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.reviews-content[b-ni635vd3l7] {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title[b-ni635vd3l7] {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #6C9BD1;
}

.center-toggle-btn[b-ni635vd3l7] {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.toggle-btn[b-ni635vd3l7] {
    background: #87CEEB;
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s ease;
    margin-bottom: 1rem;
}

    .toggle-btn:hover[b-ni635vd3l7] {
        background: #6C9BD1;
    }

.reviews-grid[b-ni635vd3l7] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-card[b-ni635vd3l7] {
    background: linear-gradient(135deg, #fce7f3 0%, #e0e7ff 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 1.5rem;
    transition: transform 0.2s ease;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

    .review-card:hover[b-ni635vd3l7] {
        transform: translateY(-3px);
        box-shadow: none;
    }

.card-header[b-ni635vd3l7],
.card-body[b-ni635vd3l7],
.card-footer[b-ni635vd3l7] {
    background: transparent;
}

.card-header[b-ni635vd3l7] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-name[b-ni635vd3l7] {
    color: #111;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.review-rating[b-ni635vd3l7] {
    display: flex;
    gap: 0.2rem;
}

.card-body[b-ni635vd3l7] {
    margin-bottom: 1.5rem;
}

.review-comment[b-ni635vd3l7] {
    color: #111;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.card-footer[b-ni635vd3l7] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.review-date[b-ni635vd3l7] {
    color: #333;
    font-size: 0.9rem;
}

.action-buttons[b-ni635vd3l7] {
    display: flex;
    gap: 0.5rem;
}

.action-btn[b-ni635vd3l7] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    color: #000;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: background 0.2s ease;
}

    .action-btn:hover[b-ni635vd3l7] {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.25);
    }

.top-badge[b-ni635vd3l7] {
    position: absolute;
    top: -10px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.no-reviews[b-ni635vd3l7] {
    text-align: center;
    padding: 3rem;
    color: #111;
}

.no-reviews-content[b-ni635vd3l7] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.no-reviews-icon[b-ni635vd3l7] {
    font-size: 3rem;
    color: #444;
}

.no-reviews-text[b-ni635vd3l7] {
    font-size: 1.2rem;
    margin: 0;
    color: #222;
}

/* === RESPONSIVE === */

/* _content/BehasAccessories/Components/Pages/Shop/Index.razor.rz.scp.css */
.shop-container[b-g1tdu6zjan] {
    padding: 2rem;
    font-family: 'Inter', sans-serif;
    background-color: #F5F5F5;
}

.shop-header[b-g1tdu6zjan] {
    text-align: center;
    margin-bottom: 2rem;
}

.shop-title[b-g1tdu6zjan] {
    font-size: 2rem;
    font-weight: 700;
    color: #6C9BD1;
}

.shop-divider[b-g1tdu6zjan] {
    width: 60px;
    height: 4px;
    background-color: #6C9BD1;
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

.shop-loading[b-g1tdu6zjan] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.shop-spinner[b-g1tdu6zjan] {
    width: 40px;
    height: 40px;
    border: 4px solid #ccc;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin-b-g1tdu6zjan 1s linear infinite;
}

@keyframes spin-b-g1tdu6zjan {
    to {
        transform: rotate(360deg);
    }
}

.shop-category-selector[b-g1tdu6zjan] {
    max-width: 300px;
    margin: 0 auto 2rem;
}

.shop-select[b-g1tdu6zjan] {
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 4px;
    border: 1px solid #6C9BD1;
    background-color: #FAFAFA;
}
/* _content/BehasAccessories/Components/Pages/Shop/ProductDetail.razor.rz.scp.css */
.product-detail-container[b-kyzbczzw3f] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.loading-wrapper[b-kyzbczzw3f] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.loading-spinner[b-kyzbczzw3f] {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #6366f1;
    border-radius: 50%;
    animation: spin-b-kyzbczzw3f 1s linear infinite;
}

@keyframes spin-b-kyzbczzw3f {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.visually-hidden[b-kyzbczzw3f] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.product-header[b-kyzbczzw3f] {
    display: none;
}

.product-detail-card[b-kyzbczzw3f] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-top: 20px;
}

.product-grid[b-kyzbczzw3f] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

/* Image Section */
.product-image-section[b-kyzbczzw3f] {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.image-slider-container[b-kyzbczzw3f] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel[b-kyzbczzw3f],
.carousel-inner[b-kyzbczzw3f],
.carousel-item[b-kyzbczzw3f] {
    width: 100%;
    height: 100%;
}

    .carousel-item img[b-kyzbczzw3f] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 0;
    }

.carousel-control-prev[b-kyzbczzw3f],
.carousel-control-next[b-kyzbczzw3f] {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.carousel-control-prev[b-kyzbczzw3f] {
    left: 10px;
}

.carousel-control-next[b-kyzbczzw3f] {
    right: 10px;
}

.no-image-placeholder[b-kyzbczzw3f] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    color: #6c757d;
}

.no-image-icon[b-kyzbczzw3f]::before {
    content: "📷";
    font-size: 48px;
}

.no-image-text[b-kyzbczzw3f] {
    margin-top: 16px;
    font-size: 16px;
}

/* Product Info Section */
.product-info-section[b-kyzbczzw3f] {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-details[b-kyzbczzw3f] {
    max-width: 500px;
}

.product-name[b-kyzbczzw3f] {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.product-description[b-kyzbczzw3f] {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.price-section[b-kyzbczzw3f] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.product-price[b-kyzbczzw3f] {
    font-size: 24px;
    font-weight: 600;
    color: #6366f1;
}

.stock-badge[b-kyzbczzw3f] {
    background-color: #22c55e;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.quantity-section[b-kyzbczzw3f] {
    margin-bottom: 24px;
}

.quantity-label[b-kyzbczzw3f] {
    display: block;
    font-size: 14px;
    color: #374151;
    margin-bottom: 8px;
    font-weight: 500;
}

.quantity-input-group[b-kyzbczzw3f] {
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    width: fit-content;
    background: white;
}

.quantity-btn[b-kyzbczzw3f] {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    font-size: 18px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .quantity-btn:hover[b-kyzbczzw3f] {
        background-color: #f9fafb;
        color: #374151;
    }

.quantity-input[b-kyzbczzw3f] {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    background: transparent;
}

    .quantity-input[b-kyzbczzw3f]::-webkit-outer-spin-button,
    .quantity-input[b-kyzbczzw3f]::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .quantity-input[type=number][b-kyzbczzw3f] {
        -moz-appearance: textfield;
    }

.add-to-cart-button[b-kyzbczzw3f] {
    width: 100%;
    max-width: 400px;
    height: 48px;
    background: linear-gradient(to right, #4e54c8, #8f94fb);
    color: white;
    border: none;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

    .add-to-cart-button:hover[b-kyzbczzw3f] {
        transform: translateY(-1px);
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    }

.cart-icon[b-kyzbczzw3f]::before {
  
    font-size: 16px;
}

/* Modal Styles */
.custom-modal-overlay[b-kyzbczzw3f] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.custom-modal[b-kyzbczzw3f] {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header[b-kyzbczzw3f] {
    padding: 20px 20px 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title[b-kyzbczzw3f] {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.modal-close[b-kyzbczzw3f] {
    background: none;
    border: none;
    font-size: 24px;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-body[b-kyzbczzw3f] {
    padding: 20px;
}

    .modal-body p[b-kyzbczzw3f] {
        margin: 0;
        color: #6b7280;
        line-height: 1.5;
    }

.modal-footer[b-kyzbczzw3f] {
    padding: 0 20px 20px 20px;
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.modal-btn[b-kyzbczzw3f] {
    height: 44px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.confirm-order[b-kyzbczzw3f] {
    background: #6366f1;
    color: white;
}

    .confirm-order:hover[b-kyzbczzw3f] {
        background: #5855eb;
    }

.continue-shopping[b-kyzbczzw3f] {
    background: #f3f4f6;
    color: #374151;
}

    .continue-shopping:hover[b-kyzbczzw3f] {
        background: #e5e7eb;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .product-grid[b-kyzbczzw3f] {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .product-name[b-kyzbczzw3f] {
        font-size: 24px;
    }

    .product-price[b-kyzbczzw3f] {
        font-size: 20px;
    }

    .modal-footer[b-kyzbczzw3f] {
        flex-direction: column;
    }
}
/* _content/BehasAccessories/Components/Pages/Shop/ProductList.razor.rz.scp.css */
/* Pagination */
.pagination-container[b-n76jyl0paj] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
    padding-bottom: 3rem; /* ✅ ensures space before footer without breaking layout */
}

.pagination-button[b-n76jyl0paj] {
    padding: 0.5rem 1rem;
    background-color: #ff9d9d;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .pagination-button:disabled[b-n76jyl0paj] {
        background-color: #e0e0e0;
        cursor: not-allowed;
    }

.pagination-page-info[b-n76jyl0paj] {
    font-weight: bold;
    font-size: 1rem;
}

/* Loading States */
.product-loading-container[b-n76jyl0paj] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.product-spinner[b-n76jyl0paj] {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #ff9d9d;
    border-radius: 50%;
    animation: spin-b-n76jyl0paj 1s linear infinite;
}

.product-empty-container[b-n76jyl0paj] {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.product-empty-text[b-n76jyl0paj] {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
}

/* Grid Layout */
.product-grid[b-n76jyl0paj] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Card Wrapper */
.product-card-wrapper[b-n76jyl0paj] {
    display: flex;
    justify-content: center;
}

/* Product Card */
.product-card[b-n76jyl0paj] {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

    .product-card:hover[b-n76jyl0paj] {
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
        transform: translateY(-4px);
    }

/* Image */
.product-image-container[b-n76jyl0paj] {
    width: 100%;
    height: 200px;
    background-color: #fff0f0;
    overflow: hidden;
}

.product-image[b-n76jyl0paj] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info */
.product-info[b-n76jyl0paj] {
    padding: 1rem;
}

.product-title[b-n76jyl0paj] {
    font-size: 1.05rem;
    font-weight: 600;
    color: #222;
    margin: 0 0 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-meta[b-n76jyl0paj] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Price & Badge */
.product-price[b-n76jyl0paj] {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff7a7a;
}

.product-badge[b-n76jyl0paj] {
    background-color: #ff9d9d;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 10px;
    text-transform: uppercase;
}

/* Product Actions */
.product-actions[b-n76jyl0paj] {
    padding: 0.75rem 1rem;
    border-top: 1px solid #eee;
    background-color: #fafafa;
}

.product-button[b-n76jyl0paj] {
    width: 100%;
    background-color: #ff9d9d;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .product-button:hover[b-n76jyl0paj] {
        background-color: #ff7a7a;
    }

    .product-button:active[b-n76jyl0paj] {
        background-color: #ff6666;
    }

.product-button-label[b-n76jyl0paj] {
    display: block;
}

/* Animations */
@keyframes spin-b-n76jyl0paj {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .product-image-container[b-n76jyl0paj] {
        height: 180px;
    }

    .product-title[b-n76jyl0paj] {
        font-size: 1rem;
    }

    .product-price[b-n76jyl0paj] {
        font-size: 1rem;
    }
}
/* _content/BehasAccessories/Components/Pages/TestimonialSection.razor.rz.scp.css */
/* Testimonials Section */
.custom-testimonials-section[b-hy7uk1q4pj] {
    background: linear-gradient(135deg, #fce7f3 0%, #e0e7ff 100%);
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 80vh;
}

.custom-testimonials-container[b-hy7uk1q4pj] {
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    max-width: 1200px;
}

/* Header Styling */
.custom-header-row[b-hy7uk1q4pj] {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.custom-header-text[b-hy7uk1q4pj] {
    flex: 1 1 auto;
}

.custom-header-title[b-hy7uk1q4pj] {
    margin: 0 0 1rem 0;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    text-align: left;
}

.custom-cta-button[b-hy7uk1q4pj] {
    flex: 0 0 auto;
    text-align: right;
}

.custom-cta-link[b-hy7uk1q4pj] {
    display: inline-block;
    background: rgba(99, 102, 241, 0.9);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

    .custom-cta-link:hover[b-hy7uk1q4pj] {
        background: rgba(99, 102, 241, 1);
        transform: translateY(-2px);
    }

/* Testimonials Grid */
.custom-testimonials-content[b-hy7uk1q4pj] {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
}

.custom-grid[b-hy7uk1q4pj] {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    width: 100%;
}

.custom-grid-item[b-hy7uk1q4pj] {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 280px;
}

/* Review Cards */
.custom-review-card[b-hy7uk1q4pj] {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding: 2rem;
    height: auto; /* auto height instead of fixed min-height */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.25);
    transition: background 0.3s ease, transform 0.3s ease;
}

    .custom-review-card:hover[b-hy7uk1q4pj] {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.3);
    }

/* Card Glow Effect */
.custom-card-glow[b-hy7uk1q4pj] {
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

/* User Profile */
.custom-user-profile[b-hy7uk1q4pj] {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 1.5rem;
}

.custom-profile-initials[b-hy7uk1q4pj] {
    z-index: 2;
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8b5cf6, #06b6d4);
    position: relative;
}

.custom-profile-ring[b-hy7uk1q4pj] {
    position: absolute;
    width: 70px;
    height: 70px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
}

/* Rating Stars */
.custom-rating[b-hy7uk1q4pj] {
    text-align: center;
    margin-bottom: 1rem;
}

    .custom-rating i[b-hy7uk1q4pj] {
        font-size: 1.1rem;
        margin: 0 0.1rem;
        color: #fbbf24;
    }

/* Review Comment */
.custom-review-comment[b-hy7uk1q4pj] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
    font-style: italic;
    text-align: center;
}

/* Customer Info */
.custom-customer-info[b-hy7uk1q4pj] {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.custom-reviewer-name[b-hy7uk1q4pj] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
}

/* Responsive Design */
@media (max-width: 992px) {
    .custom-grid-item[b-hy7uk1q4pj] {
        flex: 1 1 calc(50% - 24px);
    }
}

@media (max-width: 768px) {
    .custom-testimonials-section[b-hy7uk1q4pj] {
        padding: 2rem 2rem;
        min-height: auto;
    }

    .custom-header-title[b-hy7uk1q4pj] {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    .custom-cta-button[b-hy7uk1q4pj] {
        justify-content: center;
        text-align: center;
        margin-top: 1rem;
        flex: 1 1 100%;
    }

    .custom-review-card[b-hy7uk1q4pj] {
        padding: 1.5rem;
    }

    .custom-header-row[b-hy7uk1q4pj] {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .custom-grid-item[b-hy7uk1q4pj] {
        flex: 1 1 100%;
    }

    .custom-header-title[b-hy7uk1q4pj] {
        font-size: 1.8rem;
    }

    .custom-review-card[b-hy7uk1q4pj] {
        padding: 1.25rem;
    }

    .custom-review-comment[b-hy7uk1q4pj] {
        font-size: 0.95rem;
    }
}
/* _content/BehasAccessories/Components/Pages/TrendingItems.razor.rz.scp.css */
/* Container and Header */
.trending-section[b-bpy23katse] {
    padding: 2rem 1rem;
    background: #F5F5F5; /* Updated background */
    font-family: 'Segoe UI', sans-serif;
}

.trending-header[b-bpy23katse] {
    text-align: center;
    margin-bottom: 2rem;
}

.trending-title[b-bpy23katse] {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

.trending-divider[b-bpy23katse] {
    width: 60px;
    height: 4px;
    background-color: #ff9d9d;
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

/* Loading and Empty State */
.trending-loading[b-bpy23katse],
.trending-empty[b-bpy23katse] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    text-align: center;
    color: #666;
}

.loading-spinner[b-bpy23katse] {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #ff9d9d;
    border-radius: 50%;
    animation: spin-b-bpy23katse 1s linear infinite;
}

.loading-text[b-bpy23katse],
.empty-message[b-bpy23katse] {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Product Grid */
.trending-grid[b-bpy23katse] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Product Card */
.product-card-container[b-bpy23katse] {
    display: flex;
    justify-content: center;
}

.product-card[b-bpy23katse] {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

    .product-card:hover[b-bpy23katse] {
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
        transform: translateY(-4px);
    }

/* Image */
.product-image-wrapper[b-bpy23katse] {
    width: 100%;
    height: 200px;
    background-color: #fff0f0;
    overflow: hidden;
}

.product-image[b-bpy23katse] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Body Content */
.product-card-body[b-bpy23katse] {
    padding: 1rem;
}

.product-name[b-bpy23katse] {
    font-size: 1.05rem;
    font-weight: 600;
    color: #222;
    margin: 0 0 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-description[b-bpy23katse] {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* Footer */
.product-card-footer[b-bpy23katse] {
    padding: 0.75rem 1rem;
    border-top: 1px solid #eee;
    background-color: #fafafa;
}

.product-meta[b-bpy23katse] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price[b-bpy23katse] {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff7a7a;
}

.product-badge[b-bpy23katse] {
    background-color: #ff9d9d;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 10px;
    text-transform: uppercase;
}

/* Utility */
.visually-hidden[b-bpy23katse] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@keyframes spin-b-bpy23katse {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .product-image-wrapper[b-bpy23katse] {
        height: 180px;
    }

    .product-name[b-bpy23katse] {
        font-size: 1rem;
    }

    .product-price[b-bpy23katse] {
        font-size: 1rem;
    }
}
/* _content/BehasAccessories/Components/Pages/UserOrders.razor.rz.scp.css */
/* ====== Layout & Table & Grid Styles ====== */

.myorders-container[b-ux6b9jksfb] {
    padding: 2rem 1rem;
    width: 100%;
    max-width: none; /* remove fixed width */
    margin: 0; /* remove auto centering */
    background-color: #F5F5F5;
    min-height: 100vh;
    font-family: 'Segoe UI', sans-serif;
    box-sizing: border-box;
}


.myorders-title[b-ux6b9jksfb] {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #1B365D;
}

.myorders-section-title[b-ux6b9jksfb] {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
    font-weight: 600;
    color: #444;
}

.myorders-pending-count[b-ux6b9jksfb] {
    background-color: crimson;
    color: white;
    font-size: 0.9rem;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    margin-left: 0.6rem;
}

.myorders-info-text[b-ux6b9jksfb] {
    margin-bottom: 1rem;
    color: #666;
}

/* Grid for order cards */
.myorders-grid[b-ux6b9jksfb] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.myorders-card[b-ux6b9jksfb] {
    flex: 1 1 calc(50% - 1rem);
    min-width: 260px;
    background-color: #f9f9f9;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}

    .myorders-card:hover[b-ux6b9jksfb] {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

.myorders-product-name[b-ux6b9jksfb] {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.myorders-product-price[b-ux6b9jksfb],
.myorders-total[b-ux6b9jksfb] {
    font-size: 0.95rem;
    color: #555;
}

.myorders-total[b-ux6b9jksfb] {
    font-weight: 500;
    margin-top: 0.25rem;
}

/* Table styles */
.myorders-table-container[b-ux6b9jksfb] {
    overflow-x: auto;
    margin-top: 1rem;
}

.myorders-table[b-ux6b9jksfb] {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

    .myorders-table th[b-ux6b9jksfb],
    .myorders-table td[b-ux6b9jksfb] {
        padding: 0.9rem 1rem;
        text-align: left;
        border-bottom: 1px solid #e5e5e5;
    }

    .myorders-table th[b-ux6b9jksfb] {
        background-color: #f0f2f5;
        font-weight: 600;
        color: #333;
    }

    .myorders-table tr:last-child td[b-ux6b9jksfb] {
        border-bottom: none;
    }

.myorders-total-highlight[b-ux6b9jksfb] {
    font-weight: 600;
    color: #007bff;
}

/* Fallback sections */
.myorders-loading[b-ux6b9jksfb],
.myorders-no-orders[b-ux6b9jksfb] {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1rem;
    color: #666;
}

/* Utility */
.myorders-margin-top-lg[b-ux6b9jksfb] {
    margin-top: 2rem;
}

.myorders-text-center[b-ux6b9jksfb] {
    text-align: center;
}
/* _content/BehasAccessories/Components/Pages/Why.razor.rz.scp.css */
/* ===============================
   WHY CHOOSE US SECTION
================================= */
.why-choose-section[b-b6ud10aaot] {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Section Heading */
.section-header[b-b6ud10aaot] {
    text-align: center;
    margin-bottom: 40px;
}

.section-title[b-b6ud10aaot] {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1f2937;
}

/* Content Layout */
.content-wrapper[b-b6ud10aaot] {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Section */
.left-section[b-b6ud10aaot] {
    flex: 1;
}

.features-container[b-b6ud10aaot] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-card[b-b6ud10aaot] {
    background: #fff;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid transparent;
}

    .feature-card:hover[b-b6ud10aaot] {
        transform: translateY(-4px);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    }

    .feature-card:nth-child(1)[b-b6ud10aaot] {
        border-left-color: #3b82f6;
    }
    /* Blue */
    .feature-card:nth-child(2)[b-b6ud10aaot] {
        border-left-color: #8b5cf6;
    }
    /* Purple */
    .feature-card:nth-child(3)[b-b6ud10aaot] {
        border-left-color: #06d6a0;
    }
/* Green */

.feature-title[b-b6ud10aaot] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.feature-description[b-b6ud10aaot] {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Right Section */
.right-section[b-b6ud10aaot] {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-container[b-b6ud10aaot] {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.main-image[b-b6ud10aaot] {
    width: 100%;
    height: auto;
    max-height: 450px; /* 🔑 prevents tall image from dominating */
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}

/* Overlay */
.image-overlay[b-b6ud10aaot] {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 14px;
    border-radius: 10px;
    backdrop-filter: blur(8px);
    font-size: 13px;
    color: #374151;
    font-weight: 500;
}

/* ===============================
   Responsive
================================= */
@media (max-width: 900px) {
    .content-wrapper[b-b6ud10aaot] {
        flex-direction: column-reverse;
        gap: 30px;
        align-items: center;
    }

    .left-section[b-b6ud10aaot],
    .right-section[b-b6ud10aaot] {
        width: 100%;
    }

    .main-image[b-b6ud10aaot] {
        max-height: 360px; /* smaller on mobile */
    }

    .section-title[b-b6ud10aaot] {
        font-size: 1.8rem;
    }
}
