.product-category-page .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.product-tile {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    background: #fff;
    transition: box-shadow 0.2s;
}

.product-tile:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-tile img {
    max-height: 180px;
    object-fit: contain;
    margin-bottom: 10px;
}

.product-tile-title {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0 5px;
}

.product-tile-index,
.product-tile-price {
    font-size: 14px;
    color: #666;
}
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #ccc;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    color: #222;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    box-sizing: border-box;
    padding-top: 0;
}

.pagination .page-numbers:hover {
    border-color: #333;
    color: #000;
}

/* Styl aktywnej strony */
.pagination .current {
    background-color: #339933;
    color: #fff;
    border-color: #339933;
    font-weight: bold;
}

/* Styl „Poprzedni” i „Następny” */
.pagination .prev,
.pagination .next {
    padding: 0 12px;
    width: auto;
    height: 38px;
    border-radius: 20px;
    font-weight: 500;
    border-color: #ccc;
}

/* Dostosowanie do tekstu */
.pagination .prev:hover,
.pagination .next:hover {
    background-color: #f2f2f2;
    color: #000;
}
