.container,
.product_list-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 30px;
    color: #333;
}

.top-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 40px;
    font-size: 14px;
    color: #555;
}

.filter-dropdown-trigger,
.sort-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    position: relative;
    user-select: none;
}

.filter-dropdown-trigger i,
.sort-dropdown-trigger i {
    font-size: 12px;
    color: #666;
}

.products-count {
    font-style: italic;
    color: #777;
}

.hidden-select {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.product_list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
}

.product-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.product-img-box {
    width: 100%;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
}

.product-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-item:hover .product-img-box img {
    transform: scale(1.03);
}

.product-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    color: #222;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
}

.finance-badge {
    background-color: #17e625;
    background: linear-gradient(180deg, #28e035 0%, #10cf1d 100%);
    color: #ffffff;
    border-radius: 4px;
    padding: 3px 8px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.finance-badge .badge-price {
    font-size: 13px;
    font-weight: 800;
    margin: 1px 0;
}

.finance-badge .badge-click {
    font-size: 7px;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.product-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .product_list-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
    }
}

@media (max-width: 480px) {
    .product_list-grid {
        grid-template-columns: 1fr;
    }
}
