@charset "utf-8";
/* CSS Document */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    background-color:white;
    color:black;
    width: 100%;
    min-height: 100vh;
    font-family: "acumin-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
}

nav div {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
	flex-wrap: wrap;}



nav {
	position: absolute; 
	z-index: 10;
    background-color:#2A4D59;
    height: 50px;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;  
	border-radius: 50px;
    padding: 40px 20px;
    margin: 30px; 
}

nav h4 img {
    height: 30px;
    padding-top: 5px;}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
	justify-content:flex-end;
	margin-left: auto;}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    font-family: "acumin-pro", sans-serif;
    display: block;
    padding: 10px;}


nav ul li a:hover {
    background-color:#DFE783;
    border-radius: 50px;
    color: black;}


.hero {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
	background-color:#CDD7D9;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(1px);
}




.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  max-width: 300px;
  margin: auto;
  text-align: center;
  font-family: arial;
}

.price {
  color: grey;
  font-size: 22px;
}

.card button {
  border-radius:20px;
  margin-bottom: 30px;
  padding: 10px;
  color: white;
  background-color: #294e5a;
  text-align: center;
  cursor: pointer;
  width: 60%;
  font-size: 12px;
}

.card button:hover {
   	opacity: 0.7;
	margin-bottom: 10px;
	
}

.newflavor {
	background-color:#CDD7D9;
	padding: 20px 0;
	align-items: center;
	padding-bottom: 50px;
}
.newflavor h3 {
	font-size:30px;
	color: #2A4D59;
	margin-top:40px;
	margin-bottom:10px;
	padding-bottom:20px;
	align-items:left;
	text-align:left;}

.row {
    display: flex;
    flex-wrap: wrap;             
    justify-content: center; 
	margin-left: 80px;
	margin-right: 80px; 
	gap: 5px;
}

.column {
    flex: 1 1 22%; 
    min-width: 250px; 
    margin-bottom: 16px;
	background-color:#CDD7D9;
}

.card {
  	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  	margin: 8px;
	background-color:white;
	border-radius: 20px;
}

article {width: 100%;
		align-content: flex-start;
		text-align:left;
		background-color:#fbfdfd;}

article p {
		  width: 100%;
		  margin: 0 auto;
		  padding-bottom: 100px;
		  }

.info-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  background-color: #2A4D59;
  margin: 0 auto;
}


.info-section img {
  width: 300px;
  height: auto;
  border-radius: 10px;
  padding-top: 40px;
  padding-bottom: 40px;
}


