*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial;
}

body{
  background:#e3e6e6;
}

/* NAVBAR */

.navbar{
  background:#131921;
  color:white;
  display:flex;
  border: rgb(26, 24, 23);
  align-items:center;
  justify-content:space-between;
  padding:10px 20px;
  gap:15px;
}

.logo img{
  width:110px;
}

.location{
  display:flex;
  align-items:center;
  gap:8px;
  cursor:pointer;
}

.location p{
  font-size:12px;
  color:#ccc;
}

.search-box{
  flex:1;
  display:flex;
  height:40px;
}

.search-box select{
  width:60px;
  border:none;
  background:#ddd;
  padding:10px;
}

.search-box input{
  flex:1;
  border:none;
  padding:10px;
  font-size:16px;
}

.search-box button{
  width:50px;
  border:none;
  background:#febd69;
  cursor:pointer;
  font-size:18px;
}

.nav-item p{
  font-size:12px;
}

.nav-item h5{
  font-size:14px;
}

.cart{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:18px;
  cursor:pointer;
}

/* MENU */

.menu-bar{
  background:#232f3e;
  color:white;
  display:flex;
  gap:20px;
  padding:12px 20px;
  font-size:14px;
  overflow-x:auto;
}

/* HERO */

.hero{
  background:#f7c8dc;
  padding:30px;
}

.hero-content{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;
}

.hero-text h3{
  font-size:30px;
  margin-bottom:10px;
}

.hero-text h1{
  font-size:60px;
  margin-bottom:20px;
}

.hero-links{
  display:flex;
  gap:20px;
  font-weight:bold;
}

.hero-content img{
  width:350px;
  border-radius:10px;
}

/* PRODUCTS */

.products{
  width:95%;
  margin:auto;
  margin-top:-30px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
  padding-bottom:50px;
}

.card{
  background:white;
  padding:20px;
}

.card h2{
  font-size:24px;
  margin-bottom:20px;
}

.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
}

.grid img{
  width:100%;
  height:120px;
  object-fit:cover;
}

.grid p{
  font-size:14px;
  margin-top:5px;
}

.card a{
  display:inline-block;
  margin-top:15px;
  color:#007185;
  text-decoration:none;
}

.big-image{
  width:100%;
  height:350px;
  object-fit:cover;
}

/* RESPONSIVE */

@media(max-width:900px){

  .navbar{
    flex-wrap:wrap;
  }

  .hero-content{
    flex-direction:column;
    text-align:center;
  }

  .hero-text h1{
    font-size:45px;
  }

}
/* PRODUCTS */

.products{
  width:95%;
  margin:auto;
  margin-top:-30px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  padding-bottom:40px;
}

.card{
  background:white;
  padding:20px;
}

.card h2{
  font-size:22px;
  margin-bottom:15px;
}

.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.grid img{
  width:100%;
  height:120px;
  object-fit:cover;
}

.grid p{
  font-size:14px;
  margin-top:5px;
}

.big-image{
  width:100%;
  height:300px;
  object-fit:cover;
}

.card a{
  display:inline-block;
  margin-top:15px;
  text-decoration:none;
  color:#007185;
}

/* FOOTER */

footer{
  margin-top:30px;
}

.footer-top{
  background:#37475a;
  color:white;
  text-align:center;
  padding:15px;
}

.footer-content{
  background:#232f3e;
  color:white;
  display:flex;
  justify-content:space-around;
  flex-wrap:wrap;
  padding:40px;
}

.footer-content h3{
  margin-bottom:15px;
}

.footer-content p{
  margin:8px 0;
  color:#ddd;
}

.copyright{
  background:#131921;
  color:white;
  text-align:center;
  padding:20px;
}

/* RESPONSIVE */

@media(max-width:1200px){

  .products{
    grid-template-columns:repeat(3,1fr);
  }

}

@media(max-width:900px){

  .products{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:600px){

  .products{
    grid-template-columns:1fr;
  }

}
/* SIGN IN */

.signin-container{
  position:relative;
}

#signinBtn{
  background:#ffd814;
  border:none;
  padding:10px 25px;
  border-radius:8px;
  cursor:pointer;
  font-size:16px;
  font-weight:bold;
}

/* DROPDOWN */

.signin-dropdown{
  position:absolute;
  top:60px;
  right:0;
  width:500px;
  background:rgb(0, 0, 0)9, 11, 11);
  display:none;
  padding:20px;
  box-shadow:0 0 10px rgba(0,0,0,0.2);
  z-index:999;
}

.top-signin{
  text-align:center;
  border-bottom:1px solid #ddd;
  padding-bottom:15px;
}

.top-signin button{
  background:#ffd814;
  border:none;
  padding:10px 120px;
  border-radius:8px;
  font-size:16px;
  cursor:pointer;
}

.top-signin p{
  margin-top:10px;
  font-size:14px;
}

.dropdown-content{
  display:flex;
  gap:30px;
  margin-top:20px;
}

.left{
  width:40%;
  border-right:1px solid #0c0a0a;
}

.right{
  width:60%;
}

.left h2,
.right h2{
  margin-bottom:15px;
}

.left p,
.right p{
  margin:10px 0;
  cursor:pointer;
}

.left p:hover,
.right p:hover{
  color:#c7511f;
  text-decoration:underline;
}
.footer-content a{
  display:block;
  margin:8px 0;
  color:#ddd;
  text-decoration:none;
}

.footer-content a:hover{
  text-decoration:underline;
  color:white;
}