.shop-header {
    max-width: 100%;
    background-image: url(../images/winebottle4.jpg);
    background-size: cover; 
    background-position: center;
    height: 100vh;
    overflow: hidden;
    position:relative;
}
.heading{
    text-align:center;
      font-size:100px;
      padding-top:200px;
      color:#190B28;
      font-family: 'Oswald', sans-serif;
      text-shadow:0px 2px 10px black;
  }  
  .sub-heading{
    text-align:center;
      font-size:50px;
      color:#190B28;
      font-family: 'Oswald', sans-serif;
      text-shadow:0px 2px 10px black;

  }  
  .film{
    background-color:rgba(0,0,0, 30%);
    margin:0 auto;
    height:100%;
  }
  .shop-body{
    box-shadow:0px -3px 5px black;
    background-color:#ffe;
    position:relative;
    z-index:2;
    width:100%;
  }
.listProduct{
    display: flex;
    justify-content:space-around;
    flex-flow: row wrap;
    max-width:90%;
    margin:0 auto;
}
.item{
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 250px;
    height:350px;
    box-shadow:0px 2px 10px black;
    border:1px solid;
    margin:10px 0px;
}
.item img {
    width: 100%;
    height: 200px;
    background-color: #190B28;
    border:1px solid;
    color:#ffe;
}
.item h2 {
  font-size:1.1rem;
}
.price{
  font-weight: bolder;
  font-size:1.1rem;
}
.modal{
  color:#190B28;
  text-align:center;
  font-weight:bolder;
  justify-content:space-around
}
.modal-content{
  background-color:#ffe;
}
.modal-body {
  display: flex;
  flex-direction: column; /* Stacks each cart item vertically */
  gap: 15px; /* Adds spacing between cart items */
  padding: 20px;
}
.modal-footer{
  display:flex;
  flex-direction:row;
  justify-content: space-around;
}

.listCart .item{
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  gap: 15px; 
  box-shadow: 0px 2px 10px black;
  border: 1px solid;
  width: 100%;
  margin-bottom: 10px;
  height:300px;
}
.listCart img {
  max-width: 50%;
  width:100px;
  height: auto;
  border: solid;
}
.visual {
  flex: 0 0 20%; /* Keeps image container width consistent */
}

.name, .totalPrice, .quantity {
  flex: 1;
  text-align: center;
}

.minus, .plus{
  padding:0 5px;
  box-shadow:0px 2px 10px black;
  cursor:pointer;
}
.minus:hover, .plus:hover{
  box-shadow:none;
}
.minus:active, .plus:active{
  box-shadow:0px 2px 10px black;
}
  @media (max-width:768px) {
    .h{
        font-size:60px;
    }
    .heading{
      font-size:70px;
    }
  }
 .item .my-buttons{
  margin:0px;
  padding:10px;
}