body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}


.product-title {
    background-color: #e9e9e9;
    padding: 5px;
    border-radius: 8px;
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
}

.product-image {
        text-align: center;
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.product-description {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.product-price {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    border-radius: 22px;
    background-color: #6398cb3d;
    font-size: 22px;
    color: #0963ba;
    padding: 5px 0px;
    text-align: center;
}
    

.desc{
    font-style: italic;
}


.add-to-cart-btn {
    flex-grow: 0; /* Prevent the button from growing */
}
.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns of equal width */
    gap: 20px;
    border-radius: 10px;
    padding: 20px;
    background: #ffffff;
    max-width: 1200px;
    margin: auto;
}

.product-image-container {
    display: flex;
    height: auto;
    grid-column: 1 / 2;
    align-items: center;
    justify-content: center;
}

.product-details-container {
    grid-column: 2 / 3; /* Details take the second column */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Distribute space between items */
}

.product-info {
    text-align: left;
}

.product-interaction {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.additional-table{
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (max-width: 768px) {
    .product-container {
        grid-template-columns: 1fr; /* Single column layout */
    }

    .product-image-container,
    .product-details-container {
        grid-column: 1 / -1; /* All items span full width */
    }

    .product-interaction {
        flex-direction: row; 
        gap: 10px;
    }
}