:root{
  --pink:#e84393;
}
* {
  margin:0;
  padding:0;
  box-sizing: border-box;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  transition: .2s linear;
}
html{
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  overflow-x: hidden ;
}
sction{
  padding: 2rem 9%;
}
header{
  position:fixed;
  top:0; left:0; right:0;
  background:#fff;
  padding: 2rem 9%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
}

header .logo{
  font-size: 3rem;
  color:#333;
  font-weight:bold;
}
header .logo span{
  color:var(--pink);
}
header .navbar a{ 
  font-size: 2rem;
  padding:0 1.rem;
  color:#666;
}
header .navbar a:hover{
  color:var(--pink);
}
header .icons a{
  font-size: 2.5rem;
  color:#333;
  margin-left: 1.5rem;
}header .icons a:hover{
  color:var(--pink);
}
header #toggler{
  display: none;
}
header .fa-bars{
  font-size: 3rem;
  color:#333;
  border-radius: .5rem;
  padding: .5rem 1.5rem;
  cursor: pointer;
  border:.1rem solid rgba(0,0,0,.3);
  display: none;
}











.home{
  display: flex;
  align-items: center;
  min-height: 100vh;  
  background: url(https://pin.it/3JBlvWN6t)no repeat;
  background-size: cover;
  background-position: center;
}
.home .content{
   max-width: 50rem;
 }
.home .content h3{
  font-size: 6rem;
  color:#333;
}
.home .content span{
  font-size: 3.5rem;
  color:var(--pink);
  padding:1rem 0;
  line-height: 1,5;
}
.home .content span{
  font-size: 1.5rem;
  color:#999;
  padding:1rem 0;
  line-height: 1,5;
}
.btn{
  display: inline-block;
  margin-top: 1rem;
  border-radius: 5rem;
  background: #333;
  color:#fff;
  padding: .9rem 3.5rem;
  cursor: pointer;
  font-sizes:1.7rem;
}
.btn hover{
  background: var(-- pink);
}














/* media queries */
@media (max-width:991px){
  html{
    font-size: 55%;
  }
  header{
    padding: 2rem;
  }
  section{
    
  }
}
@media (max-width:768px){
  header.fa-bars{
    display: block;
  }
  header .navbar{
    position:absolute;
    top:100%; left:0; right:0;
    background: #eee;
    border-top: .1rem solide rgba(0,0,0,.1);
    clip-path: polygon(0 0, 100% 0, 0 0);
  }
  header #toggler:checked ~ .navbar{
    clip-path: polygon(0 0, 100% 0, 0 0);
  }
  header .navbar a{
    margin: 1.5rem;
    padding: 1.5rem;
    background: #fff;
    border:1rem solide rgba(0,0,0,.1);
    display: block;
  }
}
@media (max-width:450px){
  html{
    font-size: 50%;
  }
}
products{
            padding:60px 8%;
            text-align:center;
        }

        .products h2{
            font-size:40px;
            color:#666;
            margin-bottom:40px;
        }

        .product-container{
            display:grid;
            grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
            gap:35px;
        }

        .product-card{
            background:#fff;
            padding:20px;
            border-radius:12px;
            box-shadow:0 6px 12px rgba(0,0,0,0.1);
        }

        .product-card img{
            width:100%;
            border-radius:12px;
            margin-bottom:15px;
        }

        .product-card h3{
            font-size:22px;
            margin-bottom:8px;
            color:#333;
        }

        .product-card p{
            font-size:15px;
            color:#666;
            margin-bottom:10px;
        }

        .price{
            font-size:20px;
            color:#ff6c93;
            margin-bottom:12px;
            font-weight:600;
        }
@media (max-width:768px){
        footer{
            text-align:center;
            padding:30px;
            background:#ffe8f1;
            margin-top:60px;
        }

        footer p{
            color:#fff;
        }
}

        @media(max-width:850px){
            .home{
                text-align:center;
            }
            .home img{
                margin:auto;
            }
        }