* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

.container {
    margin-top: 100px;
    display: flex;
    justify-content: space-evenly;
    align-items: center; 
    height: 100vh;
    
}


.product-image {
    display: flex;
    justify-content: center;
    flex: 1;
}

.product-details {
    margin: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-details .product-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-details .product-description {
    font-size: 1.2rem;
    width: 70%;
    font-weight: 100;
    margin-bottom: 20px;
}

.product-details .product-price {
    font-size: 1.8rem;
    color: green;
    font-weight: 100;
    margin-bottom: 20px;
}

.product-details button {
    display: flex;
    justify-content: center;
    padding: 10px 20px;
    font-size: 1.2rem;
    font-weight: 600;
    background-color: darkgray;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    
}  

button.disabled {
    background-color: black;
    cursor: not-allowed;
}

.product-details .sel {
    display: flex;
    justify-content: center;
    font-weight: bolder;

}  

.product-details .sel span {
    margin: 5px 20px;
    font-size: 2rem;
    border : 1px solid #ccc;
    padding: 10px 15px;

}  

.product-details .sel .minus,
.product-details .sel .plus {
    cursor: pointer;
}   



img {
    width: 70%;
    height : 400px;
    object-fit: cover;
    border-radius: 10%;
}


.cart {
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 50%;
    right: 50%;
    transform: translate(50%, 50%);
    padding: 10px 20px;
    font-size: 1.2rem;
    font-weight: 600;
    background-color: darkgray;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000;  
    transition: all 0.3s ease;
}

.cart.show {
    opacity: 1;
   
}

.cart.app {
    background-color: seagreen;
}

@media (max-width: 800px) {
    .container {
      flex-direction: column;
    }
  }

