.collect {
    display: grid;
    gap: 3rem;
    align-content: center;
}
.collect .product-list-headline {
    font-size: 2rem;
    color: var(--black);
}
.collect .product-list-headline span {
    color: var(--orange);
}
.product-link {
    display: flex;
    text-align: center;
    align-items: center;
    gap: 1rem;
}
.product-link a,
.product-link i,
.product-link h3 {
    color: var(--light-color);
    font-size: 1.5rem;
}
.collect .product {
    max-width: 100%;
}
.product .product-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.product .product-container .product-card {
    padding: 2rem;
    display: grid;
    gap: 1rem;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    cursor: pointer;
}
.product .product-container .product-card .product-card-tag {
    position: absolute;
    background: var(--orange);
    color: #eee;
    font-size: 1rem;
    padding: .5rem;
    border-radius: .5rem;
    margin: .5rem;
}
.product-container .product-card .product-card-img {
    width: 100%;
    height: 22.5rem;
    align-content: center;
    text-align: center;
    background: url(../img/product-card-bg.png);
    background-size: cover;
    background-position: center;
}
.product-container .product-card .product-card-img img {
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    padding: 1rem;
}
.product-container .product-card > img {
    object-fit: cover;
    width: 100%;
    max-height: 100%;
}
.product-container .product-card:hover img {
    padding: .5rem;
}
.product-container .product-card h3 {
    font-size: 1.7rem;
    color: var(--black);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 100%;
}
.product-container .no-products {
    font-size: 1rem;
    color: var(--light-color);
    font-style: italic;
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}
.pagination ul {
    display: flex;
    gap: 0.4rem;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    background: #f8f8f8;
    border: 1px solid #ddd;
}
.pagination ul li {
    list-style: none;
    font-size: 1.25rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
}
.pagination ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1rem;
    text-decoration: none;
    color: var(--light-color);
    border-radius: 5px;
}
.pagination ul li.active {
    background: var(--orange);
    border-color: var(--orange);
}
.pagination ul li.active a {
    color: #fff;
}
.pagination ul li.numb:hover,
.pagination ul li.btn-pag:hover {
    background: var(--orange);
    border-color: var(--orange);
}
.pagination ul li.numb:hover a,
.pagination ul li.btn-pag:hover a {
    color: #fff;
}
.pagination ul li.btn-pag.disabled,
.pagination ul li.btn-pag.disabled a {
    cursor: not-allowed;
    opacity: 0.5;
}
.pagination ul li.dots {
    cursor: default;
    color: #999;
    padding: 0.6rem 0.9rem;
    font-weight: bold;
}
@media (max-width: 991px) {
    .product-container .product-card .product-card-img {
        height: 20rem;
    }
}
@media (max-width: 768px) {
    .product .product-container {
        gap: 1rem;
    }
    .product-container .product-card .product-card-img {
        height: 17rem;
    }
}
@media (max-width: 450px) {
    .product .product-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-container .product-card .product-card-img {
        height: 20rem;
    }
}