.gallery {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.item {
    background: #2EC27E;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    text-align: center;
}

.item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.desc {
    margin-top: 10px;
    font-size: 1.1em;
}

.price {
    margin-top: 5px;
    font-weight: bold;
    color: #333;
}
