﻿/* General container styles */
img {
    max-width: 300px;
    max-height: 300px;
}

#product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.product-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5em;
    color: #333;
}

/* Product details styles */
#product-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.image-container {
    text-align: center;
    margin: 40px;
}

.inline {
    display: flex;
}


.product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-price {
    font-size: 1.5em;
    color: #28a745;
}

.product-quantity {
    font-size: 1.2em;
    color: #888;
}

#add-to-cart {
    margin-top: 20px;
}

    #add-to-cart label {
        font-weight: bold;
    }

    #add-to-cart input[type="number"] {
        width: 100px;
        margin-right: 10px;
    }

#product-description {
    margin-top: 40px;
    font-size: 1em;
    color: #333;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
    align-content: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    #product-description h3 {
        width: 500px;
        margin-top:50px;
    }

    #product-description p {
        width: 500px;
    }

/* Custom image styles in the description */
.imageDiv img {
    width: 500px;
    max-height: 500px;
    margin: 5px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.imageDiv {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top:50px;
    margin-bottom:50px;
}

@media(max-width:800px)
{
    #product-description h3 {
        width: 100%;
    }

    #product-description p {
        width: 100%;
    }
}