.store-banner, .the-product img{height: 80vh;}
.banner-responsive {display: none !important;}
.the-product {position: relative;}

.the-product img{
  object-fit: cover;
  position: relative;
  object-position: center;
}

.the-prod-info {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  padding: 4em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
}

.the-prod-info h4 {
  font-size: 50px;
  max-width: 950px;
  width: 100%;
  line-height: 1.3;
}

.the-prod-info p {
  margin: 0;
  font-size: 25px;
  max-width: 620px;
}

.the-prod-info .note {
  font-size: 16px;
  max-width: 100%;
}

.the-prod-info .price{
  font-size: 50px;
  font-weight: bold;
  margin-top: 2rem;
}

.the-prod-info .qib-button-wrapper {display: none !important;}

.the-prod-info .add-cart, .the-prod-info .single_add_to_cart_button.button.alt {
  display: flex;
  justify-content: center;
  /* border: none; */
  align-items: center;
  padding: 10px 40px;
  width: fit-content;
  border-radius: 10px;
  font-weight: 500;
  margin: 1.2em 0 3em;
  font-size: 18px;
  transition: all .4s ease;
}

.the-prod-info .add-cart:hover, .the-prod-info .single_add_to_cart_button.button.alt:hover{
  color: white !important;
  background-color: #5f5f5f !important;
  border: 1px solid#5f5f5f !important;
}

.banner-carousel .owl-dots {
  bottom: 55px;
  position: relative;
}

/* Products Section */
.store-products{position: relative;}

.products-intro p {
  font-size: 20px;
  max-width: 580px;
  margin-top: 0;
}

.store-products:before{
  content: '';
  position: absolute;
  width: 50%;
  height: 50vw;
  left: -300px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background: rgb(238,250,255);
  background: radial-gradient(circle, rgba(238, 250, 255, 1) 0%, rgba(238, 250, 255, 1) 50%, rgb(255 255 255) 70%, rgba(255, 255, 255, 1) 100%);
  border-radius: 100%;
  z-index: -1;
}

.store-prod-container{
  padding: 5em 4em;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}

.product{transition: .5s;}
.product p {font-size: 20px;}

/* .product:hover{
  transform: scale(0.9, 0.9);
  transition-timing-function: cubic-bezier(0, 0, 0.08, 1.47);
} */

/* Responsive Mode */
@media (max-width: 1920px){
  .the-prod-info p {
    font-size: 20px;
    max-width: 550px;
  }

  .the-prod-info {max-width: 1500px;}

  .store-prod-container {
    padding: 3em;
    max-width: 1400px;
  }
}

@media (max-width: 1300px){
  .the-prod-info .price {margin-top: 1rem;}
  .the-prod-info p {max-width: 370px;}
  .the-prod-info .add-cart {margin: 0.5em 0 2em;}
}

@media (max-width: 1024px){
  .store-banner, .the-product img {height: 35em;}
  .the-prod-info h4{font-size: 70px !important;}
  .the-prod-info p {font-size: 16px;}
}

@media (max-width: 700px){
  .banner-desktop {display: none !important;}
  .banner-responsive {display: block !important;}

  body .products {
    gap: 3em 2em;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 46%), 1fr));
  }

  body .product {width: 100%;}
  body .pcontent-side:first-child {height: auto;}

  body .product h4 {
    font-size: 14px;
    max-width: 95%;
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}

@media (max-width: 600px){
  .store-prod-container {padding: 3em 1.5em 0;}
  .store-banner, .the-product img {height: 45em;}
  /* .store-banner, .the-product img {height: 42em;} */

  .products-intro p {
    font-size: 15px;
    margin-bottom: 2rem;
  }

  .the-prod-info {
    align-items: center;
    flex-direction: column;
    text-align: center;
    justify-content: flex-start;
  }

  .the-prod-info {padding: 9em 1.5em;}

  .the-prod-info h4 {
    line-height: 1;
    padding-bottom: 13rem;
  }

  .the-prod-info p {
    font-size: 16px;
    max-width: 100%;
  }

  .the-prod-info .price {
    font-size: 45px;
    margin-top: 1rem;
  }

  .the-prod-info .add-cart {
    font-size: 16px;
    padding: 8px 20px;
    margin: 1.2em 0 15px; 
  }

  .the-prod-info .note {font-size: 13px;}
  body .products {gap: 2em 1em;}
  
  body .product .add-cart {
    font-size: 13px;
    padding: 8px 20px;
  }
}