.product-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
}

.product-main {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    width: 100%;
}

.product-image {
    width: 400px;
}

@media (max-width: 768px) {
    .product-container {
        padding: 1rem;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .product-main {
        flex-direction: column;
        gap: 1rem;
    }
    
    .product-image {
        width: 100%;
    }
}

