


.cart-item {
box-shadow: 4px 4px 25px 0px #00000040;

}
.product-image {
position: relative;
width: 80px;
height: 80px;
box-shadow: 2px 2px 10px 0px #00000040;

}
.product-details {
  box-shadow: 2px 2px 10px 0px #00000040;

  }
.quantity-control {
max-width: 100px;
border: 1px solid #A66F3E;

}

.cart-item .col {
display: flex;
align-items: center;
}
.del-btn{
    height: 18px;
    width: 18px;
}


  .product-container {
    position: relative; /* Allows for absolute positioning of the details */
  }

  .product-details {
    display: none;
    position: absolute;
    top: 100%; /* Position the details below the product image */
    left: 0;
    /* width: 50vw;  */
    z-index: 1;
    padding: 10px;

  }

  .product-image:hover + .product-details {
    display: block;
  }

  /* Additional styling for product details image */
  .product-details img.detail-img {
    max-width: 150px;
    max-height: 150px;
    object-fit: cover;
  }

