.wpe-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    width: 100%;
    margin: 20px auto;
    box-sizing: border-box;
}

@media (max-width: 600px) {
    .wpe-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.wpe-item {
    text-align: left;
    height: 100%;
}

.wpe-item img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.wpe-item h3 {
    font-size: 16px;
    margin: 10px 0 5px;
}

.wpe-price {
    display: block;
    color: #444;
    font-weight: 500;
    margin-top: 5px;
}

.wpe-empty {
    text-align: center;
    margin: 20px 0;
    font-style: italic;
}
