/*==========================================
  RESPONSIVE.CSS
==========================================*/

/* ---------- Large Devices (1200px) ---------- */
@media (max-width:1200px){

.container{
    width:92%;
}

.hero h1{
    font-size:60px;
}

.products{
    gap:25px;
}

.card img{
    height:320px;
}

}

/* ---------- Laptop ---------- */

@media (max-width:992px){

.nav{
    height:75px;
}

.logo img{
    width:150px;
}

.menu{
    gap:25px;
}

.hero{
    height:85vh;
}

.hero h1{
    font-size:52px;
}

.hero p{
    font-size:16px;
}

.products{
    grid-template-columns:repeat(2,1fr);
}

.why-grid{
    grid-template-columns:repeat(2,1fr);
}

.footer{
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.newsletter form{
    flex-direction:column;
}

.newsletter button{
    width:100%;
}

}

/* ---------- Tablet ---------- */

@media (max-width:768px){

.header{
    padding:10px 0;
}

.nav{
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

.logo{
    width:100%;
    text-align:center;
}

.logo img{
    margin:auto;
}

.menu{
    width:100%;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.nav-icons{
    width:100%;
    justify-content:center;
}

.hero{
    height:80vh;
    padding:0 20px;
}

.hero h4{
    font-size:15px;
}

.hero h1{
    font-size:42px;
}

.hero p{
    font-size:15px;
}

.btn{
    padding:14px 30px;
}

section{
    padding:80px 0;
}

.section-title h2{
    font-size:38px;
}

.products{
    grid-template-columns:1fr;
}

.card img{
    height:400px;
}

.why-grid{
    grid-template-columns:1fr;
}

.box{
    padding:35px 25px;
}

.footer{
    grid-template-columns:1fr;
    text-align:center;
}

.social{
    justify-content:center;
}

.newsletter h2{
    font-size:38px;
}

.newsletter form{
    gap:15px;
}

.newsletter input,
.newsletter button{
    width:100%;
}

.whatsapp{
    width:55px;
    height:55px;
    font-size:24px;
    right:20px;
    bottom:20px;
}

}

/* ---------- Mobile ---------- */

@media (max-width:576px){

.container{
    width:94%;
}

.nav{
    height:auto;
}

.menu{
    display:flex;
    flex-direction:row;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.nav-icons{
    gap:15px;
}

.hero{
    height:90vh;
}

.hero h1{
    font-size:34px;
    line-height:1.2;
}

.hero p{
    font-size:14px;
}

.btn{
    padding:12px 24px;
    font-size:14px;
}

.section-title h2{
    font-size:32px;
}

.section-title p{
    font-size:14px;
}

.card{
    border-radius:12px;
}

.card img{
    height:300px;
}

.card h3{
    font-size:24px;
}

.shop-btn{
    width:calc(100% - 40px);
    text-align:center;
}

.newsletter{
    padding:70px 0;
}

.newsletter h2{
    font-size:30px;
}

.newsletter p{
    font-size:14px;
}

.newsletter input{
    padding:16px;
}

.newsletter button{
    padding:16px;
}

.footer h2{
    font-size:34px;
}

.footer h3{
    font-size:20px;
}

.copy{
    font-size:13px;
}

.whatsapp{
    width:50px;
    height:50px;
    font-size:22px;
}

}

/* ---------- Small Mobile ---------- */

@media (max-width:380px){

.hero h1{
    font-size:28px;
}

.hero p{
    font-size:13px;
}

.section-title h2{
    font-size:28px;
}

.card img{
    height:260px;
}

.btn{
    width:100%;
}

.newsletter button{
    width:100%;
}

}