/* =========================================================================
   LAVUMALL - assets/css/index/index-pagination.css
   首頁商品空狀態 / 商品分頁
   ========================================================================= */

/* 商品區塊無商品時的提示區塊 */
.no-products-box {
    text-align: center;
    padding: 50px 20px;
    color: #86868b;
    font-size: 15px;
    background: rgba(245, 245, 247, 0.6);
    border-radius: 16px;
    margin-bottom: 40px;
}
.no-products-box i {
    font-size: 38px;
    display: block;
    margin-bottom: 12px;
    color: #d2d2d7;
}

/* 商品區塊右下方上下頁與數字分頁組件 */
.section-footer-pagination {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    margin-bottom: 60px;
}
.mini-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    border-radius: 8px;
    border: 1px solid #e5e5e7;
    background-color: #ffffff;
    color: #1d1d1f;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}
.mini-page-btn:hover:not(.disabled) {
    border-color: #0071e3;
    color: #0071e3;
}
.mini-page-btn.active {
    background-color: #0071e3;
    border-color: #0071e3;
    color: #ffffff;
    font-weight: 700;
}
.mini-page-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
