.product-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding: 0 20px;
}

.product-section {
    width: 250px;
    padding: 20px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    text-decoration: none;
    color: #ffffff;
}

.product-section:visited, .product-section:focus {
    color: unset;
}

.product-section:hover {
    cursor: pointer;
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.3);
}

.product-img-container {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: white;
    padding: 10px;
    margin-bottom: 10px;
}

.product-img {
    width: 100%;
    height: 100%;
}

.product-title {
    margin-top: 10px;
    margin-bottom: 20px;
}

.product-description {
    text-align: justify;
}

@media (max-width: 600px) {
    .product-container {
        flex-direction: column;
        align-items: center;
    }
    .product-section {
        width: 90%;
    }
}