body {
    background-color: white;
    margin: 0;
    padding: 0;
    /*color: #88b33c;*/
}
/* Header Section Styles */

header{
    background-color: #f8f9fa;
    margin-bottom: 20px;
}

header .nav-link {
    color: #fff;
}

header .nav-link:hover {
    color: #28a745;
}

/* prodcut*/

.deal-item {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 5px;
    max-height: 350px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.deal-item img {
    max-width: auto; /*233px*/
    height: 174px;
    margin-bottom: 10px;
}
.deal-item .prime{
    max-width: 40px;
    height: 25px;

}
.deal-item p {
    margin: 0;
}

.deal-title {
    height: 35px;
    font-weight: bold;
    font-family: sans-serif;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.8rem;
}
.deal-title:hover {
    color: #28a745;
}



/*Pagination*/
.pagination {
    margin-top: 20px;
}

.pagination .page-item .page-link {
    color: grey;
}

.pagination .page-item.active .page-link {
    background-color: grey;
    border-color: grey;
}

.pagination .page-item .page-link:hover {
    color: #28a745;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

/* Footer Section Styles */
 .footer {
    background-color: #f8f9fa;
    padding-top: 2rem;
} 
.footer h5 {
    border-bottom: 1px solid #000000;
}

.footer a {
    color: #838080;
}
footer a:hover {
    color: #0ac05c;
}
.footer ul {
    padding-left: 0;
  }
  
  .footer ul li {
    list-style: none;
    margin-bottom: 10px;
  }
  
  .footer ul li a {
    color: #6c757d;
    text-decoration: none;
  }
  
  .footer ul li a:hover {
    text-decoration: underline;
    color: #0ac05c;
  }

/* Position the "Back Top" button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    
}

/* Product details page CSS */
.product-title h1{
    /*margin-bottom: 20px;*/
    font-family: sans-serif;
}
.carousel-item img {
    max-width: 540px;
    max-height: 350px;
}
.product-price {
    display: flex;
    align-items: center;
}
.product-price img {
    max-width: 80px;
    max-height: 50px;
}
.product-price .price {
    margin-right: 10px;
    font-size: 1.5rem;
}

.product-price .discount-price {
    margin-right: 10px;
    color: red;
    font-size: 1.3rem;
}

.product-price .prime-icon {
    display: flex;
    align-items: center;
}
.product-description {
    margin-top: 30px;
}
.product-description .des-title {
    font-size: 20px;
    color: #000000;

}
.product-description h2 {
    color: #000000;

}
.product-description p .des-tittle-l {
    background-color: #f8f8dd;
    color:#000000;
}
.social-icons {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.social-icons a {
    margin-right: 15px;
    font-size: 1.5rem;
}

/* Related product*/
.related-products {
    padding-bottom: 10px;
}


.related-products .card {
    width: 253px; 
    height: 309px; 
    overflow: hidden; 
}

.related-products .card img {
    max-width: auto; /* 253px */
    max-height: 189px;
}


.carousel-control-prev,
.carousel-control-next {
    width: 5%;
} 

 /* Home newslatter */
.form-row .col button:hover {
    background-color: #c9ebd8;
}
.form-row .col input:hover {
    background-color: #c9ebd8;   
}

/* video */
.video-player-container {
    width: 100%;
    height: 50vh; /* adjust the height to your liking */
    display: flex;
    justify-content: center;
    align-items: center;

  }
  
  .embed-responsive {
    width: 100%;
    height: 100%;
  }
  
  .embed-responsive-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  
/* Join us*/
.highlight-join{
    /*position: absolute;
    top: 10px;
    right: 10px;*/  
    background-color: #e7de5f;
    color: #fff;
    padding: 5px 10px;
    border-radius: 10px;
    animation: pulse 2s infinite;
    max-width: 130px;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 8px;
}
@keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
    }
    50% {
      transform: scale(1.1);
      box-shadow: 0 0 20px rgba(255, 105, 180, 0.7);
    }
    110% {
      transform: scale(1);
      box-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
    }
  }