.product-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.product {
    text-align: center;
}

.product img {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.price {
    font-size: 18px;
    color: #333;
    margin-top: 10px;
}

.product-name {
    font-weight: bold;
}

.price span {
    margin-right: 5px; /* Igazíthatod a távolságot tetszőlegesen */
}

@media (max-width: 768px) {
    .product img {
        width: 90%;
        max-width: 250px;
    }

    .price {
        font-size: 16px;
    }
}