.info-text {
  max-width: 32%;
  margin-top: 20px;
  margin-bottom: 20px;
  background-color:#F8F7F7;
  padding-left: 40px;
  padding-right: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.info-text p {
  font-size: 15px;
}

h2 {font-size: 17px;}

.info-text h3 {
	font-size:20px;
	color: #2A4D59;
	margin-top:40px;
	padding-bottom:10px;
	align-items:flex-start;
	text-align:left;}

h6 {font-size: 17px;
	color: black;}


.container {
  padding: 0 16px;
}

.container::after, .row::after {
  content: "";
  clear: both;
  display: table;
}

.title {
  color: grey;
}



.pouches {
	align-items:flex-start;
	padding-top:20px;
	background-color:white;
}

.pouches h3 {
	font-size:30px;
	margin-top:40px;
	align-items:flex-start;
	text-align:left;
	margin-left: 20px;
	color: #2a4d59;}

.info-text h3 {
	color: black;
	font-size: 25px;
}

.product-grid {
    display: flex;
    flex-wrap: wrap; 
    gap: 15px;       
    justify-content: center; 
    padding: 20px 0;
	margin-left: 20px;
	margin-right: 20px;
}

.product-box {
    flex: 1 1 18%; 
    min-width: 250px; 
    border: 1px solid #ccc;
   
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	background-color:white;}

.product-box img {
    width: 100%;
    height: auto;
    border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}

.product-box h6 {
    margin: 15px ;
	justify-content:flex-start;
	text-align: left;
	}

.see-more-btn {
    display: none;
}

.main {background-color:#CDD7D9;}

.product-box p {
    font-size: 14px;
    color: #555;
    margin-bottom: 30px;
	text-align:left;
	margin: 15px;
}

.basket img {
    width: 24px;
    cursor: pointer;
    transition: 0.2s;
}

.basket img:hover {
    opacity: 0.7;
}

.buttons {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 5px;
  color: white;
  background-color: #294e5a;
  text-align: center;
  cursor: pointer;
  width: 70%;
  border-radius: 20px;

}

a.buttons {margin: 15px;}

.buttons:hover {
  background-color:#6677AC;
	color:black;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 20px;
    justify-items: center;
	margin-top:80px;
	padding: 30px; 

}
.image-grid img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}



.site-footer {
  background-color: #2A4D59;
  color: #ffffff;
  padding: 40px 20px 20px;
  font-family: "acumin-pro", sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  gap: 30px;
}

.footer-section {
  flex: 1;
  min-width: 220px;
}

.footer-section h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #f4f4f4;
}

.footer-section p,
.footer-section a {
  font-size: 14px;
  color: #cccccc;
  text-decoration: none;
  line-height: 1.6;
}

.footer-section a:hover {
  color: #ffffff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #aaaaaa;
}
.footer-bottom img {
	width: 200px;
	margin-top: 15px;
	margin-bottom: 15px; 
}






@media screen and (max-width: 1000px) {
    .product-box {
		flex: 1 1 45%; }
	
	nav {
        height: auto;
        padding: 20px;
    }

    nav div {
        flex-direction: column;
        gap: 10px;
        justify-content: center;
    }

    nav ul {
        justify-content: center;
        margin-left: 0;
        flex-wrap: wrap;
        gap: 0px;
    }
  .row {
    justify-content: center;
  }

  .column {
    flex: 1 1 22%;
    min-width: 220px;
  }
    	.card button {
		font-size: 12px;
		width: 100%;
	}
	}

@media screen and (max-width: 600px) {
    .product-box {
		flex: 1 1 100%;}
		
		nav {
        width: 90%;
        height: auto;
        padding: 15px;
    }

    nav div {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    nav h4 img {
        height: 25px;
    }

    nav ul {
        gap: 10px;
        font-size: 12px;
    }


  .row {
    justify-content: center;
  }


  .hero {
    height: auto;
  }
	
		.card button {
		font-size: 12px;
		width: 100%;
	}
	
	
  .info-section {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .info-section img {
    width: 50%;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .info-text {
    max-width: 80%;
    margin: 0;
    padding: 20px;
  }
	  .info-text p {
    max-width: 90%;
    margin: 0;
    padding: 15px;
    text-align: left;
  }
		  .info-text h3 {
    max-width: 90%;
    margin: 0;
    padding: 20px;
    text-align: left;
  }
	  .toggle-products {
        display: none;
    }

    /* hide all products after the first 2 */
    .product-limit .product-box:nth-child(n+3) {
        display: none;
    }

    /* show all when "See more" is clicked */
    .toggle-products:checked + .product-limit .product-box {
        display: block;
    }
.see-more-btn {
  display: block;
  margin-left: auto;   /* pushes it to the right */
  margin-right: 0;
  margin-top: 10px;
  margin-bottom: 40px;
  padding: 10px 22px;
  background-color: #294e5a;
  color: white;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  width: fit-content;
}
	  .footer-container {
    flex-direction: column;
    text-align: center;
  }
	
	.footer-container h3 {
		text-align:center;
		margin-top: inherit;
		margin-bottom:inherit;
	}
}

@media screen and (max-width: 400px) {
	
	nav {
        width: 80%;
        height: auto;
        padding: 0px;
		
    }

    nav div {
        flex-direction: column;
        text-align: center;
        gap: 5px;
		align-content: center;
		align-items:center;
		margin-top: 10px;
		margin-bottom:10px;
    }

    nav h4 img {
        height: 25px;
    }

    nav ul {
        gap: 10px;
        font-size: 12px;
		align-items: center;
    }
	
	.hero {background-color:#2A4D59;}
  .row {
    justify-content: center;
  }
	.newflavor {display: none;}
  .column {
    width: 50%;
  }
	
	h2 {font-size: 15px;
		}
	
	p{font-size: 0px;}
	
	.card button {
		font-size: 12px;
		width: 100%;
	}
	
	  .info-section img {
    width: 80%;
    padding-top: 20px;
    padding-bottom: 20px;
    align-items: center;
  }
	
	  .footer-container {
    flex-direction: column;
    text-align: center;
  }
	.footer-container h3 {
		text-align:center;
	}
}


