body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-image: url("/Photos/bins/wbmcover3.jpg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-repeat: repeat-y;
    background-position-y: top;
  }
  /* ---------------------Heading----------------------------------------- */
  .cover img{
    margin-left: 40%;
    width: 20%;
  }
  .WBMenquire{
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    .WBMenquireDetails{
      .WBMtitle{
        text-align: center;
        animation-name: dropDown;
        animation-duration: 1s;
        h1{
          font-size: x-large;
          color: rgb(8, 8, 8);
        }
        p{
          font-size: smaller;
          margin-top: -0.5%;
          color: rgb(68, 134, 38);
          text-decoration: underline overline 1px;
        }
      }
      .WBMdetails{
        width:70%;
        margin-left: 15%;
        img{
          /* border: solid; */
          margin-left: 60%;
          margin-top: -20%;
          width: 250px;
          height: 250px;
          /* opacity: 0.9; */
          animation-name: opacity;
          animation-duration: 5s;
        }
        ul{
          width: 40%;
          margin-left: 10%;
          li{
            color: rgb(35, 102, 46);
            line-height: 30px;
            animation-name: slideRight;
          }
        }
      }
    }
    .info{
        box-shadow: 5px 5px 10px 5px rgb(46, 45, 45);
        background-color: rgba(255, 255, 255, 0.377);
        width: 90%;
        margin-left: 5%;
        border-radius: 2%;
        padding: 1%;
        text-align: center;
        h2{
          font-size: larger;
          text-decoration: underline rgb(68, 134, 38);
        }
        p{
          width: 70%;
          margin-left: 15%;
          text-align: justify;
          letter-spacing: 2px;
          line-height: 2;
          font-size: small;
          color: rgb(29, 75, 36);
        }
    }
  }
  @media screen and (max-width: 600px){
    .cover img{
      margin-top: 20%;
      margin-left: 40%;
      width: 20%;
    }
    .WBMenquire{
      .WBMenquireDetails{
        .WBMtitle{
          h1{
            font-size: smaller;
          }
          p{
            font-size: xx-small;
          }
        }
        .WBMdetails{
          width:80%;
          margin-left: 15%;
          img{
            margin-left: 60%;
            margin-top: -5%;
            width: 100px;
            height: 100px;
          }
          ul{
            width: 80%;
            margin-left: 5%;
            li{
              line-height: 15px;
              font-size: xx-small;
            }
          }
        }
      }
      .info{
          h2{
            font-size: xx-small;
          }
          p{
            text-align: center;
            width: 90%;
            margin-left: 5%;
            letter-spacing: 1px;
            line-height: 1.5;
            font-size: 35%;
          }
      }
    } 
  }

  /* ------------------------ProductDimensions-------------------------------------- */
  #h3Details{
    margin-top: 5%;
    text-align: center;
    padding-top: 2%;
    color:rgb(1, 46, 1);
    font-size: x-large; 
  }
  .products{
    width: 90%;
    margin-left: 5%;
    border-radius: 2%;
    box-shadow: 5px 5px 10px 5px rgb(46, 45, 45);
    padding: 1%;
    display: grid;
    height: auto;
  }
  #addSize{
    height: 150px;
    width: 150px;
    border-radius: 20%;
    box-shadow: 5px 5px 10px 5px rgb(46, 45, 45);
    background-color: rgb(245, 245, 245);
    img{
      padding: 3%;
      width: 90%;
      height: 90%;
    }
  }
  #addSize:hover{
    background-color: rgba(173, 243, 243, 0.63);
  }
  .productLinks{
    padding: 2%;
    display: flex;
    gap: 15%;
    cursor: pointer;
  }
  .display-details{
    width: 80%;
    margin-left: 10%;
  }
  .display-img{
    width: 100%;
    .add1, .add2, .add3, .add4, .add5 {
      border-radius: 5%;
      background-color: rgba(255, 255, 255, 0.726);
      width: 100%;
      padding-top: 5%;
      img{
        cursor: pointer;
        width: 100%;
      }
    }

  }
  .add1, .add2, .add3, .add4{
    display: none;
  }
 
  @media screen and (max-width: 600px){
    #h3Details{
      font-size: small;
    }
    .products{
      width: 90%;
      margin-left: 5%;
      height: auto;
    }

    #addSize{
      height: 50px;
      width: 50px;
    }
    .display-details{
      width: 95%;
      margin-left: 2.5%;
      margin-top: 5%;
    }
    .display-img{
      .add1, .add2, .add3, .add4, .add5 {
        height: 150px;
      }
    }
  }


 /* -----------------------Product-Category------------------------ */
 #h5Category{
  text-align: center;
  margin-top: 5%;
  color:rgb(2, 46, 2);
  font-size: x-large;
}
 .listProduct{
  .category-section{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    .item {
      display: flex; /* Use flex for each item */
      flex-direction: column; /* Arrange content in a column */
      align-items: center; /* Center items horizontally */
      margin: 1px; /* Space between items */ 
      .productView {
        display: flex; /* Flexbox for the product view */
        flex-direction: column; /* Stack image and text vertically */
        align-items: center; /* Center product contents */
        margin-top: 10%;
        width: 80%;
        height: 350px;
        border-radius: 3%;
        box-shadow: 2px 2px 5px 2px rgba(46, 45, 45, 0.5);
        background-color: rgba(255, 255, 255, 0.658);
        cursor: pointer;
        .product{
          img{
            width: 200px;
            height: 200px;
          }
          h4{
            font-size: small;
          }
          p{
            font-size: smaller;
          }
  
        }
        .product:hover{
          img{
            filter: drop-shadow(0 50px 20px #0009);
          }
        } 
      }
      .addCart {
        margin-top: -15%;
        margin-bottom: 10%;
        padding: 5px 10px;
        cursor: pointer;
        text-align: center;
        text-decoration: none;
        outline: none;
        color: #000000;
        background-color: #ffffff;
        border: solid 1px;
        border-radius: 15px;
      }
      .addCart:hover {
        box-shadow: 0 3px #474747;
        color: black;
      }
      .addCart:active {
        background-color: black;
        border: solid black 1px;
        color: white;
        transform: translateY(3px);
      }
    }
  }
}

@media screen and (max-width: 991px){
  .listProduct{
    .category-section{
      grid-template-columns: repeat(3, 1fr);
    }
  }
}
@media screen and (max-width: 600px){
  #h5Category{
    font-size: small;
    margin-top: 15%;
  }
  .listProduct{
    .category-section{
      grid-template-columns: repeat(2, 1fr);
      .item{
        .productView {
          width: 90%;
          height: 280px;
          .product {
            img{
              width: 120px;
              height: 150px;
            }
            p{
              margin: 1%;
            }
            h4{
              font-size: 80%;
            }
          }
        }
        .addCart{
          margin-top: -25%;
        }
      }
    }
  }
}
  
/* -----------------------info-------------------------------------- */
.social-links::before{
  position: absolute;
  inset: 0;
  background-image: url("/Photos/bins/footer2.jpg");
  background-position: center;
  background-size: cover;
  opacity: 0.5;
  content: "";
  z-index: -1;
}
.social-links{
  position: relative;
  color: whitesmoke;
  background-color: rgb(0, 0, 0);
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
    a{
      color: whitesmoke;
    }
  .contact-links{
      :hover {
        color:rgb(177, 106, 0);
      }
  }
  .quick-links{
      :hover {
        color: rgb(177, 106, 0);
      }
    }
}
/* ----------------------footer------------------------------------ */
.terms{
  color: whitesmoke;
  background-color: rgba(44, 44, 44, 0.527);
  .social-icons{
      background-color: rgba(44, 44, 44, 0);
      :hover{
      color: rgb(177, 106, 0);
      }
  }
  footer{
      a{
          color: rgb(190, 188, 188);
          font-size: 80%;
      }
  }
}

@media screen and (max-width: 700px){
  .social-links{
    .contact-links{
      width: 100%;
    }
    .address{
      display: block;
      width: 80%;
      margin-left: 2%;
      p{
        font-size: small;
      }
  }
  }
}
