/*
 * 兌換活動 - 產品列表前端分頁
 *
 * 搭配 js/promotion-redeem-paginate.js 使用，用於 promotion/redeem 頁面。
 */

/* 非目前頁的產品列（DOM 保留，只隱藏） */
.tr.list_item.pg-hide {
    display: none !important;
}

/* 頁碼列 */
.prod-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin: 15px 0 25px;
}
.prod-pagination a {
    display: inline-block;
    min-width: 34px;
    padding: 6px 8px;
    border: #ccc 1px solid;
    border-radius: 3px;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
    color: #333;
    text-decoration: none;
}
.prod-pagination a:hover {
    border-color: #EA2023;
    color: #EA2023;
}
.prod-pagination a.active {
    background: #EA2023;
    border-color: #EA2023;
    color: #fff;
}
.prod-pagination a.disabled {
    color: #ccc;
    border-color: #eee;
    pointer-events: none;
}

/* 頁碼收合時的省略符號 */
.prod-pagination span.gap {
    padding: 0 3px;
    color: #999;
}

/* 標題旁的「已選 N 項」 */
h3 .sel-count {
    margin-left: 10px;
    font-size: 15px;
    color: #EA2023;
}
