.art-shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 0 20px;
}

.results-count {
    font-size: 14px;
    color: #666;
}

.sorting select {
    padding: 10px 20px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
}

.art-shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;    
}

.art-shop-grid, .art-shop-header {
    width: calc(100% - 40px);
    max-width: 1150px;
}

.art-item-card {
    text-decoration: none;
    color: #000;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.art-item-card:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.art-item-card img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    border-bottom: 1px solid lightgray;
}

.art-item-card-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 5px;
}

.art-item-card h3 {
    font-size: 16px;
    margin: 0;
    font-family: 'Geologica';
}

.art-item-card p {
    font-family: 'Geologica Light';
    font-size: 12px;
    margin: 0;
    color: #666;
}

.art-item-card span {
    font-size: 14px;
    font-weight: bold;
    color: #a00;
    margin: 0;
    display: block;
}

.pagination {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.pagination a {
    margin: 0 5px;
    text-decoration: none;
    color: #000;
    font-size: 16px;
}

.pagination a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .art-shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .art-shop-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .sorting select {
        padding: 5px 5px;
    }
    .art-item-card img {
        height: 240px;
    }
    .art-item-card h3 {
        font-size: 15px;
    }
    .art-item-card p {
        font-size: 11px;
    }
    .art-item-card span {
        font-size: 13px;
    }
}
