/* Small devices (phones, 0px to 599px) */
@media (max-width: 599px) {
  .content-wrapper{
	 padding:0; 
  }
  
  .header {
    background: rgb(251, 250, 243);
    padding: 20px 0;
  }
  
  .header .logo {
    display: flex;
    justify-content: center;
    gap: 13px;
    align-items: center;
    margin-bottom: 16px;
  }
  
  .header .search__box {
    margin-left: 0;
  }
  
  .best-supplements .mb25{
	margin-bottom: 25px;
  }
  
  .product-wrapper.list-view .product-item{
	flex-direction: column;
  }
  
  .product-wrapper.list-view .product-item .product-img {
    width: 100%;
	text-align: center;
  }
  
  .product-img img {
    width: 260px;
    max-width: 100%;
    height: auto;
  }
  
  .product-wrapper.list-view .product-item .product-info{
	 width: 100%; 
	 display: block;
  }
  
  .product-wrapper.list-view .product-info .product-content {
    width: 100%;
  }
  
  .product-wrapper.list-view .product-info p{
	margin-bottom:30px;  
  }
  
  .product-wrapper.grid-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 50px;
  }
  
  .info-section .hero-banner{
	flex-direction: column;
  }
  
  .certifications .imgbox img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  
  .product-details .productimg .main-img{
	width: 100%;
  }
  
  .related-product__container .related-product__item {
    display: flex;
    flex-direction: column;
    margin-bottom: 70px;
  }
  
  .related-product__container .related-product__item .related-product__img a{
	width:100%;
  }
  
  .product-details .sidebar {
    padding-top: 0px;
    padding-left: 0px;
	padding-bottom: 60px;
  }
  
  .contact-us__form{
	width: 100%;
  }
  
  .contact-us__form form {
    padding: 30px 20px;
  }
  
  .footer .pages-widget .page-nav {
    list-style: unset;
    margin-bottom: 0;
    padding-left: 25px;
  }
}

/* Medium devices (tablets, 600px to 899px) */
@media (min-width: 600px) and (max-width: 899px) {
  .content-wrapper {
    padding: 12px 0px 50px;
  }
  
  .product-wrapper.list-view .product-item {
    display: flex;
    flex-direction: column;
  }
  
  .product-wrapper.list-view .product-item .product-img {
    width: 100%;
  }
  
  .product-img img{
    width: 100%; 
  }
  
  .product-wrapper.list-view .product-item .product-info {
	display: block;
	width: 100%; 
  }
  
  .product-info p {
    margin-top: 12px;
    margin-bottom: 40px;
  }
  
  .related-product__container .related-product__item{
	flex-direction: column;  
  }
  
  .related-product__container .related-product__item .related-product__img a{
	width: 100%; 
  }
  
  .info-section .hero-banner{
	flex-direction: column;  
  }
  
  .footer .pages-widget .page-nav{
	padding-left:1rem;  
  }
}

/* Large devices (small laptops/desktops, 900px to 1199px) */
@media (min-width: 900px) and (max-width: 1199px) {
    
}

/* Extra-large devices (large desktops, 1200px and above) */
@media (min-width: 1200px) {
  
}