@import '_content/Microsoft.Fast.Components.FluentUI/Microsoft.Fast.Components.FluentUI.bundle.scp.css';

/* /Components/Combo.razor.rz.scp.css */
.cusCombo[b-x2ijulhn1o] {
    margin-top: auto;
    margin-bottom: auto;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
    align-items: baseline;
    max-width: 100%;
}

.outterClickable[b-x2ijulhn1o] {
    -webkit-user-select: none; /*Safari*/
    -ms-user-select: none; /*IE 10 and IE 11*/
    user-select: none; /*Standard syntax*/
}

.selected[b-x2ijulhn1o] {
    display: flex;
    color: black;
    padding: 4px 8px;
    /*color: white;*/
    background-color: none;
    border-radius: 8px;
    /*    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;*/
    cursor: pointer;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    box-sizing: border-box;
}

/* Ensure selected text truncates nicely */
.selected .title-text[b-x2ijulhn1o] {
    flex: 1 1 auto;
    min-width: 0; /* allow flex child to shrink */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.selected:hover[b-x2ijulhn1o] {
    /*background-color: white;*/
    text-shadow: 2px 2px 5px black;
    transition: background-color 0.25s linear;
}

.selected:active[b-x2ijulhn1o] {
    background-color: lightgray;
    text-shadow: 2px 2px 5px black;
}

.selected label[b-x2ijulhn1o] {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.icon[b-x2ijulhn1o] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: none;
    border-radius: 8px;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.itemList[b-x2ijulhn1o] {
    display: none;
}

.itemListPressed[b-x2ijulhn1o] {
    position: absolute;
    /*background-color: #1b6ee2;*/
    border-radius: 5px;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    animation: droping-b-x2ijulhn1o 0.25s linear forwards;
    max-height: 50vh; /* responsive cap */
    overflow-y: auto; /* Add scroll if content overflows */
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    padding: 4px 0;
    box-sizing: border-box;
    width:fit-content;
}

.item[b-x2ijulhn1o] {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    padding: 5px;
    color: white;
    background-color: none;
    border: 2px solid #00000000;
    border-radius: 8px;
    margin: 8px;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.item:hover[b-x2ijulhn1o] {
    background-color: none;
    border: 2px solid white;
    text-shadow: 2px 2px 5px black;
    transition: border 0.25s linear, text-shadow 0.25s linear;
}

.grouphead[b-x2ijulhn1o] {
    /*display : flex;*/
}
/*    .grouphead:hover .subitemlist {
        display: block;
        transition: display 0.25s linear;
        animation: droping 0.25s linear forwards;
    }*/

.keyitem[b-x2ijulhn1o] {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    padding: 5px;
    color: white;
    background-color: none;
    border: 2px solid #00000000;
    border-bottom: 2px solid white;
    border-radius: 8px;
    margin: 8px;
    font-weight: bold;
    -webkit-user-select: none; /*Safari*/
    -ms-user-select: none; /*IE 10 and IE 11*/
    user-select: none; /*Standard syntax*/
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.subitemlist[b-x2ijulhn1o] {
    /*display: none;*/
/*    position: absolute;
    left: 110px;
    bottom: 0px;*/
    background-color: #444444;
    border-radius: 5px;
    max-height: 300px; /* Adjust this value as needed */
    overflow-y: auto; /* Add scroll if content overflows */
}

.subitem[b-x2ijulhn1o] {
    border: 2px solid rgba(0,0,0,0);
    border-radius: 5px;
    margin: 8px;
    padding: 5px;
    -webkit-user-select: none; /*Safari*/
    -ms-user-select: none; /*IE 10 and IE 11*/
    user-select: none; /*Standard syntax*/
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.subitem:hover[b-x2ijulhn1o] {
    background-color: none;
    border: 2px solid white;
    text-shadow: 2px 2px 5px black;
    transition: border 0.25s linear, text-shadow 0.25s linear;
}

@keyframes droping-b-x2ijulhn1o {
    0% {
        opacity: 0;
        transform: translateY(-20%);
    }

    100% {
        opacity: 0.75;
        transform: translateY(0);
    }
}
/* /Components/Gallery.razor.rz.scp.css */
.gallery-container[b-yrhuuqkmq8] {
    overflow-x: auto;
    /* horizontal scrolling only */
    overflow-y: hidden;
    position: relative;
    width: 100%;
    padding: 2rem 1.25rem;
    background: none;
    scroll-snap-type: x mandatory;
    /* enable snap */
    -webkit-overflow-scrolling: touch;
    /* smooth iOS */
    touch-action: pan-x;
}

.gallery-track[b-yrhuuqkmq8] {
    display: flex;
    gap: 2rem;
    align-items: stretch;
    min-width: fit-content;
    /* so items don't shrink too small */
}

.gallery-item[b-yrhuuqkmq8] {
    flex: 0 0 clamp(180px, 22vw, 300px);
    /* responsive width */
    aspect-ratio: 3 / 4;
    /* keep proportion, replaces fixed height */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    scroll-snap-align: start;
    background: #f5f5f5;
}

.gallery-item:hover[b-yrhuuqkmq8] {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.gallery-item:focus-visible[b-yrhuuqkmq8] {
    outline: 3px solid #1a73e8;
    outline-offset: 2px;
    transform: translateY(-2px) scale(1.02);
}

.gallery-item img[b-yrhuuqkmq8] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.gallery-item:hover img[b-yrhuuqkmq8] {
    transform: scale(1.06);
}

.image-description[b-yrhuuqkmq8] {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.5rem .75rem .75rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 20%, transparent);
    color: #fff;
    font-size: clamp(1rem, 1.2vw + .8rem, 1.5rem);
    font-weight: 600;
    line-height: 1.15;
    display: flex;
    align-items: flex-end;
}


/* Thinner scroll bar (WebKit) */

.gallery-container[b-yrhuuqkmq8]::-webkit-scrollbar {
    height: 10px;
}

.gallery-container[b-yrhuuqkmq8]::-webkit-scrollbar-track {
    background: transparent;
}

.gallery-container[b-yrhuuqkmq8]::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 6px;
}

.gallery-container:hover[b-yrhuuqkmq8]::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.4);
}


/* Firefox scrollbar */

.gallery-container[b-yrhuuqkmq8] {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.35) transparent;
}


/* Medium screens: reduce gap to fit more */

@media (max-width: 1400px) {
    .gallery-track[b-yrhuuqkmq8] {
        gap: 1.5rem;
    }
}

@media (max-width: 1100px) {
    .gallery-track[b-yrhuuqkmq8] {
        gap: 1.25rem;
    }
}


/* Tablet */

@media (max-width: 992px) {
    .gallery-container[b-yrhuuqkmq8] {
        padding: 1.5rem 1rem;
    }
    .gallery-item[b-yrhuuqkmq8] {
        flex: 0 0 clamp(170px, 33vw, 260px);
    }
}


/* Mobile */

@media (max-width: 650px) {
    .gallery-container[b-yrhuuqkmq8] {
        padding: 1rem .75rem;
    }
    .gallery-track[b-yrhuuqkmq8] {
        gap: 1rem;
    }
    .gallery-item[b-yrhuuqkmq8] {
        flex: 0 0 clamp(160px, 65vw, 240px);
    }
    .image-description[b-yrhuuqkmq8] {
        font-size: clamp(.9rem, 3.5vw, 1.1rem);
        padding: 1rem .6rem .6rem;
    }
}


/* Very small devices */

@media (max-width: 420px) {
    .gallery-item[b-yrhuuqkmq8] {
        flex: 0 0 85vw;
    }
}


/* Reduce motion preference */

@media (prefers-reduced-motion: reduce) {
    .gallery-item[b-yrhuuqkmq8],
    .gallery-item img[b-yrhuuqkmq8] {
        transition: none !important;
    }
    .gallery-item:hover[b-yrhuuqkmq8] {
        transform: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    .gallery-item:hover img[b-yrhuuqkmq8] {
        transform: none;
    }
}
/* /Components/ImageGallery.razor.rz.scp.css */
/* ImageGallery Component Styles */

.image-gallery[b-spya498gdp] {
    width: 100%;
}

/* Gallery Grid */
.gallery-grid[b-spya498gdp] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
}

.gallery-item[b-spya498gdp] {
    position: relative;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #f3f4f6;
}

.gallery-item:hover[b-spya498gdp] {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.2);
}

.gallery-item img[b-spya498gdp] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img[b-spya498gdp] {
    transform: scale(1.05);
}

.gallery-item-overlay[b-spya498gdp] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(124, 58, 237, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay[b-spya498gdp] {
    background: rgba(124, 58, 237, 0.2);
}

.zoom-icon[b-spya498gdp] {
    font-size: 2rem;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
}

.gallery-item:hover .zoom-icon[b-spya498gdp] {
    opacity: 1;
    transform: scale(1);
}

/* No Images State */
.no-images[b-spya498gdp] {
    text-align: center;
    padding: 3rem 1rem;
    color: #6b7280;
    font-size: 1.1rem;
}

/* Lightbox Overlay */
.lightbox-overlay[b-spya498gdp] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn-b-spya498gdp 0.2s ease;
}

