/* _content/Fastlink.Gift.Web/Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-n2zlynory2] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-n2zlynory2] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/Fastlink.Gift.Web/Pages/GiftCategory.razor.rz.scp.css */
/* Gift Category Page Styles */

/* Gift Category Section */
.gift-category-section[b-tqkxu1bvvi] {
    background-color: #fff;
    min-height: 500px;
}

.category-title[b-tqkxu1bvvi] {
    color: var(--theme-default-color);
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 10px;
}


/* Gift Combo Cards */
.gift-category-section .row[b-tqkxu1bvvi] {
    display: flex;
    flex-wrap: wrap;
}

.gift-category-section .col-lg-3[b-tqkxu1bvvi],
.gift-category-section .col-md-6[b-tqkxu1bvvi] {
    display: flex;
    flex-direction: column;
}

.gift-combo-card[b-tqkxu1bvvi] {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .gift-combo-card:hover[b-tqkxu1bvvi] {
        transform: translateY(-5px);
        box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    }

    .gift-combo-card > a[b-tqkxu1bvvi] {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

.combo-image-wrapper[b-tqkxu1bvvi] {
    background-color: #e8e8e8;
    border-radius: 8px 8px 0 0;
    margin-bottom: 0;
    min-height: 200px;
    max-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid transparent;
    flex-shrink: 0;
}

    .combo-image-wrapper img[b-tqkxu1bvvi] {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

.combo-name[b-tqkxu1bvvi] {
    color: var(--theme-default-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
    padding: 15px 20px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-choose[b-tqkxu1bvvi] {
    background: linear-gradient(to right, #2a6dbb, #2e3191);
    color: #fff;
    border: none;
    padding: 8px 36px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    margin: 0 auto 20px auto;
    width: auto;
    flex-shrink: 0;
    display: block;
}

    .btn-choose:hover:not(:disabled)[b-tqkxu1bvvi] {
        color: #fff;
        background: linear-gradient(to right, #245a94, #241f7a);
        transform: scale(1.01);
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    }

.btn-unselect[b-tqkxu1bvvi] {
    background: linear-gradient(to right, #e74b5a, #c71526);
    color: #fff;
    border: none;
    padding: 8px 36px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    margin: 0 auto 20px auto;
    width: auto;
    flex-shrink: 0;
    display: block;
}

    .btn-unselect:hover[b-tqkxu1bvvi] {
        color: #fff;
        background: linear-gradient(to right, #cb4552, #9b1f2b);
        transform: scale(1.01);
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    }

    .btn-choose:disabled[b-tqkxu1bvvi], .btn-unselect:disabled[b-tqkxu1bvvi] {
        background: none;
        background-color: #999;
        color: #fff;
        cursor: not-allowed;
        opacity: 0.7;
    }


/* Responsive */
@media (max-width: 991px) {
    .category-title[b-tqkxu1bvvi] {
        font-size: 1.5rem;
    }

    .combo-image-wrapper[b-tqkxu1bvvi] {
        min-height: 180px;
    }
}

@media (max-width: 767px) {
    .category-title[b-tqkxu1bvvi] {
        font-size: 1.3rem;
    }

    .combo-image-wrapper[b-tqkxu1bvvi] {
        min-height: 150px;
    }

    .combo-name[b-tqkxu1bvvi] {
        font-size: 0.95rem;
        min-height: 40px;
    }
}
/* _content/Fastlink.Gift.Web/Pages/GiftDetail.razor.rz.scp.css */
/* Gift Detail Page Styles */

/* Page Title */
.page-title[b-4n8h4t8jtn] {
    color: var(--theme-default-color);
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
    padding-bottom: 10px;
    text-align: center;
}

/* Gift Detail Section */
.gift-detail-section[b-4n8h4t8jtn] {
    background-color: #fff;
    min-height: 600px;
}

    .gift-detail-section .section-title[b-4n8h4t8jtn] {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .gift-detail-section .title-underline[b-4n8h4t8jtn] {
        width: 100px;
    }

/* Product Images */

/* Thumbnails List */
.thumbnails-list[b-4n8h4t8jtn] {
    width: 100px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    /*justify-content: space-between;*/
    gap: 10px;
}

.thumbnail[b-4n8h4t8jtn] {
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
}

/* Desktop thumbnails */
@media (min-width: 992px) {
    .thumbnail[b-4n8h4t8jtn] {
        /*flex: 1;*/
    }
}

.thumbnail:hover[b-4n8h4t8jtn] {
    border-color: var(--theme-default-color);
}

.thumbnail.active[b-4n8h4t8jtn] {
    border-color: var(--theme-default-color);
    box-shadow: 0 0 5px rgba(0, 61, 130, 0.3);
}

.thumbnail img[b-4n8h4t8jtn] {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

/* Main Image Container */
.main-image-container[b-4n8h4t8jtn] {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .main-image-container img[b-4n8h4t8jtn] {
        width: 100%;
        height: 100%;
        object-fit: fill;
    }

.product-images[b-4n8h4t8jtn] {
    height: 470px
}
/* Responsive */
@media (max-width: 991px) {
    .product-images[b-4n8h4t8jtn] {
        flex-direction: column !important;
        padding: 10px;
    }

    .main-image-container[b-4n8h4t8jtn] {
        order: 1;
        margin-bottom: 15px;
    }

    .thumbnails-list[b-4n8h4t8jtn] {
        order: 2;
        width: 100% !important;
        height: auto !important;
        flex-direction: row !important;
    }

        .thumbnails-list .slick-slide[b-4n8h4t8jtn] {
            margin: 0 5px;
            float: none;
            display: inline-block !important;
            width: auto !important;
        }

            .thumbnails-list .slick-slide > div[b-4n8h4t8jtn] {
                margin-bottom: 0;
                display: block;
            }

    .thumbnail[b-4n8h4t8jtn] {
        width: 80px !important;
        height: 80px !important;
        margin: 0;
        flex: none !important;
        display: flex !important;
    }

        .thumbnail img[b-4n8h4t8jtn] {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .product-info[b-4n8h4t8jtn] {
        padding: 20px 10px;
    }
}
/* Product Info */
.product-info[b-4n8h4t8jtn] {
    padding: 0 20px;
}

.product-title[b-4n8h4t8jtn] {
    color: var(--theme-default-color);
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-category[b-4n8h4t8jtn] {
    color: var(--theme-default-color);
    font-size: 1rem;
    margin-bottom: 15px;
}

.product-rating[b-4n8h4t8jtn] {
    display: flex;
    gap: 5px;
}

    .product-rating i[b-4n8h4t8jtn] {
        color: #ffa500;
        font-size: 1.2rem;
    }

.product-meta[b-4n8h4t8jtn] {
    font-size: 0.95rem;
    color: #666;
}

.comment-count[b-4n8h4t8jtn] {
    color: var(--theme-default-color);
    font-weight: 500;
}

.stock-status[b-4n8h4t8jtn] {
    font-weight: 500;
}

.btn-choose[b-4n8h4t8jtn] {
    background: linear-gradient(to right, #2a6dbb, #2e3191);
    color: #fff;
    border: none;
    padding: 8px 36px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

    .btn-choose:hover:not(:disabled)[b-4n8h4t8jtn] {
        color: #fff;
        background: linear-gradient(to right, #245a94, #241f7a);
        transform: scale(1.01);
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    }

    .btn-choose:disabled[b-4n8h4t8jtn], .btn-unselect:disabled[b-4n8h4t8jtn] {
        background: none;
        background-color: #999;
        color: #fff;
        cursor: not-allowed;
        opacity: 0.7;
    }

.btn-unselect[b-4n8h4t8jtn] {
    background: linear-gradient(to right, #e74b5a, #c71526);
    color: #fff;
    border: none;
    padding: 8px 36px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

    .btn-unselect:hover[b-4n8h4t8jtn] {
        color: #fff;
        background: linear-gradient(to right, #cb4552, #9b1f2b);
        transform: scale(1.01);
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    }

/* Desktop Slick Styles */
@media (min-width: 992px) {
    .thumbnails-list .slick-track[b-4n8h4t8jtn] {
        display: flex !important;
        flex-direction: column !important;
    }

    .thumbnails-list .slick-slide[b-4n8h4t8jtn] {
        margin-bottom: 8px;
        height: auto !important;
    }

        .thumbnails-list .slick-slide > div[b-4n8h4t8jtn] {
            height: 100%;
        }

    .thumbnails-list[b-4n8h4t8jtn] {
        max-height: 470px !important;
    }
}

/* Mobile Slick Styles */
@media (max-width: 991px) {
    .thumbnails-list .slick-track[b-4n8h4t8jtn] {
        display: flex !important;
        flex-direction: row !important;
    }

    .thumbnails-list .slick-list[b-4n8h4t8jtn] {
        overflow: hidden;
    }

    .thumbnails-list .slick-slide[b-4n8h4t8jtn] {
        width: auto !important;
    }
}

/* Product Details Tabs */
.product-details-tabs[b-4n8h4t8jtn] {
    margin-top: 50px;
}

.detail-tabs[b-4n8h4t8jtn] {
    border: none;
}

    .detail-tabs .nav-item[b-4n8h4t8jtn] {
        border: 1px solid var(--theme-default-color);
    }

    .detail-tabs .nav-link[b-4n8h4t8jtn] {
        background-color: #f8f9fa;
        border: none;
        color: #333;
        font-size: 1rem;
        font-weight: 500;
        padding: 12px 24px;
    }

        .detail-tabs .nav-link:hover[b-4n8h4t8jtn] {
            color: var(--theme-default-color);
        }

        .detail-tabs .nav-link.active[b-4n8h4t8jtn] {
            background: linear-gradient(to right, #2a6dbb, #2e3191);
            color: #fff;
            border-radius: 0;
        }

.detail-content[b-4n8h4t8jtn] {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    line-height: 1.8;
}

    .detail-content p[b-4n8h4t8jtn] {
        color: var(--theme-default-color);
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

/* Responsive */
@media (max-width: 991px) {
    .product-title[b-4n8h4t8jtn] {
        font-size: 1.5rem;
    }

    .section-title[b-4n8h4t8jtn] {
        font-size: 1.1rem;
    }

    .product-images[b-4n8h4t8jtn] {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .product-title[b-4n8h4t8jtn] {
        font-size: 1.3rem;
    }

    .thumbnail[b-4n8h4t8jtn] {
        width: 60px;
        height: 60px;
    }

    .detail-tabs .nav-link[b-4n8h4t8jtn] {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}


/* Product Reviews Section */
.product-reviews-section[b-4n8h4t8jtn] {
    margin-top: 50px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Rating Overview */
.rating-overview[b-4n8h4t8jtn] {
    background-color: #fffbf8;
    border: 1px solid #f5f5f5;
    border-radius: 6px;
    padding: 24px;
    margin-bottom: 30px;
}

.rating-summary[b-4n8h4t8jtn] {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.average-rating[b-4n8h4t8jtn] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rating-number[b-4n8h4t8jtn] {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--theme-default-color);
    line-height: 1;
}

.rating-text[b-4n8h4t8jtn] {
    font-size: 0.9rem;
    color: var(--theme-default-color);
    margin-top: 5px;
}

.rating-stars[b-4n8h4t8jtn] {
    display: flex;
    gap: 5px;
}

    .rating-stars i[b-4n8h4t8jtn] {
        color: #ffc107;
        font-size: 1.5rem;
    }

/* Rating Filters */
.rating-filters[b-4n8h4t8jtn] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.filter-btn[b-4n8h4t8jtn] {
    background-color: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 2px;
    padding: 8px 16px;
    font-size: 0.875rem;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

    .filter-btn:hover[b-4n8h4t8jtn] {
        border-color: var(--theme-default-color);
        color: var(--theme-default-color);
    }

    .filter-btn.active[b-4n8h4t8jtn] {
        background-color: var(--theme-default-color);
        border-color: var(--theme-default-color);
        color: #fff;
    }

    .filter-btn .count[b-4n8h4t8jtn] {
        color: inherit;
    }

    .filter-btn.secondary[b-4n8h4t8jtn] {
        border: 1px solid #d9d9d9;
        background-color: #fff;
    }

        .filter-btn.secondary.active[b-4n8h4t8jtn] {
            background-color: #fff;
            border-color: #ee4d2d;
            color: #ee4d2d;
        }

/* Additional Filters */
.additional-filters[b-4n8h4t8jtn] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Reviews List */
.reviews-list[b-4n8h4t8jtn] {
    margin-top: 30px;
}

.review-item[b-4n8h4t8jtn] {
    background-color: #fff;
    border-bottom: 1px solid #f0f0f0;
    padding: 20px 0;
    transition: background-color 0.2s ease;
}

    .review-item:hover[b-4n8h4t8jtn] {
        background-color: #fafafa;
    }

    .review-item:last-child[b-4n8h4t8jtn] {
        border-bottom: none;
    }

.review-header[b-4n8h4t8jtn] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.reviewer-info[b-4n8h4t8jtn] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar[b-4n8h4t8jtn] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

    .reviewer-avatar img[b-4n8h4t8jtn] {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.reviewer-name[b-4n8h4t8jtn] {
    font-size: 0.875rem;
    color: #333;
    font-weight: 500;
}

.review-content[b-4n8h4t8jtn] {
    padding-left: 52px;
}

.review-rating[b-4n8h4t8jtn] {
    display: flex;
    gap: 3px;
    margin-bottom: 8px;
}

    .review-rating i[b-4n8h4t8jtn] {
        color: #ffc107;
        font-size: 0.875rem;
    }

.review-date[b-4n8h4t8jtn] {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 12px;
}

.review-text[b-4n8h4t8jtn] {
    font-size: 0.875rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 12px;
}

.review-images[b-4n8h4t8jtn] {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

    .review-images img[b-4n8h4t8jtn] {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 4px;
        border: 1px solid #f0f0f0;
        cursor: pointer;
        transition: transform 0.2s ease;
    }

        .review-images img:hover[b-4n8h4t8jtn] {
            transform: scale(1.05);
            border-color: var(--theme-default-color);
        }

.review-actions[b-4n8h4t8jtn] {
    display: flex;
    gap: 15px;
}

.btn-helpful[b-4n8h4t8jtn] {
    background: none;
    border: none;
    color: #666;
    font-size: 0.875rem;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s ease;
}

    .btn-helpful:hover[b-4n8h4t8jtn] {
        color: #ee4d2d;
    }

    .btn-helpful i[b-4n8h4t8jtn] {
        font-size: 1rem;
    }

/* Responsive */
@media (max-width: 767px) {
    .product-reviews-section[b-4n8h4t8jtn] {
        padding: 20px 15px;
    }

    .rating-overview[b-4n8h4t8jtn] {
        padding: 16px;
    }

    .rating-summary[b-4n8h4t8jtn] {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .rating-filters[b-4n8h4t8jtn] {
        gap: 8px;
    }

    .filter-btn[b-4n8h4t8jtn] {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .review-content[b-4n8h4t8jtn] {
        padding-left: 0;
        margin-top: 12px;
    }

    .reviewer-info[b-4n8h4t8jtn] {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .review-images img[b-4n8h4t8jtn] {
        width: 70px;
        height: 70px;
    }
}
/* _content/Fastlink.Gift.Web/Pages/Home.razor.rz.scp.css */
/* Homepage Specific Styles */

/* Menu Button */
.btn-menu[b-wnofwisa6u] {
    background-color: transparent;
    color: #003d82;
    border: none;
    padding: 8px 12px;
    font-size: 1.5rem;
}

    .btn-menu:hover[b-wnofwisa6u] {
        color: #002a5c;
    }

/* Login Button */
.btn-login[b-wnofwisa6u] {
    background-color: transparent;
    border: none;
    color: #003d82;
    font-size: 1.5rem;
    padding: 8px 12px;
    transition: color 0.3s ease;
}

    .btn-login:hover[b-wnofwisa6u] {
        color: #002a5c;
    }

/* Sidebar */
.sidebar[b-wnofwisa6u] {
    position: fixed;
    left: -280px;
    top: 0;
    width: 280px;
    height: 100%;
    background-color: #fff;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    z-index: 1050;
    transition: left 0.3s ease;
    overflow-y: auto;
}

    .sidebar.active[b-wnofwisa6u] {
        left: 0;
    }

.sidebar-header[b-wnofwisa6u] {
    padding: 20px;
    background-color: #003d82;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .sidebar-header h5[b-wnofwisa6u] {
        margin: 0;
        font-size: 1.2rem;
        font-weight: 600;
    }

.btn-close-sidebar[b-wnofwisa6u] {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

    .btn-close-sidebar:hover[b-wnofwisa6u] {
        opacity: 0.8;
    }

.sidebar-content[b-wnofwisa6u] {
    padding: 0;
}

.sidebar-menu[b-wnofwisa6u] {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .sidebar-menu li[b-wnofwisa6u] {
        border-bottom: 1px solid #eee;
    }

        .sidebar-menu li a[b-wnofwisa6u] {
            display: block;
            padding: 15px 20px;
            color: #333;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }

            .sidebar-menu li a:hover[b-wnofwisa6u] {
                background-color: #f0f0f0;
                color: #003d82;
            }

            .sidebar-menu li a i[b-wnofwisa6u] {
                margin-right: 10px;
                width: 20px;
                text-align: center;
            }

.sidebar-login[b-wnofwisa6u] {
    background-color: #003d82;
    color: #fff !important;
    font-weight: 600;
}

    .sidebar-login:hover[b-wnofwisa6u] {
        background-color: #002a5c !important;
        color: #fff !important;
    }

/* Language Submenu */
.sidebar-language[b-wnofwisa6u] {
    position: relative;
}

.language-submenu[b-wnofwisa6u] {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #f8f9fa;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.sidebar-language.active .language-submenu[b-wnofwisa6u] {
    max-height: 200px;
}

.language-submenu li[b-wnofwisa6u] {
    border-bottom: 1px solid #e0e0e0;
}

    .language-submenu li:last-child[b-wnofwisa6u] {
        border-bottom: none;
    }

    .language-submenu li a[b-wnofwisa6u] {
        padding: 12px 20px 12px 50px;
        font-size: 0.95rem;
        color: #666;
    }

        .language-submenu li a:hover[b-wnofwisa6u] {
            background-color: #e8e8e8;
        }

.language-toggle i.fa-chevron-down[b-wnofwisa6u] {
    transition: transform 0.3s ease;
}

.sidebar-language.active .language-toggle i.fa-chevron-down[b-wnofwisa6u] {
    transform: rotate(180deg);
}

/* Sidebar Overlay */
.sidebar-overlay[b-wnofwisa6u] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1040;
    display: none;
}

    .sidebar-overlay.active[b-wnofwisa6u] {
        display: block;
    }

/* Hero Banner Content */
.hero-title[b-wnofwisa6u] {
    margin-bottom: 20px;
}

.book-text[b-wnofwisa6u] {
    background-color: #2d4373;
    color: #fff;
    padding: 15px 30px;
    font-size: 3.5rem;
    font-weight: bold;
    border-radius: 10px;
    display: inline-block;
    margin-right: 15px;
}

.sub-text[b-wnofwisa6u] {
    color: #2d4373;
    font-size: 2.5rem;
    font-weight: 600;
}

.hero-subtitle[b-wnofwisa6u] {
    margin-top: 20px;
}

.chon-text[b-wnofwisa6u] {
    color: #2d4373;
    font-size: 4rem;
    font-weight: bold;
    display: inline-block;
}

.hero-image[b-wnofwisa6u] {
    display: none;
}

/* Gift Section */
.gift-section[b-wnofwisa6u] {
    background-color: #f8f9fa;
}

.section-title[b-wnofwisa6u] {
    color: var(--theme-default-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: uppercase;
    padding-bottom: 10px;
    display: inline-block;
}

.text-center.mb-5[b-wnofwisa6u] {
    position: relative;
}

    .text-center.mb-5[b-wnofwisa6u]::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0%;
        right: 0%;
        height: 1px;
        background-color: var(--theme-default-color);
    }

.gift-intro[b-wnofwisa6u] {
    display: none;
}

/* Gift Cards */
.gift-section .row[b-wnofwisa6u] {
    display: flex;
    flex-wrap: wrap;
}

.gift-section .col-lg-3[b-wnofwisa6u],
.gift-section .col-md-6[b-wnofwisa6u] {
    display: flex;
    flex-direction: column;
}

.gift-card[b-wnofwisa6u] {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .gift-card:hover[b-wnofwisa6u] {
        transform: translateY(-5px);
        box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    }

.gift-card-image[b-wnofwisa6u] {
    background-color: #e8e8e8;
    border-radius: 8px 8px 0 0;
    margin-bottom: 0;
    min-height: 200px;
    max-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid transparent;
    flex-shrink: 0;
}

    .gift-card-image img[b-wnofwisa6u] {
        width: 100% !important;
        max-width: 100% !important;
        height: 200px;
        object-fit: cover;
    }

.gift-card-body[b-wnofwisa6u] {
    padding: 20px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80px;
}

.gift-card-title[b-wnofwisa6u] {
    color: var(--theme-default-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.4;
    width: 100%;
}

.gift-card-description[b-wnofwisa6u] {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.gift-card-link[b-wnofwisa6u] {
    color: #2b7bb9;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    align-self: flex-end;
}

    .gift-card-link:hover[b-wnofwisa6u] {
        text-decoration: underline;
    }

/* Responsive Design */
@media (max-width: 991px) {
    .book-text[b-wnofwisa6u] {
        font-size: 2.5rem;
        padding: 10px 20px;
    }

    .sub-text[b-wnofwisa6u] {
        font-size: 2rem;
    }

    .chon-text[b-wnofwisa6u] {
        font-size: 3rem;
    }

    .lien-tay[b-wnofwisa6u] {
        font-size: 2.5rem;
    }

    .qua-text[b-wnofwisa6u] {
        font-size: 4rem;
    }

    .hero-banner[b-wnofwisa6u] {
        padding: 40px 0;
    }
}

@media (max-width: 767px) {
    .book-text[b-wnofwisa6u] {
        font-size: 2rem;
        padding: 8px 16px;
    }

    .sub-text[b-wnofwisa6u] {
        font-size: 1.5rem;
    }

    .chon-text[b-wnofwisa6u] {
        font-size: 2.5rem;
    }

    .lien-tay[b-wnofwisa6u] {
        font-size: 2rem;
    }

    .qua-text[b-wnofwisa6u] {
        font-size: 3rem;
    }

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

    .gift-card-image[b-wnofwisa6u] {
        min-height: 200px;
    }
}

/* Animation */
@keyframes fadeInUp-b-wnofwisa6u {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.gift-card[b-wnofwisa6u] {
    animation: fadeInUp-b-wnofwisa6u 0.6s ease-out;
}

    .gift-card:nth-child(1)[b-wnofwisa6u] {
        animation-delay: 0.1s;
    }

    .gift-card:nth-child(2)[b-wnofwisa6u] {
        animation-delay: 0.2s;
    }

    .gift-card:nth-child(3)[b-wnofwisa6u] {
        animation-delay: 0.3s;
    }

/* Modal Styles */
#giftModal .modal-dialog[b-wnofwisa6u] {
    max-width: 700px;
}

.modal-content[b-wnofwisa6u] {
    border: none;
    border-radius: 8px;
    overflow: hidden;
}

.modal-header[b-wnofwisa6u] {
    background-color: #27479d;
    border-bottom: none;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-logo[b-wnofwisa6u] {
    filter: brightness(0) invert(1);
}

.modal-body[b-wnofwisa6u] {
    padding: 30px 26px;
}

.modal-title[b-wnofwisa6u] {
    color: var(--theme-default-color);
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.modal-text[b-wnofwisa6u] {
    font-size: 1.3rem;
    line-height: 2;
    font-weight: 500;
    text-align: center;
}

.btn-view-detail[b-wnofwisa6u] {
    background-color: #3b5998;
    border: none;
    padding: 8px 36px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 4px;
}

    .btn-view-detail:hover[b-wnofwisa6u] {
        background-color: #2d4373;
    }
/* _content/Fastlink.Gift.Web/Pages/MyGift.razor.rz.scp.css */
/* My Gift Page Specific Styles */

.btn-warning[b-qwzll9uvv3] {
    background-color: #ffa500;
    border: none;
    color: #fff;
    padding: 5px 12px;
    font-weight: 500;
}

    .btn-warning:hover[b-qwzll9uvv3] {
        background-color: #ff8c00;
        color: #fff;
    }

/* Hero Content Visible */
.hero-content-visible[b-qwzll9uvv3] {
    display: block !important;
}

/* Page Title */
.page-title[b-qwzll9uvv3] {
    color: var(--theme-default-color);
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
    padding-bottom: 10px;
    display: inline-block;
}

/* Gift Tabs */
.gift-tabs[b-qwzll9uvv3] {
    border: none;
}

    .gift-tabs button[b-qwzll9uvv3] {
        border-radius: 0;
    }

    .gift-tabs .nav-item[b-qwzll9uvv3] {
        border: 1px solid #3b5998;
    }

    .gift-tabs .nav-link[b-qwzll9uvv3] {
        background-color: transparent;
        border: none;
        color: #666;
        font-size: 1.2rem;
        font-weight: 500;
        padding: 8px 24px;
        transition: all 0.3s ease;
    }

        .gift-tabs .nav-link:hover[b-qwzll9uvv3] {
            color: var(--theme-default-color);
        }

        .gift-tabs .nav-link.active[b-qwzll9uvv3] {
            background-color: var(--theme-default-color);
            color: #fff;
            border-radius: 0;
            border-bottom-color: var(--theme-default-color);
        }

/* Combo Cards */
.my-gift-section #current .row[b-qwzll9uvv3] {
    display: flex;
    flex-wrap: wrap;
}

.my-gift-section #current .col-lg-3[b-qwzll9uvv3],
.my-gift-section #current .col-md-6[b-qwzll9uvv3] {
    display: flex;
    flex-direction: column;
}

.combo-card[b-qwzll9uvv3] {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .combo-card:hover[b-qwzll9uvv3] {
        transform: translateY(-5px);
        box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    }

    .combo-card > a[b-qwzll9uvv3] {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

.text-center-custom[b-qwzll9uvv3] {
    margin-bottom: 0px !important;
    position: relative;
}

    .text-center-custom[b-qwzll9uvv3]::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background-color: var(--theme-default-color);
    }

.combo-image[b-qwzll9uvv3] {
    background-color: #e8e8e8;
    border-radius: 8px 8px 0 0;
    margin-bottom: 0;
    min-height: 200px;
    max-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid transparent;
    flex-shrink: 0;
}

    .combo-image img[b-qwzll9uvv3] {
        width: 100%;
        height: 200px;
        object-fit: fill;
    }

.combo-title[b-qwzll9uvv3] {
    color: #2b7bb9;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
    padding: 15px 20px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-select[b-qwzll9uvv3] {
    background-color: var(--theme-default-color);
    color: #fff;
    border: none;
    padding: 10px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    margin: 0 auto 20px auto;
    width: auto;
    flex-shrink: 0;
    display: block;
}

    .btn-select:hover[b-qwzll9uvv3] {
        background-color: #002a5c;
        color: #fff;
    }

/* Tab Content */
.tab-pane[b-qwzll9uvv3] {
    padding-bottom: 150px;
}

/* History Table */
.history-table[b-qwzll9uvv3] {
    border: 1px solid var(--theme-default-color);
    margin-top: 20px;
    border-collapse: collapse;
}

    .history-table thead[b-qwzll9uvv3] {
        color: #fff;
    }

        .history-table thead th[b-qwzll9uvv3] {
            background-color: var(--theme-default-color);
            color: #fff;
            padding: 15px;
            font-weight: 600;
            text-align: center;
            border: 1px solid #fff;
            vertical-align: middle;
            font-size: 1.1rem;
        }

    .history-table tbody td[b-qwzll9uvv3] {
        padding: 20px 15px;
        vertical-align: middle;
        text-align: center;
        border: 1px solid var(--theme-default-color);
    }

.time-cell[b-qwzll9uvv3] {
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--theme-default-color);
}

.date-cell[b-qwzll9uvv3] {
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--theme-default-color);
}

.gift-detail[b-qwzll9uvv3] {
    text-align: left;
    line-height: 1.6;
    color: var(--theme-default-color);
}

    .gift-detail strong[b-qwzll9uvv3] {
        color: #3b5998;
        font-size: 1.1rem;
    }

.status-badge[b-qwzll9uvv3] {
    background-color: transparent;
    color: #3b5998;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    display: inline-block;
    font-size: 1.1rem;
}

.btn-review[b-qwzll9uvv3] {
    background: linear-gradient(to right, #2a6dbb, #2e3191);
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

    .btn-review:hover[b-qwzll9uvv3] {
        color: #fff;
        background: linear-gradient(to right, #245a94, #241f7a);
        transform: scale(1.01);
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    }

.stars[b-qwzll9uvv3] {
    color: #3b5998;
    font-size: 1.1rem;
}

    .stars i[b-qwzll9uvv3] {
        margin: 0 2px;
    }

/* My Gift Section */
.my-gift-section[b-qwzll9uvv3] {
    background-color: #fff;
    min-height: 500px;
}

/* No Gift State */
.no-gift-container[b-qwzll9uvv3] {
    background-color: #fff;
    min-height: 400px;
}

.no-gift-title[b-qwzll9uvv3] {
    color: var(--theme-default-color);
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.no-gift-message[b-qwzll9uvv3] {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 0;
}

.no-gift-image[b-qwzll9uvv3] {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .no-gift-image img[b-qwzll9uvv3] {
        max-width: 100%;
        height: auto;
    }

.rating-stars[b-qwzll9uvv3] {
    display: flex;
    gap: 8px;
}

    .rating-stars i[b-qwzll9uvv3] {
        color: #33509a;
        font-size: 1.5rem;
        cursor: pointer;
        transition: color 0.2s ease;
    }

        .rating-stars i.active[b-qwzll9uvv3],
        .rating-stars i.hover[b-qwzll9uvv3] {
            color: #3b5998;
        }

.image-upload-box[b-qwzll9uvv3] {
    width: 150px;
    height: 150px;
    border: 2px dashed #ddd;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

    .image-upload-box:hover[b-qwzll9uvv3] {
        border-color: #3b5998;
        background-color: #f0f2f5;
    }

    .image-upload-box i[b-qwzll9uvv3] {
        font-size: 3rem;
        color: #999;
        margin-bottom: 10px;
    }

    .image-upload-box span[b-qwzll9uvv3] {
        font-size: 2rem;
        color: #999;
        position: absolute;
        margin-top: -20px;
    }

.image-preview-item[b-qwzll9uvv3] {
    width: 150px;
    height: 150px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #ddd;
}

    .image-preview-item img[b-qwzll9uvv3] {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.remove-image-btn[b-qwzll9uvv3] {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: rgba(255, 0, 0, 0.8);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background-color 0.3s ease;
}

    .remove-image-btn:hover[b-qwzll9uvv3] {
        background-color: rgba(255, 0, 0, 1);
    }

.btn-feedback[b-qwzll9uvv3] {
    background: linear-gradient(to right, #2a6dbb, #2e3191);
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

    .btn-feedback:hover[b-qwzll9uvv3] {
        color: #fff;
        background: linear-gradient(to right, #245a94, #241f7a);
        transform: scale(1.01);
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    }

.btn-choose[b-qwzll9uvv3] {
    background: linear-gradient(to right, #2a6dbb, #2e3191);
    color: #fff;
    border: none;
    padding: 8px 36px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    margin: 0 auto 20px auto;
    width: auto;
    flex-shrink: 0;
    display: block;
}

    .btn-choose:hover:not(:disabled)[b-qwzll9uvv3] {
        color: #fff;
        background: linear-gradient(to right, #245a94, #241f7a);
        transform: scale(1.01);
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    }


.btn-unselect[b-qwzll9uvv3] {
    background: linear-gradient(to right, #e74b5a, #c71526);
    color: #fff;
    border: none;
    padding: 8px 36px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    margin: 0 auto 20px auto;
    width: auto;
    flex-shrink: 0;
    display: block;
}

    .btn-unselect:hover[b-qwzll9uvv3] {
        color: #fff;
        background: linear-gradient(to right, #cb4552, #9b1f2b);
        transform: scale(1.01);
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    }

.btn-choose:disabled[b-qwzll9uvv3], .btn-unselect:disabled[b-qwzll9uvv3] {
    background: none;
    background-color: #999;
    color: #fff;
    cursor: not-allowed;
    opacity: 0.7;
}

/*image rating*/
.image-container[b-qwzll9uvv3] {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 4px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .image-container:hover[b-qwzll9uvv3] {
        transform: scale(1.03);
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        border-color: #ee4d2d;
    }

.image-grid .image-container[b-qwzll9uvv3] {
    flex: 0 0 calc(33.333% - 8px);
}

.nodata-container[b-qwzll9uvv3] {
    margin: 50px;
}

    .nodata-container .title[b-qwzll9uvv3] {
        font-size: 2rem;
        font-weight: 600;
        color: var(--theme-default-color);
    }

    .nodata-container .content[b-qwzll9uvv3] {
        font-size: 1.7rem;
        font-weight: 400;
    }

.preview-container .btn-sm[b-qwzll9uvv3] {
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    width: 18px;
    height: 18px;
    padding: 0;
    background-color: var(--theme-default-color);
    border-color: var(--theme-default-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-item:hover img[b-qwzll9uvv3] {
    transform: scale(1.01);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    border-color: var(--theme-default-color);
}

/* Responsive */
@media (max-width: 991px) {
    .header-actions[b-qwzll9uvv3] {
        flex-wrap: wrap;
    }

    .user-greeting[b-qwzll9uvv3] {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .image-grid .image-container[b-qwzll9uvv3] {
        flex: 0 0 calc(50% - 8px);
    }
}

@media (max-width: 767px) {
    .page-title[b-qwzll9uvv3] {
        font-size: 1.5rem;
    }

    .gift-tabs .nav-link[b-qwzll9uvv3] {
        font-size: 0.9rem;
        padding: 10px 15px;
    }

    .combo-image[b-qwzll9uvv3] {
        min-height: 150px;
    }

        .combo-image img[b-qwzll9uvv3] {
            height: 150px;
        }


    .nodata-container[b-qwzll9uvv3] {
        margin: 24px;
    }

        .nodata-container .title[b-qwzll9uvv3] {
            font-size: 1.5rem;
        }

        .nodata-container .content[b-qwzll9uvv3] {
            font-size: 1.3rem;
        }
}


@media (max-width: 575.98px) {
    .image-grid .image-container[b-qwzll9uvv3] {
        flex: 0 0 100%;
    }

    .nodata-container[b-qwzll9uvv3] {
        margin: 16px;
    }
}
/* _content/Fastlink.Gift.Web/Pages/PageNotFound.razor.rz.scp.css */
.page-not-found-container[b-nubc1xkx46] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(80vh - 80px);
}

.image-404-container[b-nubc1xkx46] {
    aspect-ratio: 16 / 4;
}

.image-404[b-nubc1xkx46] {
    background-image: url("/images/404-error.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.text-align-center[b-nubc1xkx46] {
    text-align: center !important;
}

.text-not-found span[b-nubc1xkx46] {
    color: #3f5eab;
    font-size: clamp(15px, 1.8vw, 32px);
}

.back-home[b-nubc1xkx46] {
    text-transform: uppercase;
    background-color: #3f5eab;
    color: white;
    font-size: 13px;
}

    .back-home:hover[b-nubc1xkx46] {
        text-decoration: none;
        background-color: #627fc7;
        box-shadow: 1px 1px 3px #333;
    }
