/* Title Section */
.title-section {
    padding: 30px 0;
    text-align: center;
    margin-bottom: 20px;
}

.main-title {
    font-size: 32px;
    font-weight: bold;
    color: #1a1a3a;
    margin-bottom: 10px;
}


.listproduct-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    justify-content: space-between;
}

.title-description {
    max-width: 700px;
    margin: 0 auto;
    color: #6c757d;
}

/* Products Section */
.sort-by {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.results-count {
    color: #6c757d;
}

.product-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    background-color: white;
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* .product-img {
    height: 200px;
    object-fit: contain;
    padding: 20px;
} */

.product-body {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Pagination */
.pagination {
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 30px;
}

.pagination .page-item .page-link {
    color: #1a1a3a;
    border-radius: 4px;
    margin: 0 3px;
}

.pagination .page-item.active .page-link {
    color: #fff;
    background-color: #1a1a3a;
    border-color: #1a1a3a;
}