@keyframes fadeIn-b-spya498gdp {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Lightbox Content */
.lightbox-content[b-spya498gdp] {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img[b-spya498gdp] {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* Close Button */
.lightbox-close[b-spya498gdp] {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: baseline;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.lightbox-close:hover[b-spya498gdp] {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg);
}

/* Navigation Buttons ??shared style for lightbox and angleview */
.gallery-nav-btn[b-spya498gdp] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.gallery-nav-btn:hover[b-spya498gdp] {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}

/* Lightbox positioning ??outside the content box */
.lightbox-content .gallery-nav-btn.prev[b-spya498gdp] {
    left: -70px;
}

.lightbox-content .gallery-nav-btn.next[b-spya498gdp] {
    right: -70px;
}

/* Fullscreen angleview positioning ??inside the overlay */
.angleview-fullscreen-content .gallery-nav-btn.prev[b-spya498gdp] {
    left: 20px;
}

.angleview-fullscreen-content .gallery-nav-btn.next[b-spya498gdp] {
    right: 20px;
}

/* Image Counter */
.lightbox-counter[b-spya498gdp] {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Responsive Design */

/* Large Desktop */
@media (min-width: 1400px) {
    .gallery-grid[b-spya498gdp] {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 2rem;
    }
}

/* Tablet */
@media (max-width: 1150px) {
    .gallery-grid[b-spya498gdp] {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.25rem;
    }

    .lightbox-content .gallery-nav-btn.prev[b-spya498gdp] {
        left: -60px;
    }

    .lightbox-content .gallery-nav-btn.next[b-spya498gdp] {
        right: -60px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .gallery-grid[b-spya498gdp] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item[b-spya498gdp] {
        aspect-ratio: 16 / 10;
    }

    .lightbox-content[b-spya498gdp] {
        max-width: 95vw;
        max-height: 95vh;
    }

    .lightbox-close[b-spya498gdp] {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.8rem;
        background: rgba(0, 0, 0, 0.7);
    }

    .gallery-nav-btn[b-spya498gdp] {
        width: 44px;
        height: 44px;
        background: rgba(0, 0, 0, 0.7);
    }

    .lightbox-content .gallery-nav-btn.prev[b-spya498gdp] {
        left: 10px;
    }

    .lightbox-content .gallery-nav-btn.next[b-spya498gdp] {
        right: 10px;
    }

    .lightbox-counter[b-spya498gdp] {
        bottom: 10px;
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
        background: rgba(0, 0, 0, 0.7);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .zoom-icon[b-spya498gdp] {
        font-size: 1.5rem;
    }

    .gallery-nav-btn[b-spya498gdp] {
        width: 40px;
        height: 40px;
    }

    .lightbox-close[b-spya498gdp] {
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
    }
}

/* Accessibility */
.lightbox-close:focus[b-spya498gdp],
.gallery-nav-btn:focus[b-spya498gdp],
.fullscreen-close:focus[b-spya498gdp] {
    outline: 2px solid rgba(124, 58, 237, 0.8);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .lightbox-overlay[b-spya498gdp],
    .gallery-item[b-spya498gdp],
    .gallery-item img[b-spya498gdp],
    .lightbox-close[b-spya498gdp],
    .gallery-nav-btn[b-spya498gdp] {
        animation: none !important;
        transition: none !important;
    }

    .gallery-item:hover[b-spya498gdp],
    .gallery-item:hover img[b-spya498gdp] {
        transform: none;
    }

    .lightbox-close:hover[b-spya498gdp],
    .gallery-nav-btn:hover[b-spya498gdp] {
        transform: none;
    }
}

/* Print Styles */
@media print {
    .lightbox-overlay[b-spya498gdp],
    .gallery-item-overlay[b-spya498gdp],
    .zoom-icon[b-spya498gdp] {
        display: none;
    }

    .gallery-grid[b-spya498gdp] {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-item[b-spya498gdp] {
        page-break-inside: avoid;
    }
}

/* AngleView Gallery Styles */
.angleview-gallery-grid[b-spya498gdp] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

.angleview-gallery-item[b-spya498gdp] {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: #000;
}

.angleview-thumbnail[b-spya498gdp] {
    border-radius: 8px 8px 0 0;
}

.angleview-item-label[b-spya498gdp] {
    background: linear-gradient(to right, #4a5568, #2d3748);
    color: white;
    padding: 12px;
    text-align: center;
    font-weight: 500;
}

    .angleview-item-label span[b-spya498gdp] {
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

@media (max-width: 768px) {
    .angleview-gallery-grid[b-spya498gdp] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Full-Screen AngleView Modal */
.angleview-fullscreen-overlay[b-spya498gdp] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.angleview-fullscreen-content[b-spya498gdp] {
    position: relative;
    width: 100%;
    height: 100%;
}

.fullscreen-close[b-spya498gdp] {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    font-size: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10000;
    transition: background 0.3s;
}

    .fullscreen-close:hover[b-spya498gdp] {
        background: rgba(255, 255, 255, 0.4);
    }

.angleview-counter[b-spya498gdp] {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 18px;
    z-index: 10000;
}

.fullscreen-btn[b-spya498gdp] {
    /*background: linear-gradient(to right, #3182ce, #2c5282);*/
    /*color: white;*/
    background: none;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s;
}

    .fullscreen-btn:hover[b-spya498gdp] {
        transform: scale(1.05);
    }

.angleview-controls[b-spya498gdp] {
    display: flex;
    justify-content: center;
    padding: 8px;
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
    bottom: 4px;
    right: 4px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .fullscreen-close[b-spya498gdp] {
        font-size: 32px;
        width: 50px;
        height: 50px;
        top: 10px;
        right: 10px;
    }

    .angleview-fullscreen-content .gallery-nav-btn.prev[b-spya498gdp] {
        left: 10px;
    }

    .angleview-fullscreen-content .gallery-nav-btn.next[b-spya498gdp] {
        right: 10px;
    }

    .angleview-counter[b-spya498gdp] {
        bottom: 20px;
        font-size: 16px;
        padding: 8px 16px;
    }
}
/* /Components/ProductBlock.razor.rz.scp.css */
.product-shell[b-o78ekb3gmp] {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(.75rem,2vw,1.5rem);
}

.product-grid.modern[b-o78ekb3gmp] {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: clamp(1rem,2vw,2rem);
    align-items: start;
}

.gallery[b-o78ekb3gmp] {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.gallery-main[b-o78ekb3gmp] {
    background: linear-gradient(140deg,#fafafa,#f1f5f9);
    border: 1px solid #e3e7ec;
    border-radius: 14px;
    padding: .75rem;
    position: relative;
    overflow: hidden;
}

    .gallery-main.aspect[b-o78ekb3gmp] {
        aspect-ratio: 4/3;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .gallery-main img.main-img[b-o78ekb3gmp] {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        transition: opacity .25s ease,transform .4s ease;
    }

.thumbnail-grid[b-o78ekb3gmp] {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(56px,1fr));
    gap: .5rem;
}

.thumb-btn[b-o78ekb3gmp] {
    background: #fff;
    border: 1px solid #e0e4ea;
    padding: 4px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
    aspect-ratio: 1/1;
}

    .thumb-btn:hover[b-o78ekb3gmp] {
        border-color: #2563eb;
    }

    .thumb-btn.active[b-o78ekb3gmp] {
        border-color: #2563eb;
        box-shadow: 0 0 0 2px rgba(37,99,235,.15);
    }

    .thumb-btn img[b-o78ekb3gmp] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }

.product-details.card[b-o78ekb3gmp] {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: clamp(1rem,1.4vw,1.5rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.title[b-o78ekb3gmp] {
    font-size: clamp(1.35rem,2.2vw,2rem);
    line-height: 1.15;
    margin: 0 0 .25rem;
    font-weight: 600;
}

.badges[b-o78ekb3gmp] {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}

.meta-inline[b-o78ekb3gmp] {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: -.25rem;
}

.chip[b-o78ekb3gmp] {
    background: #f1f5f9;
    color: #334155;
    padding: .25rem .6rem;
    border-radius: 20px;
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.price-row[b-o78ekb3gmp] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .75rem;
    font-size: clamp(1.2rem,2vw,1.55rem);
    font-weight: 600;
}

.price[b-o78ekb3gmp] {
    background: linear-gradient(90deg,#0f172a,#334155);
    -webkit-background-clip: text;
    color: transparent;
}

.stock[b-o78ekb3gmp] {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .5px;
    padding: .25rem .55rem;
    border-radius: 6px;
    text-transform: uppercase;
}

    .stock.in[b-o78ekb3gmp] {
        background: #ecfdf5;
        color: #065f46;
    }

    .stock.low[b-o78ekb3gmp] {
        background: #fff7ed;
        color: #9a3412;
    }

    .stock.out[b-o78ekb3gmp] {
        background: #fef2f2;
        color: #991b1b;
    }

.rating-row[b-o78ekb3gmp] {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .8rem;
    color: #475569;
}

.reviews-count[b-o78ekb3gmp] {
    font-size: .75rem;
}

.specs[b-o78ekb3gmp] {
    display: grid;
    gap: .65rem;
    margin: .25rem 0 0;
}

.spec-item[b-o78ekb3gmp] {
    display: flex;
    gap: .75rem;
    align-items: flex-start;
    font-size: .8rem;
}

    .spec-item span:first-child[b-o78ekb3gmp] {
        width: 70px;
        color: #64748b;
        font-weight: 500;
    }

.size-block[b-o78ekb3gmp] {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}

.size-pill[b-o78ekb3gmp] {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: .25rem .55rem;
    border-radius: 8px;
    font-size: .7rem;
}

.size-selector[b-o78ekb3gmp] {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}

.size-option[b-o78ekb3gmp] {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: .25rem .55rem;
    border-radius: 8px;
    font-size: .7rem;
    cursor: pointer;
    transition: all .25s;
}

    .size-option:hover[b-o78ekb3gmp] {
        border-color: #2563eb;
        background: #eff6ff;
    }

    .size-option.selected[b-o78ekb3gmp] {
        background: #2563eb;
        color: white;
        border-color: #2563eb;
    }

.purchase-block[b-o78ekb3gmp] {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    align-items: stretch;
}

.quantity-selector[b-o78ekb3gmp] {
    display: inline-flex;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: .35rem .5rem;
    gap: .3rem;
}

.quantity-btn[b-o78ekb3gmp] {
    width: 36px;
    height: 36px;
    border: none;
    background: #fff;
    border: 1px solid #d9e1e8;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: .25s;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .quantity-btn:hover:not(:disabled)[b-o78ekb3gmp] {
        background: #2563eb;
        color: #fff;
        border-color: #2563eb;
    }

    .quantity-btn:disabled[b-o78ekb3gmp] {
        opacity: .5;
        cursor: default;
    }

fluent-number-field[b-o78ekb3gmp] {
    width: var(--input-width,4rem);
}

.add-to-cart[b-o78ekb3gmp] {
    flex: 1;
    min-width: 200px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 14px;
    font-weight: 600;
    font-size: .95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .9rem 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 14px -2px rgba(37,99,235,.35);
    transition: background .25s, box-shadow .25s, transform .25s;
}

    .add-to-cart:hover:not(:disabled)[b-o78ekb3gmp] {
        background: #1d4ed8;
        box-shadow: 0 6px 18px -2px rgba(37,99,235,.5);
    }

    .add-to-cart:active:not(:disabled)[b-o78ekb3gmp] {
        transform: translateY(1px);
    }

    .add-to-cart:disabled[b-o78ekb3gmp] {
        opacity: .55;
        cursor: not-allowed;
        box-shadow: none;
    }

.description h3[b-o78ekb3gmp] {
    margin: .25rem 0 .5rem;
    font-size: 1rem;
}

.description p[b-o78ekb3gmp] {
    margin: .25rem 0;
    font-size: .85rem;
    line-height: 1.4;
    color: #334155;
}

    .description p.alt-lang[b-o78ekb3gmp] {
        color: #475569;
        font-style: italic;
    }

.fade-in[b-o78ekb3gmp] {
    animation: fadeInImg-b-o78ekb3gmp .4s ease;
}

@keyframes fadeInImg-b-o78ekb3gmp {
    from {
        opacity: 0;
        transform: scale(.975);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cart-message[b-o78ekb3gmp] {
    padding: .75rem;
    border-radius: 8px;
    font-size: .85rem;
    font-weight: 500;
    margin: .5rem 0;
    text-align: center;
}

    .cart-message.success[b-o78ekb3gmp] {
        background: #ecfdf5;
        color: #065f46;
        border: 1px solid #a7f3d0;
    }

    .cart-message.error[b-o78ekb3gmp] {
        background: #fef2f2;
        color: #991b1b;
        border: 1px solid #fca5a5;
    }

.add-to-cart.loading[b-o78ekb3gmp] {
    opacity: .7;
    pointer-events: none;
}

    .add-to-cart.loading span[b-o78ekb3gmp]::after {
        content: "...";
        animation: dots-b-o78ekb3gmp 1.5s infinite;
    }

@keyframes dots-b-o78ekb3gmp {
    0%, 20% { content: "..."; }
    40% { content: ".."; }
    60% { content: "."; }
    80%, 100% { content: "..."; }
}

@media (max-width:900px) {
    .product-details.card[b-o78ekb3gmp] {
        padding: 1rem;
    }

    .product-grid.modern[b-o78ekb3gmp] {
        gap: 1.25rem;
    }
}

@media (max-width:600px) {
    .title[b-o78ekb3gmp] {
        font-size: 1.4rem;
    }

    .add-to-cart[b-o78ekb3gmp] {
        min-width: unset;
    }

    .gallery-main.aspect[b-o78ekb3gmp] {
        aspect-ratio: 1/1;
    }
}
/* /Components/QuotationForm.razor.rz.scp.css */
/* ── Quotation Form ─────────────────────────────────────────────────────── */

.section-form[b-rpbwven3li] {
    margin: 3rem 0;
    padding: 0;
    min-height: auto;
    border: none;
    display: block;
}

    .section-form[b-rpbwven3li]::before {
        display: none;
    }

/* Card */
.form-container[b-rpbwven3li] {
    max-width: 860px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
    border: 1px solid #e8eaf0;
}

/* Coloured top accent bar */
.form-container[b-rpbwven3li]::before {
    content: '';
    display: block;
    height: 5px;
    background: linear-gradient(90deg, #4a90e2 0%, #7b5ea7 100%);
}

/* Header */
.form-header[b-rpbwven3li] {
    text-align: center;
    padding: 2rem 2.5rem 0;
    margin-bottom: 1.75rem;
}

    .form-header h4[b-rpbwven3li] {
        font-size: 1.65rem;
        color: #1a1a2e;
        margin: 0 0 0.4rem;
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    .form-header p[b-rpbwven3li] {
        color: #666;
        font-size: 0.95rem;
        margin: 0;
        line-height: 1.5;
    }

/* Form body */
.quotation-form[b-rpbwven3li] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 0 2.5rem 2.5rem;
}

/* ── Grid rows ── */
.form-row[b-rpbwven3li] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin: 0 32px;
    margin-bottom: 32px;
}

.form-row-3[b-rpbwven3li] {
    grid-template-columns: 1fr 1fr 1fr;
}

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

/* ── Field group ── */
.form-group[b-rpbwven3li] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

    .form-group > label[b-rpbwven3li] {
        font-weight: 600;
        color: #2c2c3e;
        font-size: 0.875rem;
        letter-spacing: 0.2px;
    }

.required[b-rpbwven3li] {
    color: #e74c3c;
}

/* ── Inputs & selects ── */
.form-control[b-rpbwven3li] {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid #dde1ea;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #333;
    background: #f8f9fc;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
}

    .form-control:focus[b-rpbwven3li] {
        outline: none;
        border-color: #4a90e2;
        background: #fff;
        box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.14);
    }

    .form-control:hover:not(:focus)[b-rpbwven3li] {
        border-color: #b0b8cc;
    }

    .form-control[b-rpbwven3li]::placeholder {
        color: #aab0bf;
        font-size: 0.9rem;
    }

/* Custom select arrow */
.select-wrapper[b-rpbwven3li] {
    position: relative;
}

    .select-wrapper[b-rpbwven3li]::after {
        content: '▾';
        position: absolute;
        right: 0.9rem;
        top: 50%;
        transform: translateY(-50%);
        color: #888;
        pointer-events: none;
        font-size: 0.85rem;
    }

    .select-wrapper .form-control[b-rpbwven3li] {
        padding-right: 2.2rem;
        cursor: pointer;
    }

/* ── Pill toggle (replaces radio buttons) ── */
.pill-toggle[b-rpbwven3li] {
    display: inline-flex;
    background: #f0f2f7;
    border-radius: 10px;
    padding: 4px;
    gap: 4px;
    width: fit-content;
}

.pill-btn[b-rpbwven3li] {
    padding: 0.55rem 1.6rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

    .pill-btn.active[b-rpbwven3li] {
        background: #ffffff;
        color: #4a90e2;
        font-weight: 700;
        box-shadow: 0 2px 8px rgba(74, 144, 226, 0.18);
    }

    .pill-btn:hover:not(.active)[b-rpbwven3li] {
        color: #333;
        background: rgba(255,255,255,0.6);
    }

/* ── Validation ── */
.validation-message[b-rpbwven3li] {
    color: #e74c3c;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 0.2rem;
}

/* ── Divider before actions ── */
.form-actions[b-rpbwven3li] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 0.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid #eef0f5;
    margin: 0 30px;
    margin-bottom:32px;
}

/* ── Buttons ── */
.submit-btn[b-rpbwven3li] {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    color: white;
    border: none;
    padding: 0.85rem 2.5rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 150px;
    justify-content: center;
    letter-spacing: 0.3px;
}

    .submit-btn:hover:not(:disabled)[b-rpbwven3li] {
        transform: translateY(-2px);
        box-shadow: 0 8px 22px rgba(74, 144, 226, 0.35);
    }

    .submit-btn:active:not(:disabled)[b-rpbwven3li] {
        transform: translateY(0);
    }

    .submit-btn:disabled[b-rpbwven3li] {
        opacity: 0.65;
        cursor: not-allowed;
    }

.reset-btn[b-rpbwven3li] {
    background: transparent;
    color: #888;
    border: 1.5px solid #dde1ea;
    padding: 0.85rem 1.75rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}

    .reset-btn:hover:not(:disabled)[b-rpbwven3li] {
        border-color: #aab0cc;
        color: #444;
    }

    .reset-btn:disabled[b-rpbwven3li] {
        opacity: 0.45;
        cursor: not-allowed;
    }

/* ── Spinner ── */
.spinner[b-rpbwven3li] {
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255,255,255,0.35);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    flex-shrink: 0;
}

@@keyframes spin {
    to[b-rpbwven3li] { transform: rotate(360deg); }
}

/* ── Success / Error banners ── */
.success-message[b-rpbwven3li],
.error-message[b-rpbwven3li] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin: 0 2.5rem 2rem;
}

.success-message[b-rpbwven3li] {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    box-shadow: 0 4px 18px rgba(46, 204, 113, 0.22);
}

.error-message[b-rpbwven3li] {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    box-shadow: 0 4px 18px rgba(231, 76, 60, 0.22);
}

.success-icon[b-rpbwven3li],
.error-icon[b-rpbwven3li] {
    font-size: 1.5rem;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.22);
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.success-text h5[b-rpbwven3li],
.error-text h5[b-rpbwven3li] {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    font-weight: 700;
}

.success-text p[b-rpbwven3li],
.error-text p[b-rpbwven3li] {
    margin: 0;
    opacity: 0.92;
    font-size: 0.9rem;
    line-height: 1.45;
}

/* ── Responsive ── */
@@media (max-width: 700px) {
    .form-container[b-rpbwven3li] {
        border-radius: 14px;
    }

    .form-header[b-rpbwven3li] {
        padding: 1.5rem 1.25rem 0;
    }

    .quotation-form[b-rpbwven3li] {
        padding: 0 1.25rem 1.75rem;
        gap: 1rem;
    }

    .form-row[b-rpbwven3li],
    .form-row-3[b-rpbwven3li] {
        grid-template-columns: 1fr;
    }

    .form-actions[b-rpbwven3li] {
        flex-direction: column;
    }

    .submit-btn[b-rpbwven3li],
    .reset-btn[b-rpbwven3li] {
        width: 100%;
        justify-content: center;
    }

    .success-message[b-rpbwven3li],
    .error-message[b-rpbwven3li] {
        margin: 0 1.25rem 1.5rem;
    }
}
/* /Components/StyleComs/Blocks.razor.rz.scp.css */
.blocks-container[b-59h9tq32vg] {
    display: block;
    overflow: hidden;
}

.blocks-container canvas[b-59h9tq32vg] {
    display: block;
    width: 100% !important;
    height: 100% !important;
}
/* /Components/StyleComs/GlassSurface.razor.rz.scp.css */
.glass-surface[b-lqs6158dwb] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: opacity 0.26s ease-out;
}

.glass-surface__filter[b-lqs6158dwb] {
    width: 100%;
    height: 100%;
    pointer-events: none;
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: -1;
}

.glass-surface__content[b-lqs6158dwb] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: inherit;
    position: relative;
    z-index: 1;
}

.glass-surface--svg[b-lqs6158dwb] {
    background: light-dark(hsl(0 0% 100% / var(--glass-frost, 0)), hsl(0 0% 0% / var(--glass-frost, 0)));
    backdrop-filter: var(--filter-id, url(#glass-filter)) saturate(var(--glass-saturation, 1));
    box-shadow:
        0 0 2px 1px light-dark(color-mix(in oklch, black, transparent 85%), color-mix(in oklch, white, transparent 65%)) inset,
        0 0 10px 4px light-dark(color-mix(in oklch, black, transparent 90%), color-mix(in oklch, white, transparent 85%)) inset,
        0px 4px 16px rgba(17, 17, 26, 0.05),
        0px 8px 24px rgba(17, 17, 26, 0.05),
        0px 16px 56px rgba(17, 17, 26, 0.05),
        0px 4px 16px rgba(17, 17, 26, 0.05) inset,
        0px 8px 24px rgba(17, 17, 26, 0.05) inset,
        0px 16px 56px rgba(17, 17, 26, 0.05) inset;
}

.glass-surface--fallback[b-lqs6158dwb] {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px) saturate(1.8) brightness(1.1);
    -webkit-backdrop-filter: blur(12px) saturate(1.8) brightness(1.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 8px 32px 0 rgba(31, 38, 135, 0.2),
        0 2px 16px 0 rgba(31, 38, 135, 0.1),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 0 rgba(255, 255, 255, 0.2);
}

@@media (prefers-color-scheme: dark) {
    .glass-surface--fallback[b-lqs6158dwb] {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(12px) saturate(1.8) brightness(1.2);
        -webkit-backdrop-filter: blur(12px) saturate(1.8) brightness(1.2);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow:
            inset 0 1px 0 0 rgba(255, 255, 255, 0.2),
            inset 0 -1px 0 0 rgba(255, 255, 255, 0.1);
    }
}

@@supports not (backdrop-filter: blur(10px)) {
    .glass-surface--fallback[b-lqs6158dwb] {
        background: rgba(255, 255, 255, 0.4);
        box-shadow:
            inset 0 1px 0 0 rgba(255, 255, 255, 0.5),
            inset 0 -1px 0 0 rgba(255, 255, 255, 0.3);
    }

    .glass-surface--fallback[b-lqs6158dwb]::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.15);
        border-radius: inherit;
        z-index: -1;
    }
}

@@supports not (backdrop-filter: blur(10px)) {
    @@media (prefers-color-scheme: dark) {
        .glass-surface--fallback[b-lqs6158dwb] {
            background: rgba(0, 0, 0, 0.4);
        }

        .glass-surface--fallback[b-lqs6158dwb]::before {
            background: rgba(255, 255, 255, 0.05);
        }
    }
}

.glass-surface:focus-visible[b-lqs6158dwb] {
    outline: 2px solid light-dark(#007aff, #0a84ff);
    outline-offset: 2px;
}
/* /Components/StyleComs/Silk.razor.rz.scp.css */
.silk-container[b-xaw24ya30l] {
    display: block;
    overflow: hidden;
}

.silk-container canvas[b-xaw24ya30l] {
    display: block;
    width: 100% !important;
    height: 100% !important;
}
/* /Components/TagsDisplayer.razor.rz.scp.css */
.tagContainer[b-2grjpg3o56] {
    display: flex;
    flex-wrap: wrap;
}

.tag-content[b-2grjpg3o56] {
    display: flex;
    margin-left: 12px;
    padding: 3px;
    background-color: #ddd;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.tag[b-2grjpg3o56] {
    color: #1b6ee2;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

    .tag:hover[b-2grjpg3o56] {
        color: deepskyblue;
    }

.removeBtn[b-2grjpg3o56] {
    margin-left: 3px;
    color: darkred;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.removeBtn:hover[b-2grjpg3o56]{
    color : red;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-80b3d7jmwl] {}

.canvas[b-80b3d7jmwl] {
    display: flex;
    /*height: 100vh;*/
    /*background-color: #FDFEEE;*/
    /*background: linear-gradient(135deg, #ffffff 0%, #FDFEEE 100%);*/
    background: linear-gradient(135deg, #ffffff 0%, #EDDCD0 100%);
    /*background: linear-gradient( 45deg, #e6e4d8 0%, #e6e4d8 50%, rgba(200, 198, 186, 0.7) 50%, rgba(200, 198, 186, 0.7) 100% );*/
    padding-right: 20px;
}

:global(:root)[b-80b3d7jmwl] { 
    --header-height: 72px;
    --sidebar-width: 280px;
    --sidebar-collapsed-width: 0px;
}

.icon[b-80b3d7jmwl] {
    max-height: 100%;
    width: auto;
    padding: 2px 2px 2px 2px;
}

.content[b-80b3d7jmwl] {
    margin: 0;
    padding: 0;
    position: relative;
    width: -webkit-fill-available;
    transition: margin-left 0.3s ease;
    /*background: linear-gradient(135deg, #ffffff 0%, #FDFEEE 100%);*/
    background: linear-gradient(135deg, #ffffff 0%, #EDDCD0 100%);
    /*background: linear-gradient( 45deg, #e6e4d8 0%, #e6e4d8 50%, rgba(200, 198, 186, 0.7) 50%, rgba(200, 198, 186, 0.7) 100% );*/
}

/* Ensure main has top spacing to account for fixed header */
.content > main[b-80b3d7jmwl] { padding-top: calc(var(--header-height) + 8px); }

/* Modern Sidebar Styles */
.sidebar[b-80b3d7jmwl] {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: var(--sidebar-width);
    height: calc(100vh - var(--header-height));
    background: linear-gradient(180deg, #ffffff 0%, #EDDCD0 100%);
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 4px 0 20px -8px rgba(0, 0, 0, 0.15);
    z-index: 450;
    transform: translateX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), top 0.3s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.sidebar-collapsed[b-80b3d7jmwl] {
    transform: translateX(-100%);
}

.sidebar-expanded[b-80b3d7jmwl] {
    transform: translateX(0);
}

.sidebar-overlay[b-80b3d7jmwl] {
    position: fixed;
    top: var(--header-height);
    left: var(--sidebar-width);
    width: calc(100vw - var(--sidebar-width));
    height: calc(100vh - var(--header-height));
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, top 0.3s ease;
    z-index: 400;
    pointer-events: none;
}

.sidebar-overlay.active[b-80b3d7jmwl] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sidebar-content[b-80b3d7jmwl] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding: 0;
    position: relative;
    z-index: 460;
    /*background-color : rgb(205,203,192);*/
    background: linear-gradient( 45deg, white 0%, #EDDCD0 50%, #EDDCD0 50%, white 100% );
}

.sidebar-header[b-80b3d7jmwl] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.25rem 1rem 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: linear-gradient(135deg, #ffffff 0%, #f7f7f7 100%);
}

.sidebar-title[b-80b3d7jmwl] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    letter-spacing: -0.025em;
}

.sidebar-close-btn[b-80b3d7jmwl] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 8px;
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sidebar-close-btn:hover[b-80b3d7jmwl] {
    background: rgba(107, 114, 128, 0.2);
    color: #374151;
}

.sidebar-nav[b-80b3d7jmwl] {
    flex: 1;
    overflow-y: auto;
    padding: 0.75rem 0;
    /*background: linear-gradient( 45deg, #e6e4d8 0%, #e6e4d8 50%, rgba(200, 198, 186, 0.7) 50%, rgba(200, 198, 186, 0.7) 100% );*/
    background: linear-gradient( 45deg, white 0%, #EDDCD0 50%, #EDDCD0 50%, white 100% );
    /*#EDDCD0*/
}

.nav-section[b-80b3d7jmwl] {
    margin-bottom: 1.5rem;
}

.nav-section:last-child[b-80b3d7jmwl] {
    margin-bottom: 0;
}

.nav-section-header[b-80b3d7jmwl] {
    padding: 0.5rem 1.25rem 0.75rem 1.25rem;
}

.nav-section-title[b-80b3d7jmwl] {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-item[b-80b3d7jmwl] {
    margin-bottom: 0.25rem;
}

.nav-link[b-80b3d7jmwl] {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    border-radius: 0;
}

.nav-link-content[b-80b3d7jmwl] {
    display: flex;
    align-items: center;
    padding: 0.875rem 1.25rem;
    margin: 0 0.75rem;
    border-radius: 12px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(5px);
    color: darkslategray;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-link-content[b-80b3d7jmwl]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(152, 151, 141, 0.08) 0%, rgba(229, 227, 216, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.nav-link:hover .nav-link-content[b-80b3d7jmwl]::before {
    opacity: 1;
}

.nav-link.active .nav-link-content[b-80b3d7jmwl] {
    background: linear-gradient(135deg, #BEBCB1 0%, #55544F 100%);
    color: white;
    box-shadow: 0 4px 12px -2px rgba(19, 19, 17, 0.4);
}

.nav-link.active .nav-link-content[b-80b3d7jmwl]::before {
    opacity: 0;
}

.nav-icon[b-80b3d7jmwl] {
    width: 20px;
    height: 20px;
    margin-right: 0.875rem;
    flex-shrink: 0;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.nav-link.active .nav-icon[b-80b3d7jmwl] {
    opacity: 1;
}

.nav-text[b-80b3d7jmwl] {
    margin-left: 16px;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.navbar-toggler[b-80b3d7jmwl] { 
    background-color: white; 
    border: none; 
    border-radius: 16px; 
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 6px 10px; 
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}
.navbar-toggler:hover[b-80b3d7jmwl] { 
    background-color: #f3f4f6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.navbar-toggler:active[b-80b3d7jmwl] { transform: translateY(1px); }

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

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

.bi-house-door-fill-nav-menu[b-80b3d7jmwl] { /* ...existing code... */ }
.bi-plus-square-fill-nav-menu[b-80b3d7jmwl] { /* ...existing code... */ }
.bi-list-nested-nav-menu[b-80b3d7jmwl] { /* ...existing code... */ }

.nav-item[b-80b3d7jmwl] { /* ...existing code... */ }
.nav-item:first-of-type[b-80b3d7jmwl] { /* ...existing code... */ }
.nav-item:last-of-type[b-80b3d7jmwl] { /* ...existing code... */ }
.nav-item[b-80b3d7jmwl]  a { /* ...existing code... */ }
.nav-item[b-80b3d7jmwl]  a.active { /* ...existing code... */ }
.nav-item[b-80b3d7jmwl]  a:hover { /* ...existing code... */ }

.topRowBtn[b-80b3d7jmwl] { /* ...existing code... */ }
.topRowBtn:hover[b-80b3d7jmwl] { /* ...existing code... */ }
.topRowBtn:active[b-80b3d7jmwl] { /* ...existing code... */ }

.top-row-left[b-80b3d7jmwl] { flex: 1; }
.top-row-right[b-80b3d7jmwl] { flex: 1; display: flex; justify-content: flex-end; }

.lang-combo-frame[b-80b3d7jmwl] {
    display: flex;
    border: none;
    border-radius: 16px;
    background-color: white;
    margin-top: auto;
    margin-bottom: auto;
    height: 40px;
    padding-left: 8px;
    box-shadow: 0 4px 18px -6px rgba(0,0,0,.15);
}

/* Modern header now fixed */
.top-row.modern-header[b-80b3d7jmwl] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 500;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1.25rem;
    min-height: var(--header-height);
    padding: .75rem 1.25rem;
    box-sizing: border-box;
    background: linear-gradient(135deg, #ffffffdd 0%, #f7f7f7cc 60%, #EDDCD0 100%);
    backdrop-filter: blur(12px) saturate(120%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 4px 18px -6px rgba(0,0,0,.15);
    transition: background-color .25s ease, box-shadow .25s ease, min-height .25s ease, padding .25s ease;
}

.brand-group[b-80b3d7jmwl] { display: flex; align-items: center; gap: .9rem; min-width: 0; }
.brand-link[b-80b3d7jmwl] { display: inline-flex; align-items: center; text-decoration: none; }
.top-row-logo[b-80b3d7jmwl] { height: 54px; width: auto; display: block; object-fit: contain; filter: drop-shadow(0 2px 4px rgba(0,0,0,.15)); transition: transform .35s cubic-bezier(.38,.07,.22,.95); }
.top-row-logo:hover[b-80b3d7jmwl] { transform: scale(1.05) rotate(-1.5deg); }
.top-row-logo:active[b-80b3d7jmwl] { transform: scale(0.98); }

.action-group[b-80b3d7jmwl] { flex: 1 1 auto; display: flex; justify-content: flex-end;/* flex-wrap: wrap;*/ gap: .65rem; }
.auth-link-wrapper[b-80b3d7jmwl] { text-decoration: none; }

.topRowBtn[b-80b3d7jmwl] { position: relative; overflow: hidden; font-weight: 500; border: 1px solid transparent; border-radius: 14px; margin:5px; padding: .55rem 1.05rem; background: #ffffff; color: #1f1f1f; display: inline-flex; align-items: center; gap: .5rem; font-size: .9rem; letter-spacing:.3px; cursor: pointer; backdrop-filter: blur(4px); box-shadow: 0 1px 2px rgba(0,0,0,.08), 0 0 0 1px rgba(0,0,0,.04); transition: background .3s ease, color .3s ease, box-shadow .35s ease, transform .2s ease, border-color .35s ease; }
.topRowBtn:hover[b-80b3d7jmwl] { background: #222; color: #fff; box-shadow: 0 4px 12px -2px rgba(0,0,0,.3); }
.topRowBtn:focus-visible[b-80b3d7jmwl] { outline: 2px solid #4d8dff; outline-offset: 2px; }
.topRowBtn:active[b-80b3d7jmwl] { transform: translateY(1px); box-shadow: 0 2px 5px rgba(0,0,0,.25); }

.primary-cta[b-80b3d7jmwl] { background: linear-gradient(145deg,#5865f2,#4353d8); color: #fff; border: 1px solid #4353d8; box-shadow: 0 4px 10px -2px rgba(67,83,216,.4), 0 0 0 1px rgba(255,255,255,.3) inset; }
.primary-cta:hover[b-80b3d7jmwl] { background: linear-gradient(145deg,#4353d8,#3242c9); }
.primary-cta:active[b-80b3d7jmwl] { background: #3242c9; }

.subtle-btn[b-80b3d7jmwl] { background: #ffffff; }
.subtle-btn:hover[b-80b3d7jmwl] { background: #f1f1f1; color: #000; }

.danger-btn[b-80b3d7jmwl] { background: linear-gradient(145deg,#f5573d,#f53131); color: #fff; border:1px solid #e22d1d; box-shadow: 0 3px 8px -2px rgba(245,87,61,.6); }
.danger-btn:hover[b-80b3d7jmwl] { background: linear-gradient(145deg,#e52f1f,#cb1f15); }
.danger-btn:active[b-80b3d7jmwl] { background: #cb1f15; }

/* Compact state for short heights */
@media (max-height: 600px) { 
    .top-row.modern-header[b-80b3d7jmwl] { min-height: 58px; padding: .5rem 1rem; } 
    .top-row-logo[b-80b3d7jmwl] { height: 46px; } 
    :global(:root)[b-80b3d7jmwl] { --header-height: 58px; }
    .sidebar[b-80b3d7jmwl] {
        top: var(--header-height);
        height: calc(100vh - var(--header-height));
    }
    .sidebar-overlay[b-80b3d7jmwl] {
        top: var(--header-height);
        height: calc(100vh - var(--header-height));
    }
}

/* Mobile adjustments */
@media (max-width: 820px) {
    .top-row.modern-header[b-80b3d7jmwl] { gap: .75rem; padding: .6rem .85rem; min-height: 66px; }
    .top-row-logo[b-80b3d7jmwl] { height: 46px; }
    /*.action-group { flex: 1 1 auto; justify-content: flex-end; gap: .5rem; }*/
    .topRowBtn[b-80b3d7jmwl] { padding: .5rem .85rem; font-size: .8rem; border-radius: 12px; }
    :global(:root)[b-80b3d7jmwl] { --header-height: 66px; }
    .sidebar[b-80b3d7jmwl] {
        top: var(--header-height);
        height: calc(100vh - var(--header-height));
        z-index: 450;
    }
    .sidebar-overlay[b-80b3d7jmwl] {
        top: var(--header-height);
        height: calc(100vh - var(--header-height));
    }
}

@media (max-width: 620px) {
    .top-row.modern-header[b-80b3d7jmwl] {
        /*flex-wrap: wrap;*/
    }
    /*.action-group { width: 100%; justify-content: flex-end; }*/
    .primary-cta[b-80b3d7jmwl], .danger-btn[b-80b3d7jmwl] { flex: 1 1 auto; justify-content: center; }
    .brand-group[b-80b3d7jmwl] {
        flex: 1 1 100%; /*justify-content: space-between;*/
    }
    .top-row-logo[b-80b3d7jmwl] { height: 44px; }
    :global(:root)[b-80b3d7jmwl] { --header-height: 70px; }
    .sidebar[b-80b3d7jmwl] {
        top: var(--header-height);
        height: calc(100vh - var(--header-height));
        z-index: 450;
    }
    .sidebar-overlay[b-80b3d7jmwl] {
        top: var(--header-height);
        height: calc(100vh - var(--header-height));
    }
    .topRowBtnTxt[b-80b3d7jmwl]{
        display:none;
    }
}

/* Large desktop slight adjustments */
@media (min-width: 1600px) {
    .top-row.modern-header[b-80b3d7jmwl] { padding: 1rem 2rem; }
    .top-row-logo[b-80b3d7jmwl] { height: 60px; }

    .sidebar-nav[b-80b3d7jmwl] {
        /*top: calc(var(--header-height) + 1px);*/
        margin-top: 30px;
        height: calc(100vh - var(--header-height) - 1px);
    }
}

@media (min-width:1401px){

    .sidebar-nav[b-80b3d7jmwl] {
        /*top: calc(var(--header-height) + 1px);*/
        /*margin-top: 20px;*/
        height: calc(100vh - var(--header-height) - 1px);
    }

    .sidebar-nav[b-80b3d7jmwl] {
        /*top: calc(var(--header-height) + 1px);*/
        margin-top: 20px;
    }
}

@media (max-width: 1400px) { 
    .topRowBtn[b-80b3d7jmwl] { padding: .5rem .85rem; font-size: .85rem; }

    .sidebar-nav[b-80b3d7jmwl] {
        /*top: calc(var(--header-height) + 1px);*/
        margin-top: 20px;
        height: calc(100vh - var(--header-height) - 1px);
    }
}
@media (max-width: 1200px) {
    .topRowBtn[b-80b3d7jmwl] { padding: .45rem .8rem; font-size: .8rem; }
    .content[b-80b3d7jmwl] {
        margin-left: 20px;
    }
}

@media (max-width: 992px) {
    /*.action-group { justify-content: flex-end; }*/

}

.content[b-80b3d7jmwl] { top:90px; max-width: 100%; overflow-x: hidden; }

/* Body container offset below fixed header */
.layout-body[b-80b3d7jmwl] { 
    padding: calc(var(--header-height) + 0.75rem) 1rem 2.5rem 1rem; 
    box-sizing: border-box; 
    transition: padding 0.3s ease;
}

/* Desktop Layout with Sidebar */
@media (min-width: 1025px) {
    .navbar-toggler[b-80b3d7jmwl] { display: none; }
    
    .sidebar[b-80b3d7jmwl] {
        position: fixed;
        transform: translateX(0) !important;
        z-index: 450;
        top: calc(var(--header-height) + 1px);
        height: calc(100vh - var(--header-height) - 1px);
    }
    
    .sidebar-overlay[b-80b3d7jmwl] {
        display: none;
    }
    
    .sidebar-close-btn[b-80b3d7jmwl] {
        display: none;
    }

    .content[b-80b3d7jmwl] {
        margin-left: 244px;
        margin-right: -40px;
    }
    
    .layout-body[b-80b3d7jmwl] { 
        padding: calc(var(--header-height) + 1.25rem) 2rem 3rem 2rem; 
    }
}

/* Tablet Layout */
@media (min-width: 651px) and (max-width: 1024px) {

    .content[b-80b3d7jmwl] {
        margin-left: 20px;
    }

    .navbar-toggler[b-80b3d7jmwl] { display: flex; }
    
    .sidebar[b-80b3d7jmwl] {
        width: 300px;
        z-index: 450;
    }
    
    .sidebar-collapsed[b-80b3d7jmwl] {
        transform: translateX(-100%);
    }
    
    /* Adjust overlay for tablet */
    .sidebar-overlay[b-80b3d7jmwl] {
        left: 300px;
        width: calc(100vw - 300px);
    }
    
    .layout-body[b-80b3d7jmwl] { 
        padding: calc(var(--header-height) + 1rem) 1.5rem 2.5rem 1.5rem; 
    }
}

/* Mobile Layout */
@media (max-width: 650px) {

    .content[b-80b3d7jmwl] {
        margin-left: 20px;
    }

    .sidebar[b-80b3d7jmwl] {
        width: 280px;
        z-index: 450;
    }
    
    /* Mobile overlay covers entire screen except sidebar */
    .sidebar-overlay[b-80b3d7jmwl] {
        left: 280px;
        width: calc(100vw - 280px);
    }
    
    /* For very small screens, make overlay cover the whole right area */
    @media (max-width: 480px) {
        .sidebar[b-80b3d7jmwl] {
            width: 260px;
            z-index: 450;
        }
        
        .sidebar-overlay[b-80b3d7jmwl] {
            left: 260px;
            width: calc(100vw - 260px);
        }
    }
    
    .layout-body[b-80b3d7jmwl] { 
        padding: calc(var(--header-height) + 0.75rem) 1rem 2rem 1rem; 
    }
}

/* Remove old styles that are no longer needed */
.nav-scrollable[b-80b3d7jmwl] { /* Remove or update as needed */ }
.collapse[b-80b3d7jmwl] { /* Remove or update as needed */ }

/* Modern Footer Styles */
.footer[b-80b3d7jmwl] {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #eceff4 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -4px 20px -8px rgba(0, 0, 0, 0.15);
    margin-top: 4rem;
    padding: 3rem 0 0 0;
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    margin-right:20px;
}

.footer[b-80b3d7jmwl]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(88, 101, 242, 0.3) 50%, transparent 100%);
}

.footer-content[b-80b3d7jmwl] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
    box-sizing: border-box;
    overflow: hidden;
}

.footer-section[b-80b3d7jmwl] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

.footer-section h4[b-80b3d7jmwl] {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    letter-spacing: -0.025em;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h4[b-80b3d7jmwl]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, #5865f2 0%, #4353d8 100%);
    border-radius: 1px;
}

.footer-section p[b-80b3d7jmwl] {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

.footer-section.about p[b-80b3d7jmwl] {
    max-width: 400px;
}

.contact-list[b-80b3d7jmwl] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.contact-item[b-80b3d7jmwl] {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 0.25rem 0;
}

.contact-item:hover[b-80b3d7jmwl] {
    color: #5865f2;
    transform: translateX(0.25rem);
}

.contact-icon[b-80b3d7jmwl] {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

.contact-item:hover .contact-icon[b-80b3d7jmwl] {
    opacity: 1;
}

.footer-section ul[b-80b3d7jmwl] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section ul li[b-80b3d7jmwl] {
    position: relative;
}

.footer-section ul li a[b-80b3d7jmwl] {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0;
    position: relative;
}

.footer-section ul li a[b-80b3d7jmwl]::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: transparent;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.footer-section ul li a:hover[b-80b3d7jmwl] {
    color: #5865f2;
    transform: translateX(0.25rem);
}

.footer-section ul li a:hover[b-80b3d7jmwl]::before {
    background: #5865f2;
    width: 6px;
    height: 6px;
}

.footer-section.social[b-80b3d7jmwl] {
    align-items: flex-start;
}

.footer-section.social > div[b-80b3d7jmwl] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-section.social a[b-80b3d7jmwl] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #ffffff 0%, #f1f1f1 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.1);
}

.footer-section.social a[b-80b3d7jmwl]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1) 0%, rgba(67, 83, 216, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-section.social a:hover[b-80b3d7jmwl] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -8px rgba(88, 101, 242, 0.4);
    border-color: rgba(88, 101, 242, 0.2);
    color: #5865f2;
}

.footer-section.social a:hover[b-80b3d7jmwl]::before {
    opacity: 1;
}

.footer-section.social a:active[b-80b3d7jmwl] {
    transform: translateY(0);
}

.social-icon[b-80b3d7jmwl] {
    position: relative;
    z-index: 1;
    width: 20px;
    height: 20px;
}

.footer-section.map[b-80b3d7jmwl] {
    align-items: flex-start;
    min-width: 0;
}

.footer-section.map iframe[b-80b3d7jmwl] {
    width: 100%;
    max-width: 400px;
    height: 300px;
    border: 0;
    border-radius: 8px;
    display: block;
}

.footer-bottom[b-80b3d7jmwl] {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 1.5rem 0;
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
}

.footer-bottom[b-80b3d7jmwl]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(88, 101, 242, 0.4) 50%, transparent 100%);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-content[b-80b3d7jmwl] {
        padding: 0 1.5rem;
        gap: 2.5rem;
    }
}

@media (max-width: 992px) {
    .footer[b-80b3d7jmwl] {
        margin-top: 3rem;
        padding: 2.5rem 0 0 0;
    }
    
    .footer-content[b-80b3d7jmwl] {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer[b-80b3d7jmwl] {
        margin-top: 2.5rem;
        padding: 2rem 0 0 0;
    }
    
    .footer-content[b-80b3d7jmwl] {
        padding: 0 1rem;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section[b-80b3d7jmwl] {
        text-align: center;
        gap: 1rem;
    }
    
    .footer-section h4[b-80b3d7jmwl]::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-section.social[b-80b3d7jmwl] {
        align-items: center;
    }

    .footer-section.social > div[b-80b3d7jmwl] {
        justify-content: center;
    }

    .footer-section.contact[b-80b3d7jmwl] {
        align-items: center;
    }

    .contact-item:hover[b-80b3d7jmwl] {
        transform: none;
    }

    .footer-section ul[b-80b3d7jmwl] {
        align-items: center;
    }

    .footer-section ul li a[b-80b3d7jmwl]::before {
        display: none;
    }

    .footer-section ul li a:hover[b-80b3d7jmwl] {
        transform: none;
    }

    .footer-section.map[b-80b3d7jmwl] {
        align-items: stretch;
    }

    .footer-section.map iframe[b-80b3d7jmwl] {
        max-width: 100%;
        height: 220px;
    }
}

@media (max-width: 480px) {
    .footer-content[b-80b3d7jmwl] {
        padding: 0 0.75rem;
        gap: 1.5rem;
    }
    
    .footer-section[b-80b3d7jmwl] {
        gap: 0.875rem;
    }
    
    .footer-section h4[b-80b3d7jmwl] {
        font-size: 1rem;
    }
    
    .footer-section p[b-80b3d7jmwl],
    .footer-section ul li a[b-80b3d7jmwl] {
        font-size: 0.85rem;
    }
    
    .footer-section.social a[b-80b3d7jmwl] {
        width: 40px;
        height: 40px;
    }
    
    .social-icon[b-80b3d7jmwl] {
        width: 18px;
        height: 18px;
    }
    
    .footer-bottom[b-80b3d7jmwl] {
        padding: 1.25rem 0;
        font-size: 0.8rem;
    }
}

/* Dark mode support (if needed in the future) */
/*@media (prefers-color-scheme: dark) {
    .footer {
        background: linear-gradient(135deg, #1f2937 0%, #111827 50%, #0f172a 100%);
        border-top-color: rgba(255, 255, 255, 0.1);
    }
    
    .footer-section h4 {
        color: #f9fafb;
    }
    
    .footer-section p,
    .footer-section ul li a {
        color: #d1d5db;
    }
    
    .footer-section ul li a:hover {
        color: #818cf8;
    }
    
    .footer-section.social a {
        background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
        border-color: rgba(255, 255, 255, 0.1);
        color: #d1d5db;
    }
    
    .footer-section.social a:hover {
        color: #818cf8;
        border-color: rgba(129, 140, 248, 0.3);
        box-shadow: 0 8px 25px -8px rgba(129, 140, 248, 0.4);
    }
    
    .footer-bottom {
        background: linear-gradient(135deg, #111827 0%, #0f172a 100%);
        border-top-color: rgba(255, 255, 255, 0.1);
        color: #9ca3af;
    }
}*/
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-ozmr0x8ktw] {
    background-color: rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

    .nav-item[b-ozmr0x8ktw]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

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

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

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

    .collapse[b-ozmr0x8ktw] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-ozmr0x8ktw] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Layout/PromoteBar.razor.rz.scp.css */
.promoteBar[b-1kln7ey2u7] {
    display: flex;
    justify-content: center;
}

.promoteBtn[b-1kln7ey2u7] {
    color: black;
    border: none;
    padding: 0 20px 0 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    background-color: white;
}

    .promoteBtn:hover[b-1kln7ey2u7] {
        color: red;
    }
/* /Pages/AboutUs.razor.rz.scp.css */
/* Hero Section */
.hero-section[b-j80ns7hszd] {
    width: 100%;
    padding: 4rem 2rem;
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    background: linear-gradient(135deg, #EDEBD0 0%, #EDD0D2 100%);
    color: rgba(90, 90, 90, 1);
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.hero-content h1[b-j80ns7hszd] {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-content p[b-j80ns7hszd] {
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.95;
}
/* Base styles */
.aboutus-page-content[b-j80ns7hszd] {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header section */
.section-header[b-j80ns7hszd] {
    text-align: center;
    /*padding-top: 2rem;*/
    /*padding-bottom: 1.1rem;*/
}

    .section-header h3[b-j80ns7hszd] {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        margin: 0;
        color: #333;
    }

    .section-header h4[b-j80ns7hszd] {
        font-size: clamp(1.2rem, 3vw, 1.8rem);
        margin: 0 0 0.4rem 0;
        color: #333;
        font-weight: 600;
    }

    .section-header p[b-j80ns7hszd] {
        font-size: 1rem;
        color: #666;
        margin: 0;
    }

/* Image sections */
.section-intro-pic[b-j80ns7hszd] {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    padding: 1rem 0;
}

.image-container[b-j80ns7hszd] {
    position: relative;
    width: fit-content;
}

.img-title[b-j80ns7hszd] {
    position: absolute;
    top: -10px;
    left: 20px;
    color: white;
    background: rgba(51, 51, 51, 0.8);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    z-index: 10;
    font-size: 0.9rem;
    backdrop-filter: blur(4px);
}

.info-logo[b-j80ns7hszd] {
    width: 100%;
    height: auto;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #f8f9fa;
    display: block;
}

    .info-logo:hover[b-j80ns7hszd] {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .info-logo.single[b-j80ns7hszd] {
        max-width: min(800px, 90vw);
        object-fit: cover;
    }

/* ── Description container ── */
.desc-container[b-j80ns7hszd] {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* ── Tagline frames (EN + ZH) ── */
.desc-frame[b-j80ns7hszd] {
    width: 100%;
    text-align: center;
}

.desc-tagline[b-j80ns7hszd] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 0 0.5rem;
}

    .desc-tagline p[b-j80ns7hszd] {
        font-size: 1.05rem;
        line-height: 1.8;
        color: #555;
        font-style: italic;
        letter-spacing: 0.3px;
        max-width: 680px;
        margin: 0;
        text-wrap: balance;
    }

.tagline-deco[b-j80ns7hszd] {
    color: #c9a96e;
    font-size: 0.75rem;
    opacity: 0.7;
    letter-spacing: 6px;
}

.desc-tagline-zh[b-j80ns7hszd] {
    padding: 0.25rem 0 1.5rem;
}

    .desc-tagline-zh p[b-j80ns7hszd] {
        font-size: 1rem;
        font-style: normal;
        color: #666;
        line-height: 2;
    }

/* ── Decorative divider ── */
.desc-divider[b-j80ns7hszd] {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0.5rem 0 2rem;
}

    .desc-divider span[b-j80ns7hszd] {
        display: block;
        width: 60px;
        height: 2px;
        background: linear-gradient(90deg, transparent, #c9a96e, transparent);
        border-radius: 2px;
    }

/* ── Body copy block ── */
.desc-body[b-j80ns7hszd] {
    text-align: left;
    background: #fafaf8;
    border: 1px solid #e8e4dc;
    border-left: 4px solid #c9a96e;
    border-radius: 10px;
    padding: 2rem 2.25rem;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

    .desc-body p[b-j80ns7hszd] {
        font-size: 0.975rem;
        line-height: 2;
        color: #444;
        margin: 0 0 1.25rem;
        text-align: justify;
        text-justify: inter-character;
    }

        .desc-body p:last-child[b-j80ns7hszd] {
            margin-bottom: 0;
        }

    .desc-body strong[b-j80ns7hszd] {
        color: #2c2c2c;
        font-weight: 700;
    }

@@media (max-width: 600px) {
    .desc-body[b-j80ns7hszd] {
        padding: 1.25rem 1.25rem;
        border-left-width: 3px;
    }

    .desc-tagline p[b-j80ns7hszd] {
        font-size: 0.95rem;
    }
}

/* /Pages/Cart.razor.rz.scp.css */
.cart-shell[b-ylkh4tsmvh] {max-width:1250px;margin:0 auto;padding:clamp(1rem,2vw,2rem);}    
.page-title[b-ylkh4tsmvh] {font-size:clamp(1.65rem,2.4vw,2.3rem);margin:0 0 1.25rem;font-weight:600;}

.empty-state[b-ylkh4tsmvh] {background:#fff;border:1px solid #e2e8f0;padding:3rem 1.5rem;border-radius:20px;text-align:center;display:flex;flex-direction:column;align-items:center;gap:1rem;}
.empty-state .icon[b-ylkh4tsmvh] {font-size:3rem;}
.empty-state h2[b-ylkh4tsmvh] {margin:.25rem 0;font-size:1.35rem;}
.empty-state p[b-ylkh4tsmvh] {margin:0 0 .75rem;font-size:.9rem;color:#475569;}

.cart-layout[b-ylkh4tsmvh] {display:grid;grid-template-columns:1fr minmax(280px,340px);gap:clamp(1.25rem,2vw,2rem);align-items:start;}

.items-panel[b-ylkh4tsmvh] {background:#fff;border:1px solid #e2e8f0;border-radius:18px;padding:1rem;display:flex;flex-direction:column;gap:.75rem;}
.items-header[b-ylkh4tsmvh] {display:grid;grid-template-columns:1fr 120px 150px 120px 40px;gap:.75rem;padding:.4rem 1rem;font-size:.65rem;letter-spacing:.5px;font-weight:600;text-transform:uppercase;color:#64748b;}

.items-list[b-ylkh4tsmvh] {display:flex;flex-direction:column;gap:.6rem;}
.item-row[b-ylkh4tsmvh] {display:grid;grid-template-columns:1fr 120px 150px 120px 40px;gap:.75rem;align-items:center;padding:.85rem .9rem;border:1px solid #e5e7eb;border-radius:16px;background:linear-gradient(180deg,#ffffff,#f8fafc);position:relative;}
.item-row:hover[b-ylkh4tsmvh] {border-color:#2563eb;box-shadow:0 4px 14px -3px rgba(37,99,235,.18);}    

.prod[b-ylkh4tsmvh] {display:flex;gap:.85rem;align-items:center;}
.prod img[b-ylkh4tsmvh] {width:84px;height:84px;object-fit:cover;border-radius:14px;background:#f1f5f9;border:1px solid #e2e8f0;}
.meta[b-ylkh4tsmvh] {display:flex;flex-direction:column;gap:.3rem;}
.meta .name[b-ylkh4tsmvh] {font-size:.9rem;font-weight:600;text-decoration:none;color:#0f172a;}
.meta .name:hover[b-ylkh4tsmvh] {color:#2563eb;}
.meta .opts[b-ylkh4tsmvh] {font-size:.65rem;background:#f1f5f9;color:#475569;padding:.3rem .55rem;border-radius:999px;letter-spacing:.5px;align-self:flex-start;}

.col-price[b-ylkh4tsmvh], .col-sub[b-ylkh4tsmvh] {font-size:.82rem;font-weight:600;color:#0f172a;}

.qty-ctrl[b-ylkh4tsmvh] {display:inline-flex;align-items:center;background:#f8fafc;border:1px solid #e2e8f0;border-radius:12px;padding:.3rem .45rem;gap:.25rem;}
.qty-btn[b-ylkh4tsmvh] {width:34px;height:34px;border:none;background:#fff;border:1px solid #d9e1e8;border-radius:10px;font-size:1rem;font-weight:600;cursor:pointer;transition:.25s;display:flex;align-items:center;justify-content:center;}
.qty-btn:hover:not(:disabled)[b-ylkh4tsmvh]{background:#2563eb;color:#fff;border-color:#2563eb;}
.qty-btn:disabled[b-ylkh4tsmvh] {opacity:.45;cursor:default;}
.qty-input[b-ylkh4tsmvh] {width:50px;height:34px;border:1px solid #d9e1e8;border-radius:10px;text-align:center;font-size:.8rem;background:#fff;}

.remove-btn[b-ylkh4tsmvh] {width:32px;height:32px;border:none;background:#fff;border:1px solid #e2e8f0;border-radius:10px;cursor:pointer;font-size:.85rem;display:flex;align-items:center;justify-content:center;transition:.25s;color:#475569;}
.remove-btn:hover[b-ylkh4tsmvh] {background:#f87171;border-color:#ef4444;color:#fff;}

.summary-panel[b-ylkh4tsmvh] {display:flex;flex-direction:column;gap:1.25rem;}
.summary-card[b-ylkh4tsmvh] {background:#fff;border:1px solid #e2e8f0;border-radius:22px;padding:1.2rem 1.25rem;display:flex;flex-direction:column;gap:.85rem;position:sticky;top:1rem;}
.summary-card h2[b-ylkh4tsmvh] {font-size:1.1rem;margin:0 0 .25rem;font-weight:600;}
.line[b-ylkh4tsmvh] {display:flex;justify-content:space-between;font-size:.8rem;color:#334155;}
.line.disc[b-ylkh4tsmvh] {color:#b91c1c;}
.divider[b-ylkh4tsmvh] {height:1px;background:linear-gradient(90deg,rgba(0,0,0,.05),rgba(0,0,0,.15),rgba(0,0,0,.05));margin:.4rem 0 .2rem;}
.total-line[b-ylkh4tsmvh] {display:flex;justify-content:space-between;align-items:center;font-weight:700;font-size:.95rem;}

.coupon-block[b-ylkh4tsmvh] {display:flex;flex-direction:column;gap:.5rem;margin-top:.2rem;}
.coupon-block fluent-text-field[b-ylkh4tsmvh] {width:100%;}
.coupon-block fluent-button[b-ylkh4tsmvh] {align-self:flex-end;}
.coupon-msg[b-ylkh4tsmvh] {font-size:.65rem;letter-spacing:.5px;font-weight:600;text-transform:uppercase;padding:.3rem .55rem;border-radius:8px;}
.coupon-msg.ok[b-ylkh4tsmvh] {background:#ecfdf5;color:#047857;}
.coupon-msg.err[b-ylkh4tsmvh] {background:#fef2f2;color:#b91c1c;}

.checkout-btn[b-ylkh4tsmvh] {width:100%;margin-top:.4rem;font-weight:600;}
.small-note[b-ylkh4tsmvh] {font-size:.6rem;color:#64748b;text-align:center;}

.support-card[b-ylkh4tsmvh] {background:#fff;border:1px solid #e2e8f0;border-radius:20px;padding:1rem 1.1rem;display:flex;flex-direction:column;gap:.6rem;}
.support-card h3[b-ylkh4tsmvh] {margin:0;font-size:.9rem;font-weight:600;}
.support-card ul[b-ylkh4tsmvh] {list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:.4rem;}
.support-card li[b-ylkh4tsmvh] {font-size:.7rem;display:flex;gap:.4rem;align-items:center;}

.mobile-only[b-ylkh4tsmvh] {display:none;}
@media (max-width:1000px){
    .cart-layout[b-ylkh4tsmvh] {grid-template-columns:1fr;}
    .summary-panel[b-ylkh4tsmvh] {flex-direction:row;overflow-x:auto;}
    .summary-card[b-ylkh4tsmvh] {min-width:320px;}
}
@media (max-width:720px){
    .items-header[b-ylkh4tsmvh] {display:none;}
    .item-row[b-ylkh4tsmvh] {grid-template-columns:1fr 110px;grid-template-areas:"prod qty" "prod acts";padding:.85rem .75rem;}
    .col-product[b-ylkh4tsmvh] {grid-area:prod;}
    .col-qty[b-ylkh4tsmvh] {grid-area:qty;display:flex;flex-direction:column;align-items:flex-end;gap:.4rem;}
    .col-act[b-ylkh4tsmvh] {grid-area:acts;display:flex;justify-content:flex-end;align-items:center;}
    .col-price[b-ylkh4tsmvh], .col-sub[b-ylkh4tsmvh] {display:none;}
    .mobile-only[b-ylkh4tsmvh] {display:block;}
    .price-inline[b-ylkh4tsmvh] {font-weight:600;font-size:.75rem;color:#0f172a;}
    .line-sub[b-ylkh4tsmvh] {font-size:.7rem;color:#334155;font-weight:600;}
}
@media (max-width:480px){
    .prod img[b-ylkh4tsmvh] {width:70px;height:70px;}
    .meta .name[b-ylkh4tsmvh] {font-size:.8rem;}
}

.loading-state[b-ylkh4tsmvh] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: #64748b;
}

.spinner[b-ylkh4tsmvh] {
    width: 40px;
    height: 40px;
    border: 3px solid #f1f5f9;
    border-top: 3px solid #2563eb;
    border-radius: 50%;
    animation: spin-b-ylkh4tsmvh 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin-b-ylkh4tsmvh {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.unavailable[b-ylkh4tsmvh] {
    color: #dc2626;
    font-size: .75rem;
    font-weight: 600;
    padding: .25rem .5rem;
    background: #fef2f2;
    border-radius: 4px;
    margin-top: .25rem;
}

.coupon-msg.ok[b-ylkh4tsmvh] {
    color: #065f46;
    background: #ecfdf5;
    padding: .5rem;
    border-radius: 4px;
    font-size: .8rem;
    margin-top: .5rem;
}

.coupon-msg.err[b-ylkh4tsmvh] {
    color: #991b1b;
    background: #fef2f2;
    padding: .5rem;
    border-radius: 4px;
    font-size: .8rem;
    margin-top: .5rem;
}
/* /Pages/Cases.razor.rz.scp.css */
/* Base styles */
.cases-page-content[b-f5x2qw4z66] {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.floatTxt[b-f5x2qw4z66] {
    display: block;
    position: absolute;
    top: 28%;
    left: 44%;
    font-size: 48px;
    color: white;
    text-shadow: 5px 5px 10px #000000D0;
    width: 10px;
    z-index: 15;
    pointer-events: none;
    transform: translateZ(0);
}

.centerbanner[b-f5x2qw4z66] {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 5px 5px;
}

    .centerbanner div[b-f5x2qw4z66] {
        margin: 0px 5px;
    }

    .centerbanner p[b-f5x2qw4z66] {
        margin: 0;
        color: #333;
    }

    .centerbanner:hover:not(:disabled)[b-f5x2qw4z66] {
        transform: translateY(-2px);
        text-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
    }

/* Image sections */
.section-intro-pic[b-f5x2qw4z66] {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    padding: 1rem 0;
}

.image-container[b-f5x2qw4z66] {
    position: relative;
    width: fit-content;
}

.img-title[b-f5x2qw4z66] {
    position: absolute;
    top: -10px;
    left: 20px;
    color: white;
    background: rgba(51, 51, 51, 0.8);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    z-index: 10;
    font-size: 0.9rem;
    backdrop-filter: blur(4px);
}

.info-logo[b-f5x2qw4z66] {
    width: 100%;
    height: auto;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #f8f9fa;
    display: block;
}

    .info-logo:hover[b-f5x2qw4z66] {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .info-logo.single[b-f5x2qw4z66] {
        max-width: min(800px, 90vw);
        aspect-ratio: 2 / 1;
        object-fit: cover;
    }

    .info-logo.group[b-f5x2qw4z66] {
        max-width: min(auto, 100%);
        aspect-ratio: 4 / 3;
        object-fit: cover;
    }

.withBlur:hover[b-f5x2qw4z66] {
    filter: blur(1px);
    -webkit-filter: blur(1px);
}

/* Gallery section */
.section-info-gallery[b-f5x2qw4z66] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 1rem 0;
}

.gallery-item[b-f5x2qw4z66] {
    position: relative;
    width: 100%;
}
/* /Pages/Checkout.razor.rz.scp.css */
.checkout-shell[b-9gjljn28mr] {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(1rem, 2vw, 2rem);
}

.checkout-header[b-9gjljn28mr] {
    margin-bottom: 2rem;
}

.page-title[b-9gjljn28mr] {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.progress-indicator[b-9gjljn28mr] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.step[b-9gjljn28mr] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.875rem;
    color: #6b7280;
    background: #f9fafb;
    transition: all 0.3s ease;
    position: relative;
}

.step.active[b-9gjljn28mr] {
    border-color: #2563eb;
    background: #2563eb;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.step:not(:last-child)[b-9gjljn28mr]::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 2px;
    background: #e5e7eb;
    z-index: -1;
}

.checkout-layout[b-9gjljn28mr] {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    align-items: start;
}

.checkout-main[b-9gjljn28mr] {
    background: white;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.checkout-section[b-9gjljn28mr] {
    padding: 2rem;
}

.checkout-section h2[b-9gjljn28mr] {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.order-items[b-9gjljn28mr] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.order-item[b-9gjljn28mr] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #f9fafb;
}

.order-item img[b-9gjljn28mr] {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.item-details[b-9gjljn28mr] {
    flex: 1;
}

.item-details h3[b-9gjljn28mr] {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1f2937;
}

.item-details .options[b-9gjljn28mr] {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0.25rem 0;
}

.item-details .quantity[b-9gjljn28mr] {
    font-size: 0.875rem;
    color: #374151;
    margin: 0;
}

.item-price[b-9gjljn28mr] {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
}

.form-grid[b-9gjljn28mr] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.form-group[b-9gjljn28mr] {
    display: flex;
    flex-direction: column;
}

.form-group.full-width[b-9gjljn28mr] {
    grid-column: 1 / -1;
}

.payment-methods[b-9gjljn28mr] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-option[b-9gjljn28mr] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.25s ease;
}

.payment-option:hover[b-9gjljn28mr] {
    border-color: #93c5fd;
    background: #eff6ff;
}

.payment-option.selected[b-9gjljn28mr] {
    border-color: #2563eb;
    background: #eff6ff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.payment-icon[b-9gjljn28mr] {
    font-size: 2rem;
    width: 60px;
    text-align: center;
}

.payment-info h3[b-9gjljn28mr] {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
    color: #1f2937;
}

.payment-info p[b-9gjljn28mr] {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.payment-note[b-9gjljn28mr] {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.payment-note p[b-9gjljn28mr] {
    margin: 0;
    font-size: 0.875rem;
    color: #0369a1;
}

.step-actions[b-9gjljn28mr] {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.order-confirmation[b-9gjljn28mr] {
    text-align: center;
    padding: 2rem;
}

.success-icon[b-9gjljn28mr] {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.order-confirmation h2[b-9gjljn28mr] {
    color: #059669;
    margin-bottom: 0.5rem;
}

.order-number[b-9gjljn28mr] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.confirmation-message[b-9gjljn28mr] {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.order-summary-card[b-9gjljn28mr] {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: left;
}

.order-summary-card h3[b-9gjljn28mr] {
    margin-bottom: 1rem;
    color: #1f2937;
}

.next-steps[b-9gjljn28mr] {
    text-align: left;
    margin: 2rem 0;
}

.next-steps h3[b-9gjljn28mr] {
    color: #1f2937;
    margin-bottom: 1rem;
}

.next-steps ul[b-9gjljn28mr] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.next-steps li[b-9gjljn28mr] {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
}

.next-steps li[b-9gjljn28mr]::before {
    content: '?';
    color: #059669;
    font-weight: bold;
    margin-right: 0.5rem;
}

.confirmation-actions[b-9gjljn28mr] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.order-summary-sidebar[b-9gjljn28mr] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.summary-card[b-9gjljn28mr] {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem;
}

.summary-card h3[b-9gjljn28mr] {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.summary-line[b-9gjljn28mr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.875rem;
}

.summary-line:last-child[b-9gjljn28mr] {
    border-bottom: none;
}

.summary-line.discount[b-9gjljn28mr] {
    color: #059669;
}

.summary-line.total[b-9gjljn28mr] {
    font-size: 1.125rem;
    font-weight: 600;
    border-top: 2px solid #e5e7eb;
    margin-top: 0.5rem;
    padding-top: 1rem;
    color: #1f2937;
}

.divider[b-9gjljn28mr] {
    height: 1px;
    background: #e5e7eb;
    margin: 1rem 0;
}

.security-note[b-9gjljn28mr] {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
}

.security-icon[b-9gjljn28mr] {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.security-note p[b-9gjljn28mr] {
    margin: 0;
    font-size: 0.875rem;
    color: #15803d;
}

.loading-state[b-9gjljn28mr] {
    text-align: center;
    padding: 4rem 2rem;
}

.spinner[b-9gjljn28mr] {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f4f6;
    border-top: 4px solid #2563eb;
    border-radius: 50%;
    animation: spin-b-9gjljn28mr 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin-b-9gjljn28mr {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.empty-state[b-9gjljn28mr] {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state .icon[b-9gjljn28mr] {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-state h2[b-9gjljn28mr] {
    color: #374151;
    margin-bottom: 0.5rem;
}

.empty-state p[b-9gjljn28mr] {
    color: #6b7280;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .checkout-layout[b-9gjljn28mr] {
        grid-template-columns: 1fr;
    }
    
    .order-summary-sidebar[b-9gjljn28mr] {
        order: -1;
    }
    
    .form-grid[b-9gjljn28mr] {
        grid-template-columns: 1fr;
    }
    
    .step-actions[b-9gjljn28mr] {
        flex-direction: column;
    }
    
    .confirmation-actions[b-9gjljn28mr] {
        flex-direction: column;
    }
    
    .progress-indicator[b-9gjljn28mr] {
        gap: 0.5rem;
    }
    
    .step[b-9gjljn28mr] {
        min-width: 80px;
        padding: 0.5rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .order-item[b-9gjljn28mr] {
        flex-direction: column;
        text-align: center;
    }
    
    .order-item img[b-9gjljn28mr] {
        width: 120px;
        height: 120px;
    }
}
/* /Pages/DecoCase.razor.rz.scp.css */
/* DecoCase Page Styles */

.decocase-page[b-m2joe7o3tp] {
    min-height: 100vh;
    background: linear-gradient(to bottom, #f8f9ff 0%, #ffffff 40%);
}

/* Loading State */
.loading-container[b-m2joe7o3tp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    gap: 1.5rem;
}

.loading-spinner[b-m2joe7o3tp] {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(124, 58, 237, 0.2);
    border-top-color: #7c3aed;
    border-radius: 50%;
    animation: spin-b-m2joe7o3tp 1s linear infinite;
}

@keyframes spin-b-m2joe7o3tp {
    to {
        transform: rotate(360deg);
    }
}

.loading-container p[b-m2joe7o3tp] {
    font-size: 1.1rem;
    color: #6b7280;
}

/* Error State */
.error-container[b-m2joe7o3tp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    gap: 1.5rem;
    text-align: center;
    padding: 2rem;
}

.error-icon[b-m2joe7o3tp] {
    font-size: 4rem;
}

.error-container h2[b-m2joe7o3tp] {
    font-size: 2rem;
    color: #1f2937;
    margin: 0;
}

.error-container p[b-m2joe7o3tp] {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 500px;
}

.error-actions[b-m2joe7o3tp] {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-back[b-m2joe7o3tp],
.btn-retry[b-m2joe7o3tp] {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-back[b-m2joe7o3tp] {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.btn-back:hover[b-m2joe7o3tp] {
    background: #e5e7eb;
}

.btn-retry[b-m2joe7o3tp] {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    color: white;
    border: none;
}

.btn-retry:hover[b-m2joe7o3tp] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

/* Breadcrumb Navigation */
.breadcrumb[b-m2joe7o3tp] {
    padding: 1.5rem 2rem;
    font-size: 0.95rem;
    color: #6b7280;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.breadcrumb a[b-m2joe7o3tp] {
    color: #7c3aed;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover[b-m2joe7o3tp] {
    color: #5b21b6;
    text-decoration: underline;
}

.breadcrumb .separator[b-m2joe7o3tp] {
    margin: 0 0.5rem;
    color: #9ca3af;
}

.breadcrumb .current[b-m2joe7o3tp] {
    color: #1f2937;
    font-weight: 500;
}

/* Hero Section */
.case-hero[b-m2joe7o3tp] {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
}

.case-hero img[b-m2joe7o3tp] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-placeholder[b-m2joe7o3tp] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    color: white;
    font-size: 1.5rem;
}

.hero-overlay[b-m2joe7o3tp] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 3rem 2rem 2rem;
}

.hero-content[b-m2joe7o3tp] {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-overlay h1[b-m2joe7o3tp] {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.name-chi[b-m2joe7o3tp] {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Case Information Section */
.case-info-section[b-m2joe7o3tp] {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.info-grid[b-m2joe7o3tp] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-item[b-m2joe7o3tp] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-item:hover[b-m2joe7o3tp] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.1);
}

.info-icon[b-m2joe7o3tp] {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.info-content[b-m2joe7o3tp] {
    flex: 1;
}

.info-content label[b-m2joe7o3tp] {
    display: block;
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.info-value[b-m2joe7o3tp] {
    display: block;
    font-size: 1.1rem;
    color: #1f2937;
    font-weight: 600;
}

/* Case Description */
.case-description[b-m2joe7o3tp] {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.section-title[b-m2joe7o3tp] {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.description-text[b-m2joe7o3tp] {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1rem;
}

.desc-section-title[b-m2joe7o3tp] {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 1.5rem 0 0.5rem;
    padding-bottom: 0.25rem;
    border-bottom: 2px solid #e5e7eb;
}

.desc-subsection-title[b-m2joe7o3tp] {
    font-size: 1.05rem;
    font-weight: 600;
    color: #374151;
    margin: 1rem 0 0.35rem;
}

.desc-paragraph[b-m2joe7o3tp] {
    margin: 0.4rem 0;
    color: #4b5563;
}

.desc-list[b-m2joe7o3tp] {
    margin: 0.25rem 0 0.5rem 1.25rem;
    padding: 0;
    list-style: disc;
}

.desc-bullet[b-m2joe7o3tp] {
    margin: 0.2rem 0;
    color: #4b5563;
}

.description-chi[b-m2joe7o3tp] {
    font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
    color: #6b7280;
}

/* Image Galleries Section */
.image-galleries-section[b-m2joe7o3tp] {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.gallery-tabs[b-m2joe7o3tp] {
    margin-top: 1.5rem;
}

.tab-content[b-m2joe7o3tp] {
    padding: 2rem 0;
}

.no-galleries[b-m2joe7o3tp] {
    text-align: center;
    padding: 3rem 2rem;
    color: #6b7280;
    font-size: 1.1rem;
}

/* Related Cases Section */
.related-cases-section[b-m2joe7o3tp] {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem 4rem;
}

.related-cases-grid[b-m2joe7o3tp] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.related-case-card[b-m2joe7o3tp] {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-case-card:hover[b-m2joe7o3tp] {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.15);
}

.related-case-image[b-m2joe7o3tp] {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #e0e7ff 0%, #f3f4f6 100%);
}

.related-case-image img[b-m2joe7o3tp] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-case-card:hover .related-case-image img[b-m2joe7o3tp] {
    transform: scale(1.05);
}

.no-image-placeholder[b-m2joe7o3tp] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 1rem;
}

.related-case-info[b-m2joe7o3tp] {
    padding: 1.25rem;
}

.related-case-info h3[b-m2joe7o3tp] {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.region-info[b-m2joe7o3tp] {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
}

.view-all-link[b-m2joe7o3tp] {
    margin-top: 2rem;
    text-align: center;
}

.view-all-link a[b-m2joe7o3tp] {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-link a:hover[b-m2joe7o3tp] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

/* Responsive Design */

/* Tablet */
@media (max-width: 1150px) {
    .hero-overlay h1[b-m2joe7o3tp] {
        font-size: 2rem;
    }

    .name-chi[b-m2joe7o3tp] {
        font-size: 1.5rem;
    }

    .related-cases-grid[b-m2joe7o3tp] {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .breadcrumb[b-m2joe7o3tp] {
        padding: 1rem;
        font-size: 0.85rem;
    }

    .case-hero[b-m2joe7o3tp] {
        height: 300px;
    }

    .hero-overlay[b-m2joe7o3tp] {
        padding: 2rem 1rem 1rem;
    }

    .hero-overlay h1[b-m2joe7o3tp] {
        font-size: 1.5rem;
    }

    .name-chi[b-m2joe7o3tp] {
        font-size: 1.2rem;
    }

    .case-info-section[b-m2joe7o3tp],
    .case-description[b-m2joe7o3tp],
    .image-galleries-section[b-m2joe7o3tp],
    .related-cases-section[b-m2joe7o3tp] {
        padding: 0 1rem;
    }

    .info-grid[b-m2joe7o3tp] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .info-item[b-m2joe7o3tp] {
        padding: 1rem;
    }

    .section-title[b-m2joe7o3tp] {
        font-size: 1.5rem;
    }

    .description-text[b-m2joe7o3tp] {
        font-size: 1rem;
    }

    .related-cases-grid[b-m2joe7o3tp] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .error-actions[b-m2joe7o3tp] {
        flex-direction: column;
        width: 100%;
    }

    .btn-back[b-m2joe7o3tp],
    .btn-retry[b-m2joe7o3tp] {
        width: 100%;
    }
}

/* Info Banner for 360° Views Tab */
.tab-info-banner[b-m2joe7o3tp] {
    background: linear-gradient(to right, #ebf8ff, #bee3f8);
    border-left: 4px solid #3182ce;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon[b-m2joe7o3tp] {
    font-size: 24px;
    flex-shrink: 0;
}

.info-text[b-m2joe7o3tp] {
    flex: 1;
}

.info-text strong[b-m2joe7o3tp] {
    display: block;
    color: #2c5282;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-text p[b-m2joe7o3tp] {
    margin: 0;
    color: #2d3748;
    line-height: 1.5;
}

.info-text ul[b-m2joe7o3tp] {
    margin: 0.5rem 0 0 0;
    padding-left: 1.5rem;
    list-style: none;
}

.info-text li[b-m2joe7o3tp] {
    margin: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.info-text li strong[b-m2joe7o3tp] {
    display: inline;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .tab-info-banner[b-m2joe7o3tp] {
        padding: 1rem;
        gap: 0.75rem;
    }

    .tab-info-banner .info-icon[b-m2joe7o3tp] {
        font-size: 20px;
    }

    .info-text strong[b-m2joe7o3tp] {
        font-size: 1rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .loading-spinner[b-m2joe7o3tp],
    .related-case-card[b-m2joe7o3tp],
    .info-item[b-m2joe7o3tp],
    .btn-retry[b-m2joe7o3tp],
    .btn-back[b-m2joe7o3tp] {
        animation: none !important;
        transition: none !important;
    }

    .related-case-card:hover[b-m2joe7o3tp],
    .info-item:hover[b-m2joe7o3tp] {
        transform: none;
    }
}
/* /Pages/DecoCases.razor.rz.scp.css */
/* Page Container */
.decocases-page[b-bx3otce4fe] {
    width: 100%;
    min-height: 100vh;
    /*background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);*/
}

/* Hero Section */
.hero-section[b-bx3otce4fe] {
    width: 100%;
    padding: 4rem 2rem;
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    background: linear-gradient(135deg, #EDEBD0 0%, #EDD0D2 100%);
    color: rgba(90, 90, 90, 1);
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.hero-content h1[b-bx3otce4fe] {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-content p[b-bx3otce4fe] {
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.95;
}

/* Filters Section */
.filters-section[b-bx3otce4fe] {
    background: white;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.filters-container[b-bx3otce4fe] {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: flex-end;
}

.filter-item[b-bx3otce4fe] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 200px;
    flex: 1;
}

.filter-item label[b-bx3otce4fe] {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.filter-item select[b-bx3otce4fe],
.filter-item input[b-bx3otce4fe] {
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.filter-item select:hover[b-bx3otce4fe],
.filter-item input:hover[b-bx3otce4fe] {
    border-color: #cbd5e0;
}

.filter-item select:focus[b-bx3otce4fe],
.filter-item input:focus[b-bx3otce4fe] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-box[b-bx3otce4fe] {
    flex: 2;
}

/* Checkbox / Toggle Filter */
.checkbox-filter[b-bx3otce4fe] {
    min-width: 140px;
    flex: 0 0 auto;
}

.toggle-switch[b-bx3otce4fe] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    padding: 0.6rem 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    transition: all 0.3s ease;
    user-select: none;
    height: 48px;
    box-sizing: border-box;
}

.toggle-switch:hover[b-bx3otce4fe] {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.toggle-switch input[type="checkbox"][b-bx3otce4fe] {
    display: none;
}

.toggle-track[b-bx3otce4fe] {
    position: relative;
    width: 36px;
    height: 20px;
    background: #cbd5e0;
    border-radius: 999px;
    flex-shrink: 0;
    transition: background 0.25s ease;
}

.toggle-switch input:checked ~ .toggle-track[b-bx3otce4fe] {
    /*background: #667eea;*/
    background: #8dc6ee;
}

.toggle-thumb[b-bx3otce4fe] {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    transition: transform 0.25s ease;
}

.toggle-switch input:checked ~ .toggle-track .toggle-thumb[b-bx3otce4fe] {
    transform: translateX(16px);
}

.toggle-label[b-bx3otce4fe] {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4a5568;
    min-width: 2rem;
}

.btn-refresh[b-bx3otce4fe] {
    padding: 0.75rem 1.5rem;
    /*background: #667eea;*/
    /*color: white;*/
    background: #D0E1ED;
    color: rgba(90, 90, 90, 1);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-end;
}

    .btn-refresh:hover[b-bx3otce4fe] {
        /*background: #5568d3;*/
        background: #8dc6ee;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    }

.btn-refresh span[b-bx3otce4fe] {
    font-size: 1.2rem;
}

/* Cases Container */
.cases-container[b-bx3otce4fe] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Cases Grid */
.cases-grid[b-bx3otce4fe] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Case Card */
.case-card[b-bx3otce4fe] {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.case-card:hover[b-bx3otce4fe] {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.case-image-container[b-bx3otce4fe] {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
}

.case-image-container img[b-bx3otce4fe] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-card:hover .case-image-container img[b-bx3otce4fe] {
    transform: scale(1.05);
}

.no-image[b-bx3otce4fe] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    font-size: 1.1rem;
    font-weight: 600;
}

.image-count-badge[b-bx3otce4fe] {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

/* Case Info */
.case-info[b-bx3otce4fe] {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.case-name[b-bx3otce4fe] {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
    line-height: 1.3;
}

.case-name-chi[b-bx3otce4fe] {
    font-size: 1rem;
    color: #718096;
    margin: 0;
    line-height: 1.3;
}

.case-meta[b-bx3otce4fe] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: #4a5568;
}

.meta-item[b-bx3otce4fe] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.meta-icon[b-bx3otce4fe] {
    font-size: 1rem;
}

.case-description[b-bx3otce4fe] {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.5;
    margin: 0;
    margin-top: auto;
}

/* Loading State */
.loading-state[b-bx3otce4fe] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    gap: 1rem;
}

.spinner[b-bx3otce4fe] {
    width: 50px;
    height: 50px;
    border: 4px solid #e2e8f0;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin-b-bx3otce4fe 1s linear infinite;
}

@keyframes spin-b-bx3otce4fe {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-state p[b-bx3otce4fe] {
    font-size: 1.1rem;
    color: #4a5568;
}

/* Error State */
.error-state[b-bx3otce4fe] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    gap: 1.5rem;
    text-align: center;
}

.error-state p[b-bx3otce4fe] {
    font-size: 1.1rem;
    color: #e53e3e;
}

.btn-retry[b-bx3otce4fe] {
    padding: 0.75rem 2rem;
    background: #e53e3e;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-retry:hover[b-bx3otce4fe] {
    background: #c53030;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.3);
}

/* Empty State */
.empty-state[b-bx3otce4fe] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    gap: 1rem;
}

.empty-icon[b-bx3otce4fe] {
    font-size: 4rem;
    opacity: 0.5;
}

.empty-state h3[b-bx3otce4fe] {
    font-size: 1.5rem;
    color: #2d3748;
    margin: 0;
}

.empty-state p[b-bx3otce4fe] {
    font-size: 1.1rem;
    color: #718096;
    margin: 0;
}

/* Pagination */
.pagination-container[b-bx3otce4fe] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    gap: 0.75rem;
}

.pagination-controls[b-bx3otce4fe] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.page-btn[b-bx3otce4fe] {
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    color: #4a5568;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.page-btn:hover:not(:disabled)[b-bx3otce4fe] {
    border-color: #667eea;
    color: #667eea;
    background: #f0f4ff;
}

.page-btn.active[b-bx3otce4fe] {
    background: #667eea;
    border-color: #667eea;
    color: white;
}

.page-btn:disabled[b-bx3otce4fe] {
    opacity: 0.4;
    cursor: not-allowed;
}

.nav-btn[b-bx3otce4fe] {
    font-size: 1.1rem;
}

.pagination-info[b-bx3otce4fe] {
    font-size: 0.9rem;
    color: #718096;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1[b-bx3otce4fe] {
        font-size: 1.8rem;
    }

    .hero-content p[b-bx3otce4fe] {
        font-size: 1rem;
    }

    .filters-section[b-bx3otce4fe] {
        padding: 1.5rem;
    }

    .filters-container[b-bx3otce4fe] {
        flex-direction: column;
        gap: 1rem;
    }

    .filter-item[b-bx3otce4fe] {
        min-width: 100%;
    }

    .cases-container[b-bx3otce4fe] {
        padding: 1rem;
    }

    .cases-grid[b-bx3otce4fe] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .case-image-container[b-bx3otce4fe] {
        height: 200px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .cases-grid[b-bx3otce4fe] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .cases-grid[b-bx3otce4fe] {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1400px) {
    .cases-grid[b-bx3otce4fe] {
        grid-template-columns: repeat(4, 1fr);
    }
}
/* /Pages/DecorateProject/DecorateProject.razor.rz.scp.css */
.decorate-project-page[b-11d7mdanwf] {
    --decorate-project-mobile-nav-offset: 5.5rem;
    padding: var(--decorate-project-spacing-xl) var(--decorate-project-spacing-lg) calc(var(--decorate-project-spacing-xl) * 1.5);
    max-width: 1280px;
    margin: 0 auto;
    color: var(--decorate-project-color-text);
    font-family: "Noto Sans TC", "Microsoft JhengHei", "PingFang TC", "Heiti TC", "Source Han Sans TC", system-ui, -apple-system, sans-serif;
}

.decorate-project-page__layout[b-11d7mdanwf] {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: var(--decorate-project-spacing-lg);
    align-items: start;
}

.decorate-project-page__content[b-11d7mdanwf] {
    display: grid;
    gap: var(--decorate-project-spacing-lg);
}

[b-11d7mdanwf] .section-heading h2,
[b-11d7mdanwf] .stage-detail__header h2,
[b-11d7mdanwf] .hero-section h1 {
    margin: 0;
}

[b-11d7mdanwf] .section-heading p,
[b-11d7mdanwf] .hero-section__subtitle,
[b-11d7mdanwf] .stage-detail__header p {
    margin: 0;
    color: var(--decorate-project-color-muted);
}

[b-11d7mdanwf] .hero-section {
    display: grid;
    gap: var(--decorate-project-spacing-sm);
    padding: var(--decorate-project-spacing-xl);
    margin-bottom: var(--decorate-project-spacing-lg);
    background: linear-gradient(135deg, rgba(27, 30, 41, 0.96), rgba(49, 59, 90, 0.92));
    color: var(--decorate-project-color-surface);
    border-radius: 28px;
    box-shadow: 0 24px 64px rgba(17, 24, 39, 0.18);
}

[b-11d7mdanwf] .hero-section__eyebrow {
    margin: 0;
    font-size: 0.85rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

[b-11d7mdanwf] .hero-section__subtitle {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.8);
}

[b-11d7mdanwf] .process-overview,
[b-11d7mdanwf] .stage-detail,
[b-11d7mdanwf] .navigation-sidebar,
[b-11d7mdanwf] .contact-section {
    background: var(--decorate-project-color-surface);
    border: 1px solid var(--decorate-project-color-border);
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

[b-11d7mdanwf] .process-overview,
[b-11d7mdanwf] .contact-section {
    padding: var(--decorate-project-spacing-lg);
    margin-bottom: var(--decorate-project-spacing-lg);
}

[b-11d7mdanwf] .process-overview__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--decorate-project-spacing-md);
    margin-top: var(--decorate-project-spacing-md);
}

[b-11d7mdanwf] .stage-card {
    display: grid;
    gap: 0.6rem;
    padding: var(--decorate-project-spacing-md);
    text-decoration: none;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border: 1px solid color-mix(in srgb, var(--stage-accent) 20%, white);
    background: rgba(255, 255, 255, 0.98);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), color-mix(in srgb, var(--stage-accent) 8%, white));
    color: inherit;
    transition: transform var(--decorate-project-transition-speed) ease,
                box-shadow var(--decorate-project-transition-speed) ease,
                background-color var(--decorate-project-transition-speed) ease;
}

[b-11d7mdanwf] .stage-card__icon,
[b-11d7mdanwf] .stage-detail__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 3rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.05);
    background: color-mix(in srgb, var(--stage-accent) 14%, white);
    color: var(--stage-accent);
    font-weight: 700;
    transition: transform var(--decorate-project-transition-speed) ease;
}

[b-11d7mdanwf] .stage-card__title {
    font-weight: 700;
}

[b-11d7mdanwf] .stage-card__description {
    font-size: 0.95rem;
    color: var(--decorate-project-color-muted);
}

[b-11d7mdanwf] .stage-card__footer {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--stage-accent);
}

[b-11d7mdanwf] .navigation-sidebar {
    position: sticky;
    top: 1rem;
    padding: var(--decorate-project-spacing-md);
}

[b-11d7mdanwf] .navigation-sidebar__toggle,
[b-11d7mdanwf] .navigation-sidebar__backdrop {
    display: none;
}

[b-11d7mdanwf] .navigation-sidebar__toggle {
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 3.5rem;
    padding: 0.9rem 1.1rem;
    border: 1px solid var(--decorate-project-color-border);
    border-radius: 18px;
    background: var(--decorate-project-color-surface);
    color: var(--decorate-project-color-text);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
    font: inherit;
}

[b-11d7mdanwf] .navigation-sidebar__title {
    font-weight: 700;
    margin-bottom: var(--decorate-project-spacing-sm);
}

[b-11d7mdanwf] .navigation-sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

[b-11d7mdanwf] .navigation-sidebar a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.8rem 0.9rem;
    border-radius: 16px;
    text-decoration: none;
    color: var(--decorate-project-color-text);
    transition: background-color var(--decorate-project-transition-speed) ease,
                color var(--decorate-project-transition-speed) ease,
                transform var(--decorate-project-transition-speed) ease;
}

[b-11d7mdanwf] .navigation-sidebar a.is-active {
    background: rgba(15, 23, 42, 0.05);
    background: color-mix(in srgb, var(--decorate-project-color-primary) 12%, white);
    color: var(--decorate-project-color-primary);
    font-weight: 700;
}

[b-11d7mdanwf] .stage-detail {
    padding: var(--decorate-project-spacing-lg);
    display: grid;
    gap: var(--decorate-project-spacing-md);
    border-left: 6px solid var(--stage-accent);
    scroll-margin-top: 1rem;
}

[b-11d7mdanwf] .stage-detail__header {
    display: grid;
    gap: 0.75rem;
}

[b-11d7mdanwf] .stage-detail__content {
    display: grid;
    gap: var(--decorate-project-spacing-md);
}

[b-11d7mdanwf] .key-points-list h3 {
    margin-bottom: 0.75rem;
}

[b-11d7mdanwf] .key-points-list ul,
[b-11d7mdanwf] .key-points-list ol {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--decorate-project-color-muted);
}

[b-11d7mdanwf] .key-points-list li + li {
    margin-top: 0.55rem;
}

[b-11d7mdanwf] .contact-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--decorate-project-spacing-sm);
    margin-top: var(--decorate-project-spacing-md);
}

[b-11d7mdanwf] .contact-section__summary-grid,
[b-11d7mdanwf] .contact-section__content {
    display: grid;
    gap: var(--decorate-project-spacing-md);
}

[b-11d7mdanwf] .contact-section__summary-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    margin-top: var(--decorate-project-spacing-md);
}

[b-11d7mdanwf] .contact-section__summary-card,
[b-11d7mdanwf] .contact-section__social,
[b-11d7mdanwf] .contact-section__info {
    display: grid;
    gap: 0.65rem;
    padding: var(--decorate-project-spacing-md);
    border-radius: 20px;
    border: 1px solid var(--decorate-project-color-border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 251, 0.94));
}

[b-11d7mdanwf] .contact-section__summary-card h3,
[b-11d7mdanwf] .contact-section__social h3,
[b-11d7mdanwf] .contact-section__info h3 {
    margin: 0;
}

[b-11d7mdanwf] .contact-section__summary-card p,
[b-11d7mdanwf] .contact-section__social p,
[b-11d7mdanwf] .contact-section__info p {
    margin: 0;
    color: var(--decorate-project-color-muted);
}

[b-11d7mdanwf] .contact-section__content {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    margin-top: var(--decorate-project-spacing-md);
}

[b-11d7mdanwf] .contact-section__social-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--decorate-project-spacing-sm);
}

[b-11d7mdanwf] .contact-section__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    color: var(--decorate-project-color-primary);
    /* Fallback for browsers without color-mix support. */
    background: rgba(var(--decorate-project-color-primary-rgb), 0.1);
    background: color-mix(in srgb, var(--decorate-project-color-primary) 10%, white);
    transition: transform var(--decorate-project-transition-speed) ease,
                box-shadow var(--decorate-project-transition-speed) ease,
                background-color var(--decorate-project-transition-speed) ease;
}

[b-11d7mdanwf] .contact-section__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 0.75rem 1.1rem;
    border-radius: 999px;
    text-decoration: none;
    color: var(--decorate-project-color-surface);
    background: var(--decorate-project-color-primary);
    transition: transform var(--decorate-project-transition-speed) ease,
                box-shadow var(--decorate-project-transition-speed) ease,
                background-color var(--decorate-project-transition-speed) ease;
}

[b-11d7mdanwf] .contact-section__link--secondary {
    color: var(--decorate-project-color-primary);
    background: color-mix(in srgb, var(--decorate-project-color-primary) 10%, white);
}

@media (hover: hover) and (pointer: fine) {
    [b-11d7mdanwf] .stage-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
    }

    [b-11d7mdanwf] .stage-card:hover .stage-card__icon {
        transform: scale(1.08) rotate(var(--decorate-project-stage-icon-hover-rotation));
    }

    [b-11d7mdanwf] .navigation-sidebar a:hover {
        background: color-mix(in srgb, var(--decorate-project-color-primary) 8%, white);
        transform: translateX(2px);
    }

    [b-11d7mdanwf] .contact-section__link:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(27, 110, 194, 0.18);
    }

    [b-11d7mdanwf] .contact-section__social-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(27, 110, 194, 0.12);
    }
}

[b-11d7mdanwf] .stage-card:active,
[b-11d7mdanwf] .navigation-sidebar a:active,
[b-11d7mdanwf] .navigation-sidebar__toggle:active,
[b-11d7mdanwf] .contact-section__link:active,
[b-11d7mdanwf] .contact-section__social-link:active {
    transform: translateY(0);
}

[b-11d7mdanwf] .stage-card,
[b-11d7mdanwf] .navigation-sidebar a,
[b-11d7mdanwf] .navigation-sidebar__toggle,
[b-11d7mdanwf] .contact-section__link,
[b-11d7mdanwf] .contact-section__social-link {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

@media (min-width: 1200px) {
    [b-11d7mdanwf] .process-overview__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1199px) {
    .decorate-project-page[b-11d7mdanwf] {
        padding-inline: var(--decorate-project-spacing-md);
    }

    .decorate-project-page__layout[b-11d7mdanwf] {
        grid-template-columns: 1fr;
    }

    [b-11d7mdanwf] .navigation-sidebar {
        position: static;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    [b-11d7mdanwf] .process-overview__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .decorate-project-page[b-11d7mdanwf] {
        padding: var(--decorate-project-spacing-lg) var(--decorate-project-spacing-sm) calc(var(--decorate-project-spacing-xl) * 1.2 + var(--decorate-project-mobile-nav-offset) + env(safe-area-inset-bottom));
    }

    [b-11d7mdanwf] .hero-section,
    [b-11d7mdanwf] .process-overview,
    [b-11d7mdanwf] .stage-detail,
    [b-11d7mdanwf] .contact-section,
    [b-11d7mdanwf] .navigation-sidebar {
        padding: var(--decorate-project-spacing-md);
    }

    [b-11d7mdanwf] .process-overview__grid {
        grid-template-columns: 1fr;
    }

    [b-11d7mdanwf] .navigation-sidebar__toggle {
        position: fixed;
        left: var(--decorate-project-spacing-sm);
        right: var(--decorate-project-spacing-sm);
        bottom: calc(var(--decorate-project-spacing-sm) + env(safe-area-inset-bottom));
        display: flex;
        z-index: 40;
    }

    [b-11d7mdanwf] .navigation-sidebar__backdrop {
        position: fixed;
        inset: 0;
        display: block;
        border: 0;
        padding: 0;
        background: rgba(15, 23, 42, 0.28);
        z-index: 30;
    }

    [b-11d7mdanwf] .navigation-sidebar {
        position: fixed;
        left: var(--decorate-project-spacing-sm);
        right: var(--decorate-project-spacing-sm);
        bottom: calc(var(--decorate-project-mobile-nav-offset) - 0.25rem + env(safe-area-inset-bottom));
        z-index: 35;
        max-height: min(70vh, 30rem);
        overflow-y: auto;
        transform: translateY(calc(100% + var(--decorate-project-spacing-md)));
        opacity: 0;
        pointer-events: none;
        transition: transform var(--decorate-project-transition-speed) ease,
                    opacity var(--decorate-project-transition-speed) ease;
    }

    [b-11d7mdanwf] .navigation-sidebar.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    [b-11d7mdanwf] .navigation-sidebar a {
        min-height: 3.25rem;
    }

    [b-11d7mdanwf] .contact-section__actions {
        flex-direction: column;
    }

    [b-11d7mdanwf] .contact-section__content {
        grid-template-columns: 1fr;
    }

    [b-11d7mdanwf] .contact-section__link,
    [b-11d7mdanwf] .contact-section__social-link {
        width: 100%;
    }
}

@keyframes fadeIn-b-11d7mdanwf {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

[b-11d7mdanwf] .fade-in {
    animation: fadeIn-b-11d7mdanwf 0.6s ease-out;
}

@keyframes slideInLeft-b-11d7mdanwf {
    from {
        opacity: 0;
        transform: translateX(-24px);
    }

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

@keyframes slideInRight-b-11d7mdanwf {
    from {
        opacity: 0;
        transform: translateX(24px);
    }

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

[b-11d7mdanwf] .slide-in-left {
    animation: slideInLeft-b-11d7mdanwf 0.6s ease-out;
}

[b-11d7mdanwf] .slide-in-right {
    animation: slideInRight-b-11d7mdanwf 0.6s ease-out;
}

@media (prefers-reduced-motion: reduce) {
    [b-11d7mdanwf] .fade-in,
    [b-11d7mdanwf] .slide-in-left,
    [b-11d7mdanwf] .slide-in-right {
        animation: none;
    }

    [b-11d7mdanwf] .stage-card,
    [b-11d7mdanwf] .stage-card__icon,
    [b-11d7mdanwf] .navigation-sidebar a,
    [b-11d7mdanwf] .navigation-sidebar__toggle,
    [b-11d7mdanwf] .contact-section__link,
    [b-11d7mdanwf] .contact-section__social-link {
        transition: none;
    }

    html[b-11d7mdanwf],
    body[b-11d7mdanwf] {
        scroll-behavior: auto;
    }
}
/* /Pages/Info.razor.rz.scp.css */
.floatTxt[b-yxt9w334bw] {
    display: block;
    position: absolute;
    top: 28%;
    left: 44%;
    font-size: 48px;
    color: white;
    text-shadow: 5px 5px 10px #000000D0;
    width: 10px;
    z-index: 15;
    pointer-events: none;
    transform: translateZ(0);
}

.centerbanner-nm[b-yxt9w334bw] {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 8px;
}

    .centerbanner-nm div[b-yxt9w334bw] {
        margin: 0px 5px;
    }

    .centerbanner-nm p[b-yxt9w334bw] {
        margin: 0;
        /*color: #333;*/
        color: rgba(90, 90, 90, 1);
    }

.centerbanner[b-yxt9w334bw] {
    display: grid;
    width: 100%;
    justify-content: center;
    justify-items: center;
    align-items: center;
    font-size: 26px;
    color: rgba(90, 90, 90, 1);
}

.cbsl[b-yxt9w334bw] {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 5px 5px;
    animation: pulse-animation-b-yxt9w334bw 1.5s infinite;
}

@keyframes pulse-animation-b-yxt9w334bw {
    0% {
        text-shadow: 0 12px 20px rgb(74, 144, 226, 0.90);
    }

    70% {
        text-shadow: 0 8px 20px rgba(50, 120, 202, 0.44);
    }

    100% {
        text-shadow: 0 8px 20px rgba(26, 96, 178, 0);
    }
}

    .centerbanner div[b-yxt9w334bw] {
        margin: 0px 5px;
    }

    .centerbanner p[b-yxt9w334bw] {
        margin: 0;
        color: #333;
    }

    .centerbanner:hover:not(:disabled)[b-yxt9w334bw] {
        transform: translateY(-2px);
        text-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
    }

/* Base styles */
.info-page-content[b-yxt9w334bw] {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header section */
.section-header[b-yxt9w334bw] {
    text-align: center;
    /*padding-top: 2rem;*/
    /*padding-bottom: 1.1rem;*/
}

    .section-header h3[b-yxt9w334bw] {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        margin: 0;
        color: #333;
    }

    .section-header h4[b-yxt9w334bw] {
        font-size: clamp(1.2rem, 3vw, 1.8rem);
        margin: 0 0 0.4rem 0;
        color: #333;
        font-weight: 600;
    }

    .section-header p[b-yxt9w334bw] {
        font-size: 1rem;
        color: #666;
        margin: 0;
    }

/* Image sections */
.section-intro-pic[b-yxt9w334bw] {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    padding: 1rem 0;
    cursor: pointer;
}

    .section-intro-pic.gridicon[b-yxt9w334bw] {
        display: grid;
        justify-content: space-evenly;
        grid-template-columns: 1fr 1fr;
        justify-items: center;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .section-intro-pic.icon[b-yxt9w334bw] {
        display: flex;
        justify-content: space-evenly;
        margin: 2rem 0;
        padding: 1rem 0;
    }

.image-container[b-yxt9w334bw] {
    position: relative;
    width: fit-content;
}

    .image-container.icon[b-yxt9w334bw] {
        position: relative;
        width: 128px;
    }
    .image-container.gridicon[b-yxt9w334bw] {
        position: relative;
        width: 128px;
        margin: 10px;
    }

.icon-title[b-yxt9w334bw] {
    display: grid;
    justify-content: center;
}

.gridicon-title[b-yxt9w334bw] {
    position: absolute;
    /*color: white;*/
    color: rgb(90,90,90,1);
    background: rgba(51, 51, 51, 0.1);
    padding: 8px 16px;
    border-radius: 72px;
    border: none;
    font-weight: 500;
    z-index: 35;
    font-size: 1.5rem;
    backdrop-filter: blur(1px);
    text-align: center;
    top: 0%;
    height: 128px;
    width: 128px;
    padding-top: 48px;
}

    .gridicon-title:hover[b-yxt9w334bw] {
        color: black;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        transform: translateY(-4px);
    }

.img-title[b-yxt9w334bw] {
    position: absolute;
    color: white;
    background: rgba(51, 51, 51, 0.8);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    z-index: 10;
    font-size: 0.9rem;
    backdrop-filter: blur(4px);
}

    .img-title.center[b-yxt9w334bw] {
        top: 39px;
        display: block;
        background: none;
        color: #ff6500;
        font-size: 3.5rem;
        text-align: center;
        justify-self:anchor-center;
    }

    .img-title.desc[b-yxt9w334bw] {
        top: 50px;
        left: 20px;
        display: block;
        background: none;
        color: #222;
        font-size: 1.2rem;
    }

    .img-title.angleview-desc[b-yxt9w334bw] {
        top: 315px;
        left: 128px;
    }

    .img-title.tl[b-yxt9w334bw] {
        top: -10px;
        left: 20px;
    }

    .img-title.rb[b-yxt9w334bw] {
        bottom: 20px;
        right: 32px;
    }

.img-grp[b-yxt9w334bw] {
    position:relative;
    bottom: 80px;
    display: flex;
    justify-content: space-evenly;
}

@media(max-width:800px) {
    .img-grp[b-yxt9w334bw] {
        bottom: 180px;
        display: block;
        justify-content: space-evenly;
    }

    .img-title[b-yxt9w334bw] {
        backdrop-filter: none;
    }

    .img-title.center[b-yxt9w334bw] {
        font-size: min(32px);
    }
        .img-title.center p[b-yxt9w334bw] {
            font-size: min(32px);
        }
}

.img-grp-title[b-yxt9w334bw] {
    position: relative;
    color: white;
    background: rgba(51, 51, 51, 0.4);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    z-index: 10;
    font-size: 1.2rem;
    backdrop-filter: blur(1px);
}

.svg-ico[b-yxt9w334bw] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    min-width: 28px;
    height: 28px;
    margin-right: 8px;
    border-radius: 8px;
    cursor: grab;
    user-select: none;
}

.info-logo[b-yxt9w334bw] {
    width: 100%;
    height: auto;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #f8f9fa;
    display: block;
}

    .info-logo:hover[b-yxt9w334bw] {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .info-logo.free[b-yxt9w334bw] {
        max-width: min(800px, 90vw);
        object-fit: cover;
    }

    .info-logo.icon[b-yxt9w334bw] {
        max-width: min(800px, 90vw);
        object-fit: cover;
        border-radius: 72px;
    }

    .info-logo.single[b-yxt9w334bw] {
        max-width: min(800px, 90vw);
        aspect-ratio: 2 / 1;
        object-fit: cover;
    }

    .info-logo.group[b-yxt9w334bw] {
        max-width: min(auto, 100%);
        aspect-ratio: 4 / 3;
        object-fit: cover;
    }

.withBlur:hover[b-yxt9w334bw] {
    filter: blur(1px);
    -webkit-filter: blur(1px);
}

/* Side-by-side pair of section-intro-pic blocks */
.section-intro-pic-pair[b-yxt9w334bw] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.section-intro-pic.pair-item[b-yxt9w334bw] {
    margin: 0;
    padding: 0;
    width: 100%;
}

.section-intro-pic.pair-item .image-container[b-yxt9w334bw] {
    width: 100%;
}

.section-intro-pic.pair-item .info-logo.free[b-yxt9w334bw] {
    max-width: 100%;
    width: 100%;
}

@media (max-width: 600px) {
    .section-intro-pic-pair[b-yxt9w334bw] {
        grid-template-columns: 1fr;
    }
}

/* Gallery section */
.section-info-gallery[b-yxt9w334bw] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    padding: 1rem 0;
}

@media (max-width: 480px) {
    .section-info-gallery[b-yxt9w334bw] {
        grid-template-columns: 1fr;
    }
}

.gallery-item[b-yxt9w334bw] {
    position: relative;
    width: 100%;
}

/* Contact form and showcase sections */
.section-showcase[b-yxt9w334bw] {
    margin: 3rem 0;
    padding: 2rem 0;
    min-height: 100px;
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

    .section-showcase[b-yxt9w334bw]::before {
        /* content: "Showcase Section - Content Coming Soon"; */
    }
/* /Pages/OrderDetail.razor.rz.scp.css */
.order-detail-shell[b-bw4k905jhd] {
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(1rem, 2vw, 2rem);
}

.loading-state[b-bw4k905jhd], .error-state[b-bw4k905jhd] {
    text-align: center;
    padding: 4rem 2rem;
}

.spinner[b-bw4k905jhd] {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f4f6;
    border-top: 4px solid #2563eb;
    border-radius: 50%;
    animation: spin-b-bw4k905jhd 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin-b-bw4k905jhd {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error-state .icon[b-bw4k905jhd] {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.error-state h2[b-bw4k905jhd] {
    color: #374151;
    margin-bottom: 0.5rem;
}

.error-state p[b-bw4k905jhd] {
    color: #6b7280;
    margin-bottom: 2rem;
}

.order-detail-header[b-bw4k905jhd] {
    margin-bottom: 2rem;
}

.breadcrumb[b-bw4k905jhd] {
    margin-bottom: 1rem;
}

.order-title[b-bw4k905jhd] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.order-title h1[b-bw4k905jhd] {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    margin: 0;
    color: #1f2937;
}

.status-badge[b-bw4k905jhd] {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: white;
}

.order-date[b-bw4k905jhd] {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

.order-detail-layout[b-bw4k905jhd] {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    align-items: start;
}

.order-main[b-bw4k905jhd] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-section[b-bw4k905jhd] {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem;
}

.detail-section h2[b-bw4k905jhd] {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.items-list[b-bw4k905jhd] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order-item[b-bw4k905jhd] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #f9fafb;
}

.order-item img[b-bw4k905jhd] {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.no-image[b-bw4k905jhd] {
    width: 80px;
    height: 80px;
    background: #f3f4f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #9ca3af;
    border: 1px solid #e5e7eb;
}

.item-details[b-bw4k905jhd] {
    flex: 1;
}

.item-details h3[b-bw4k905jhd] {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: #1f2937;
}

.item-options[b-bw4k905jhd] {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.item-options span:not(:last-child)[b-bw4k905jhd]:after {
    content: ' ? ';
    margin: 0 0.25rem;
}

.item-pricing[b-bw4k905jhd] {
    font-size: 0.875rem;
    color: #374151;
}

.item-total[b-bw4k905jhd] {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
}

.address-card[b-bw4k905jhd] {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
}

.address-card h3[b-bw4k905jhd] {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: #1f2937;
}

.address-card p[b-bw4k905jhd] {
    margin: 0.25rem 0;
    color: #374151;
}

.contact-info[b-bw4k905jhd] {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.contact-info p[b-bw4k905jhd] {
    margin: 0.25rem 0;
    font-size: 0.875rem;
}

.delivery-instructions[b-bw4k905jhd] {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.delivery-instructions strong[b-bw4k905jhd] {
    display: block;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.timeline[b-bw4k905jhd] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-item[b-bw4k905jhd] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
}

.timeline-item:not(:last-child)[b-bw4k905jhd]::after {
    content: '';
    position: absolute;
    left: 12px;
    top: 32px;
    bottom: -24px;
    width: 2px;
    background: #e5e7eb;
}

.timeline-item.completed[b-bw4k905jhd]::after {
    background: #10b981;
}

.timeline-marker[b-bw4k905jhd] {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e5e7eb;
    border: 4px solid white;
    flex-shrink: 0;
    margin-top: 2px;
}

.timeline-item.completed .timeline-marker[b-bw4k905jhd] {
    background: #10b981;
}

.timeline-content h4[b-bw4k905jhd] {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
    color: #1f2937;
}

.timeline-content p[b-bw4k905jhd] {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.timeline-content .tracking[b-bw4k905jhd] {
    margin-top: 0.5rem;
}

.tracking-number[b-bw4k905jhd] {
    font-family: monospace;
    font-weight: 600;
    color: #2563eb;
    background: #eff6ff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.order-sidebar[b-bw4k905jhd] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.summary-card[b-bw4k905jhd], .payment-card[b-bw4k905jhd], .action-card[b-bw4k905jhd] {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem;
}

.summary-card h3[b-bw4k905jhd], .payment-card h3[b-bw4k905jhd] {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.summary-line[b-bw4k905jhd] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.875rem;
}

.summary-line:last-child[b-bw4k905jhd] {
    border-bottom: none;
}

.summary-line.discount[b-bw4k905jhd] {
    color: #059669;
}

.summary-line.total[b-bw4k905jhd] {
    font-size: 1rem;
    font-weight: 600;
    border-top: 2px solid #e5e7eb;
    margin-top: 0.5rem;
    padding-top: 1rem;
    color: #1f2937;
}

.divider[b-bw4k905jhd] {
    height: 1px;
    background: #e5e7eb;
    margin: 1rem 0;
}

.payment-method[b-bw4k905jhd], .payment-status[b-bw4k905jhd], .transaction-id[b-bw4k905jhd] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.875rem;
}

.payment-method span:first-child[b-bw4k905jhd],
.payment-status span:first-child[b-bw4k905jhd],
.transaction-id span:first-child[b-bw4k905jhd] {
    color: #6b7280;
}

.status[b-bw4k905jhd] {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status.pending[b-bw4k905jhd] {
    background: #fef3c7;
    color: #92400e;
}

.status.paid[b-bw4k905jhd] {
    background: #d1fae5;
    color: #065f46;
}

.status.failed[b-bw4k905jhd] {
    background: #fee2e2;
    color: #991b1b;
}

.status.refunded[b-bw4k905jhd] {
    background: #f3f4f6;
    color: #374151;
}

.txn-id[b-bw4k905jhd] {
    font-family: monospace;
    font-size: 0.75rem;
    background: #f3f4f6;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    color: #374151;
}

@media (max-width: 768px) {
    .order-detail-layout[b-bw4k905jhd] {
        grid-template-columns: 1fr;
    }
    
    .order-sidebar[b-bw4k905jhd] {
        order: -1;
    }
    
    .order-title[b-bw4k905jhd] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .order-item[b-bw4k905jhd] {
        flex-direction: column;
        text-align: center;
    }
    
    .order-item img[b-bw4k905jhd],
    .no-image[b-bw4k905jhd] {
        width: 120px;
        height: 120px;
    }
    
    .timeline-item[b-bw4k905jhd] {
        gap: 0.75rem;
    }
    
    .timeline-item:not(:last-child)[b-bw4k905jhd]::after {
        left: 10px;
    }
    
    .timeline-marker[b-bw4k905jhd] {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .order-detail-shell[b-bw4k905jhd] {
        padding: 1rem;
    }
    
    .detail-section[b-bw4k905jhd],
    .summary-card[b-bw4k905jhd],
    .payment-card[b-bw4k905jhd],
    .action-card[b-bw4k905jhd] {
        padding: 1rem;
    }
}
/* /Pages/Orders.razor.rz.scp.css */
.orders-shell[b-i1on0d7hnn] {
    max-width: 1000px;
    margin: 0 auto;
    padding: clamp(1rem, 2vw, 2rem);
}

.orders-header[b-i1on0d7hnn] {
    margin-bottom: 2rem;
}

.page-title[b-i1on0d7hnn] {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.page-subtitle[b-i1on0d7hnn] {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

.loading-state[b-i1on0d7hnn], .empty-state[b-i1on0d7hnn] {
    text-align: center;
    padding: 4rem 2rem;
}

.spinner[b-i1on0d7hnn] {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f4f6;
    border-top: 4px solid #2563eb;
    border-radius: 50%;
    animation: spin-b-i1on0d7hnn 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin-b-i1on0d7hnn {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.empty-state .icon[b-i1on0d7hnn] {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-state h2[b-i1on0d7hnn] {
    color: #374151;
    margin-bottom: 0.5rem;
}

.empty-state p[b-i1on0d7hnn] {
    color: #6b7280;
    margin-bottom: 2rem;
}

.orders-list[b-i1on0d7hnn] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.order-card[b-i1on0d7hnn] {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.25s ease;
}

.order-card:hover[b-i1on0d7hnn] {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.order-header[b-i1on0d7hnn] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
}

.order-info h3[b-i1on0d7hnn] {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
    color: #1f2937;
}

.order-date[b-i1on0d7hnn] {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.status-badge[b-i1on0d7hnn] {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: white;
}

.order-details[b-i1on0d7hnn] {
    padding: 1.5rem;
}

.order-items[b-i1on0d7hnn] {
    margin-bottom: 1rem;
}

.order-item[b-i1on0d7hnn] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.order-item:last-child[b-i1on0d7hnn] {
    border-bottom: none;
}

.order-item img[b-i1on0d7hnn] {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.no-image[b-i1on0d7hnn] {
    width: 60px;
    height: 60px;
    background: #f3f4f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #9ca3af;
}

.item-info[b-i1on0d7hnn] {
    flex: 1;
}

.item-name[b-i1on0d7hnn] {
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.25rem;
    font-size: 0.875rem;
}

.item-options[b-i1on0d7hnn] {
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0 0 0.25rem;
}

.item-options span:not(:last-child)[b-i1on0d7hnn]:after {
    content: ' ? ';
    margin: 0 0.25rem;
}

.item-quantity[b-i1on0d7hnn] {
    font-size: 0.75rem;
    color: #374151;
    margin: 0;
}

.item-price[b-i1on0d7hnn] {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.875rem;
}

.more-items[b-i1on0d7hnn] {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0.5rem 0 0;
    font-style: italic;
}

.order-summary[b-i1on0d7hnn] {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
    margin-top: 1rem;
}

.summary-row[b-i1on0d7hnn] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.summary-row span:first-child[b-i1on0d7hnn] {
    color: #374151;
    font-weight: 500;
}

.total-amount[b-i1on0d7hnn] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
}

.tracking-info[b-i1on0d7hnn] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.tracking-info span:first-child[b-i1on0d7hnn] {
    color: #6b7280;
}

.tracking-number[b-i1on0d7hnn] {
    font-family: monospace;
    font-weight: 600;
    color: #2563eb;
    background: #eff6ff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.order-actions[b-i1on0d7hnn] {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
}

@media (max-width: 768px) {
    .order-header[b-i1on0d7hnn] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .order-actions[b-i1on0d7hnn] {
        flex-direction: column;
    }
    
    .order-item[b-i1on0d7hnn] {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 1rem 0;
    }
    
    .order-item img[b-i1on0d7hnn],
    .no-image[b-i1on0d7hnn] {
        width: 80px;
        height: 80px;
    }
    
    .summary-row[b-i1on0d7hnn] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .tracking-info[b-i1on0d7hnn] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    .orders-shell[b-i1on0d7hnn] {
        padding: 1rem;
    }
    
    .order-header[b-i1on0d7hnn],
    .order-details[b-i1on0d7hnn],
    .order-actions[b-i1on0d7hnn] {
        padding: 1rem;
    }
}
/* /Pages/ProductTypeList.razor.rz.scp.css */
.productTypeContainer[b-1twyk6fi67] {
    display: ruby;
}


.productTypeFrame[b-1twyk6fi67] {
    width: 256px;
    height: 256px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    margin: 8px 8px 8px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: floralwhite;
}

    .productTypeFrame:hover[b-1twyk6fi67] {
        /*background-color: gray;*/
        /*color: white;*/
        transform: translateY(-8px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

.imgFrame[b-1twyk6fi67] {
    /*display: flex;*/
    justify-content: center;
    align-items: center;
    align-items: baseline;
    margin-top: 15px;
    border-radius: 15px;
    overflow: hidden;
}

.productTypeImg[b-1twyk6fi67] {
    width: 172px;
    height: auto;
    object-fit: cover;
}

.descFrame[b-1twyk6fi67] {
    display: flex;
    justify-content: left;
    align-items: baseline;
    margin-top: 8px;
}

label[b-1twyk6fi67] {
    text-align: center;
}

@media (max-width:600px){
    .productTypeFrame[b-1twyk6fi67] {
        width: auto;
        height: auto;
    }
    .productTypeImg[b-1twyk6fi67] {
        width: 40vw;
    }
}
/* /Pages/Register.razor.rz.scp.css */
.align-body[b-w77jl3mmdw] {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    margin: 0;
}

.register-container[b-w77jl3mmdw] {
    background-color: white;
    padding: 2rem;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 512px;
}

h2[b-w77jl3mmdw] {
    text-align: center;
    color: #333;
}

.register-form[b-w77jl3mmdw] {
    display: flex;
    flex-direction: column;
}

.form-group[b-w77jl3mmdw] {
    margin-bottom: 15px;
}

label[b-w77jl3mmdw] {
    display: block;
    margin-bottom: 5px;
    color: #666;
}

.usrInput[b-w77jl3mmdw] {
    /*width: 100%;*/
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.pw[b-w77jl3mmdw] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

    .pw[b-w77jl3mmdw]::target-text {
        border-color: yellow;
    }

.invalid-msg[b-w77jl3mmdw] {
    color: #ff0000;
}

button[b-w77jl3mmdw] {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

    button:hover[b-w77jl3mmdw] {
        background-color: #0056b3;
    }
/* /Pages/RegistQ.razor.rz.scp.css */
.align-body[b-q8bnai8va0] {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
}

.register-container[b-q8bnai8va0] {
    background-color: white;
    padding: 2rem;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 512px;
}

h3[b-q8bnai8va0] {
    text-align: left;
    color: #333;
}

.regis-q-form[b-q8bnai8va0] {
    display: flex;
    float: right;
}

.goRegisBtn[b-q8bnai8va0] {
    text-align: right;
    padding: 8px 12px 8px 12px;
    border: none;
    border-radius: 5px;
    background-color: forestgreen;
    color:white;
}

    .goRegisBtn:hover[b-q8bnai8va0] {
        background-color: gray;
    }

    .goRegisBtn:active[b-q8bnai8va0]{
        background-color: dimgray;
    }

@media(max-width:620px) {

    .register-container[b-q8bnai8va0] {
        width: 100%;
        padding: 1rem;
    }
}
/* /Pages/Service.razor.rz.scp.css */
/* Base styles */
.service-page-content[b-x5cg7fsqyh] {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section */
.hero-section[b-x5cg7fsqyh] {
    width: 100%;
    padding: 4rem 2rem;
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    background: linear-gradient(135deg, #EDEBD0 0%, #EDD0D2 100%);
    color: rgba(90, 90, 90, 1);
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.hero-content h1[b-x5cg7fsqyh] {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-content p[b-x5cg7fsqyh] {
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.95;
}

/* Header section */
.section-header[b-x5cg7fsqyh] {
    text-align: center;
    /*padding-top: 2rem;*/
    /*padding-bottom: 1.1rem;*/
}

    .section-header h3[b-x5cg7fsqyh] {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        margin: 0;
        color: #333;
    }

    .section-header h4[b-x5cg7fsqyh] {
        font-size: clamp(1.2rem, 3vw, 1.8rem);
        margin: 0 0 0.4rem 0;
        color: #333;
        font-weight: 600;
    }

    .section-header p[b-x5cg7fsqyh] {
        font-size: 1rem;
        color: #666;
        margin: 0;
    }

.floatTxt[b-x5cg7fsqyh] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 12px rgba(0,0,0,0.7);
    background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 60%);
    border-radius: 12px;
    z-index: 15;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .floatTxt[b-x5cg7fsqyh] {
    opacity: 1;
}

/* Image sections */
.section-intro-pic[b-x5cg7fsqyh] {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    padding: 1rem 0;
}

.image-container[b-x5cg7fsqyh] {
    position: relative;
    width: fit-content;
}

.img-title[b-x5cg7fsqyh] {
    position: absolute;
    top: -10px;
    left: 20px;
    color: white;
    background: rgba(51, 51, 51, 0.8);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    z-index: 10;
    font-size: 0.9rem;
    backdrop-filter: blur(4px);
}

.info-logo[b-x5cg7fsqyh] {
    width: 100%;
    height: auto;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #f8f9fa;
    display: block;
}

    .info-logo:hover[b-x5cg7fsqyh] {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .info-logo.single[b-x5cg7fsqyh] {
        max-width: min(800px, 90vw);
        aspect-ratio: 2 / 1;
        object-fit: cover;
    }

    .info-logo.group[b-x5cg7fsqyh] {
        max-width: min(auto, 100%);
        aspect-ratio: 4 / 3;
        object-fit: cover;
    }

.gallery-item:hover .withBlur[b-x5cg7fsqyh] {
    filter: blur(2px);
    -webkit-filter: blur(2px);
}

/* Gallery section */
.section-info-gallery[b-x5cg7fsqyh] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    padding: 1rem 0;
}

.gallery-item[b-x5cg7fsqyh] {
    position: relative;
    width: 100%;
}


/* Map section */
.section-map[b-x5cg7fsqyh] {
    margin: 3rem 0;
    padding: 1rem 0;
}

.map-container[b-x5cg7fsqyh] {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

.hk-map[b-x5cg7fsqyh] {
    width: 100%;
    height: auto;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #c6ecff;
    display: block;
}

    .hk-map:hover[b-x5cg7fsqyh] {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

.map-dtl-info[b-x5cg7fsqyh] {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.4rem 0.75rem;
    border-left: 3px solid #aaa;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(4px);
    border-radius: 0 6px 6px 0;
    transition: border-left-color 0.25s ease;
    z-index: 10;
}

    .map-dtl-info span[b-x5cg7fsqyh] {
        display: block;
        font-size: 1.2rem;
        color: #333;
        font-weight: 500;
        white-space: nowrap;
        line-height: 1.5;
    }

    .map-dtl-info:hover[b-x5cg7fsqyh] {
        border-left-color: #e74c3c;
    }

.map-legend[b-x5cg7fsqyh] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    color: #555;
    justify-content: center;
}

.legend-dot[b-x5cg7fsqyh] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4a90e2;
    flex-shrink: 0;
}


/* Workflow section */
.section-workflow[b-x5cg7fsqyh] {
    margin: 3rem 0;
    padding: 1rem 0;
}

.workflow-grid[b-x5cg7fsqyh] {
    display: block;
    /*display: grid;*/
    /*grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));*/
    /*gap: 1.25rem;*/
    margin-top: 1.5rem;
}

.workflow-step[b-x5cg7fsqyh] {
    display: flex;
    margin: 8px;
    align-items: flex-start;
    gap: 1rem;
    background: #ffffff;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .workflow-step:hover[b-x5cg7fsqyh] {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(74, 144, 226, 0.15);
        border-color: #c8d9f0;
    }

.step-badge[b-x5cg7fsqyh] {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    /*background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);*/
    background: #8dc6ee;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .step-badge svg[b-x5cg7fsqyh] {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

.step-content[b-x5cg7fsqyh]{
    width: 90vw;
}

.step-content h5[b-x5cg7fsqyh] {
    margin: 0 0 0.35rem 0;
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

.step-content p[b-x5cg7fsqyh] {
    margin: 0;
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
}

.step-content span[b-x5cg7fsqyh] {
    display: flex;
    width: 256px;
}

.step-content-row[b-x5cg7fsqyh] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}

    .step-content-row p[b-x5cg7fsqyh] {
        flex: 1;
        margin: 0;
    }

.step-nav-btn[b-x5cg7fsqyh] {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
    border: none;
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(74, 144, 226, 0.35);
    transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

    .step-nav-btn:hover[b-x5cg7fsqyh] {
        background: linear-gradient(135deg, #357abd 0%, #2a6099 100%);
        transform: translateX(3px);
        box-shadow: 0 4px 10px rgba(74, 144, 226, 0.45);
    }

/* Responsive Design */
@@media (max-width: 1024px) {
    .info-page-content[b-x5cg7fsqyh] {
        padding: 0 0.5rem;
    }

    .section-info-gallery[b-x5cg7fsqyh] {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .info-logo.single[b-x5cg7fsqyh] {
        max-width: min(600px, 95vw);
    }

    .img-title[b-x5cg7fsqyh] {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .contact-form-container[b-x5cg7fsqyh] {
        padding: 2rem;
    }

    .map-container[b-x5cg7fsqyh] {
        max-width: min(600px, 95vw);
    }

    .workflow-grid[b-x5cg7fsqyh] {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@@media (max-width: 768px) {
    .form-row[b-x5cg7fsqyh] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-actions[b-x5cg7fsqyh] {
        flex-direction: column;
        align-items: center;
    }

    .submit-btn[b-x5cg7fsqyh],
    .reset-btn[b-x5cg7fsqyh] {
        width: 100%;
        max-width: 280px;
    }

    .contact-form-container[b-x5cg7fsqyh] {
        padding: 1.5rem;
    }

    .form-header h4[b-x5cg7fsqyh] {
        font-size: 1.5rem;
    }
}

@@media (max-width: 480px) {
    .info-page-content[b-x5cg7fsqyh] {
        padding: 0 0.25rem;
    }

    .section-intro-pic[b-x5cg7fsqyh] {
        display: flex;
        justify-content: start;
        margin: 2rem 0;
        padding: 1rem 0;
    }

    .section-header h3[b-x5cg7fsqyh] {
        font-size: 1.5rem;
    }

    .section-info-gallery[b-x5cg7fsqyh] {
        gap: 1rem;
    }

    .info-logo.single[b-x5cg7fsqyh] {
        max-width: min(auto, 98vw);
    }

    .info-logo.group[b-x5cg7fsqyh] {
        max-width: min(auto, 98vw);
    }

    .section-map[b-x5cg7fsqyh] {
        margin: 2rem 0;
    }

    .map-container[b-x5cg7fsqyh] {
        max-width: 98vw;
    }

    .img-title[b-x5cg7fsqyh] {
        font-size: 0.7rem;
        padding: 3px 6px;
    }

    .contact-form-container[b-x5cg7fsqyh] {
        padding: 1rem;
    }

    .workflow-grid[b-x5cg7fsqyh] {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    .workflow-step[b-x5cg7fsqyh] {
        padding: 1rem;
    }

    .step-nav-btn[b-x5cg7fsqyh] {
        width: 1.75rem;
        height: 1.75rem;
    }

    .form-header h4[b-x5cg7fsqyh] {
        font-size: 1.3rem;
    }

    .form-actions[b-x5cg7fsqyh] {
        gap: 0.75rem;
    }

    .success-message[b-x5cg7fsqyh] {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Accessibility improvements */
@@media (prefers-reduced-motion: reduce) {
    .info-logo[b-x5cg7fsqyh],
    .hk-map[b-x5cg7fsqyh] {
        transition: none;
    }

        .info-logo:hover[b-x5cg7fsqyh],
        .hk-map:hover[b-x5cg7fsqyh] {
            transform: none;
        }

    .submit-btn:hover:not(:disabled)[b-x5cg7fsqyh] {
        transform: none;
    }

    .step-nav-btn:hover[b-x5cg7fsqyh] {
        transform: none;
    }

    .spinner[b-x5cg7fsqyh] {
        animation: none;
    }
}
/* /Shared/Login.razor.rz.scp.css */
.align-body[b-hipsjjjws3] {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
}

.login-container[b-hipsjjjws3] {
    background-color: white;
    padding: 5rem;
    border-radius: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 1, 0.1);
}

.h2[b-hipsjjjws3] {
    text-align: center;
    margin-bottom: 1rem;
}

.login-form[b-hipsjjjws3] {
    display: flex;
    flex-direction: column;
}

.form-group[b-hipsjjjws3] {
    margin-bottom: 15px;
}

.login-input[b-hipsjjjws3] {
    margin-bottom: 1rem;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.submitBtn[b-hipsjjjws3] {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 3px;
    cursor: pointer;
}

    .submitBtn:hover[b-hipsjjjws3] {
        background-color: #0056b3;
    }

.fotgotpw[b-hipsjjjws3] {
    border: none;
    background-color:white;
    color: darkviolet;
}

    .fotgotpw:hover[b-hipsjjjws3] {
        color: red;
    }

.error[b-hipsjjjws3] {
    color: red;
    margin-bottom: 10px;
}
/* /Shared/LoginRegister.razor.rz.scp.css */
.splitContainer[b-w82krwdw2d]{
    display:inline-block;
}

.splitPanel[b-w82krwdw2d] {
}

@media (max-width: 1023.98px) {

}

@media (min-width: 1024px) {
    .splitPanel[b-w82krwdw2d] {
        float: left;
        width: 50%;
    }
}
