/* 流量池容器 */
.product-rank-pool { margin: 30px 0; }

.product-rank-pool-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.product-rank-pool-title { font-size: 1.5em; font-weight: 700; margin: 0; }

.product-rank-pool-link { color: #0073aa; text-decoration: none; font-weight: 500; }
.product-rank-pool-link:hover { text-decoration: underline; }

/* 折扣角标 */
.product-rank-badge {
    background: #e74c3c !important;
    color: #fff !important;
    font-weight: 700;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 3px;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
}

/* 限时特价倒计时 */
.product-rank-countdown {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-top: 8px;
    font-size: 12px;
    color: #e74c3c;
    font-weight: 600;
}

.product-rank-countdown span {
    background: #e74c3c;
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    min-width: 24px;
    text-align: center;
}

/* 响应式 */
@media (max-width: 768px) {
    .product-rank-pool ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 480px) {
    .product-rank-pool ul.products { grid-template-columns: repeat(1, 1fr) !important; }
}
