@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Yantramanav:wght@100;300;400;500;700;900&display=swap');


*{
	margin: 0;
	padding: 0;
	box-sizing: border-box; 
}


h3{
	color:#F6CB3E;
	font-size: 23px;
	font-family: "Montserrat", sans-serif;
  	font-weight: 500;
}


h1{
	color:#333333;
	font-size: 48px;
	font-family: "Montserrat", sans-serif;
  	font-weight: 700;
	text-shadow: 2px 2px 6px rgba(51, 51, 51, 0.4);
}

h2{
	color: #333333;
	font-size: 28px;
	font-family: "Montserrat", sans-serif;
  	font-weight: 500;
}

p{
	color:#333333;
	font-size: 16px;
	font-family: "Montserrat", sans-serif;
  	font-weight: 300;
	line-height: 1.4;
	text-align: justify;
	
}




@media (max-width: 400px) {
    
h1{
	font-size: 44px;
	font-family: "Montserrat", sans-serif;
  	font-weight: 700;
	text-shadow: 2px 2px 6px rgba(51, 51, 51, 0.4);
}    
    
    
h2{

font-size: 28px;
font-family: "Montserrat", sans-serif;
  font-weight: 500;
}


h3{

	font-size: 22px;
	font-family: "Montserrat", sans-serif;
  	font-weight: 500;
}


p{
	font-size: 14px;
	font-family: "Montserrat", sans-serif;
  	font-weight: 300;
	line-height: 1.4;
	text-align: justify;
	
}
    
}


section{
	margin: 150px 70px;
}




.container{
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}


.filter {
    width: 300px;
    height: 640px;
    background-color: #020181;
    display: flex;
    flex-direction: column;
    padding: 0 30px;
    justify-content: center;
    border-radius: 37px;
    position: relative;
    z-index: 10;
}


.filter-toggle {
    display: none;
    width: 57px;
    height: 57px;
    border: none;
    background-color: #020181;
    color: #F4F4F4;
    font-size: 24px;
    border-radius: 12px;
    cursor: pointer;
    z-index: 20;
    position: absolute;
    top: 160px;
    right: 75px;
}

.filter-close {
    display: none;
    position: absolute;
    top: 140px;
    right: 80px;
    background: none;
    border: none;
    color: #F4F4F4;
    font-size: 30px;
    cursor: pointer;
    z-index: 50;
}

.filter h2{
	color: #F4F4F4;
}

label{
	color:#F4F4F4;
	font-size: 19px;
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
}


input[type="radio"] {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background-color: #F4F4F4;
	cursor: pointer;
	position: relative;
	margin-right: 10px;
	vertical-align: middle;

	}

input[type="radio"]:checked {
  background-color: #F6CB3E; /* blue background when selected */
  border-color: #F6CB3E;
}



.item{
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background-color: #F4F4F4;
}

.products {
	width: 1000px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 36px;
}



.product-box {
	width: 100%;
	height: auto;
	gap:22px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.product-box p{
	width: 310px;
	height: 115px;
}

.product-box h3{
	color:#333333;
}

.border{
	width: 100%;
	border-radius: 37px;
	position: relative;
	overflow: hidden;
}

.whatsapp{
	position: absolute;
	bottom: 10px;
	right: 16px;
	width: 63px;
	height: 63px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: linear-gradient(to bottom, #00FB73 0%, #00B25B 100%);
	z-index: 1;
	cursor: pointer;
	transition: all 0.3s ease; 
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp:hover {
	transform: scale(1.07);
	background: linear-gradient(to bottom, #00FF80 0%, #00C86B 100%); 
}

.whatsapp i{
	font-size: 35px;
	color: #FFFFFF;	
	transition: all 0.3s ease;
	pointer-events: none;
	
}


/* Responsive for mobile */
@media (max-width: 768px) {
  
.container {
    height: 100%;
    gap: 40px;
    flex-direction: column; 
    align-items: center;
}
 .filter {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    padding: 0px 0px;
    justify-content: center;
    align-items: center;
    background-color: #020181;
    transform: translateX(100%); /* Start off-screen to the right */
    transition: transform 0.4s ease;
    z-index: 400;
  }

.filter.active {
    transform: translateX(0); /* Slide into view */
  }

.filter h2 {
text-align: center;
}

.filter-close{
display: block;
}

.filter-toggle {
display: block;
}

.filter h2 {
display: none; /* Hide big heading in mobile */
}


.products {
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
}


.product-box p {
width: 100%;
height: auto;
}


}

