*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #f5f5f5;
        font-family: "Alice", serif !important;
        font-weight: 400;
        font-style: normal;
      
      
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 70px;
}

header .header .search_input {
    display: flex;
}

.search_input form input {
    border-radius: 20px;
    width:60vh;
    height: 5vh;
    border: 1px solid purple;
}

.search_input form input:focus {
    box-shadow: none;
    border: 1px solid purple;  
}

.search_input {
    position: relative;
}

.search_input form i {
    position: absolute;
    top: 1%;
    right:0px;
    color: white;
    font-size:18px;
    background-color: purple;
    padding: 8px 20px;
    border-radius: 20px;
}
.login_signup{
    border-radius: 50px;
    border: none;
    padding:8px 15px;
    background-color: purple;
    box-shadow:  20px 10px 25px #c1c1c1,
    -10px -10px 80px #ffffff;

}
.login_signup a{
    text-decoration: none;
    color: white;
}
.menu {
    text-align: center;

}

.menu ul {
    text-align: center;
    margin-top: 20px;
}

.menu ul li {
    font-size:10px;
    text-transform: uppercase;
    list-style: none;
    display: inline;
    margin-right: 20px;
    border: 1px solid #e3e8e3;
    padding: 8px 5px;
    border-radius: 8px;
}

.menu ul li a {
    text-decoration: none;
    color: black;
}

.menu ul li a:hover {
    color: purple;
}

.nav-toggle {
    display: none;
    background-color: purple;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
}

.top_header{
    display: flex;
    height: 25px;
    justify-content: space-around;
    background-color: purple;
}
.top_header .header2 ul{
    margin-right: 50px;
   
}
.top_header ul li{
    display: inline;
}
.top_header ul li a{
    text-decoration: none;
    color: black;
    margin-right:15px ;
    color: white;
    font-size:12px;
}
.top_header ul li a:hover{
    color: white !important;
}
.top_header ul li a i{
    color: white;
    font-size:12px;
    margin-right:5px;
}

.sociel_icon i{
    color: whitesmoke;
    font-size: 12px;
    margin-right:2px;
}
.advertise_banner img{
    width:100%;
    height: 500px;
}
.advertise_banner{
    box-shadow: 4.7px 9.4px 9.4px hsl(0deg 0% 0% / 0.35);
    border: 2px solid white;
}
.owl-carousel .item{
    box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
}

.owl-carousel .item img{
    width:50%;
    height:290px;
}
.owl-carousel {
    margin-top:20px;
}
.adv_banner img{
    width:100%;
}

.adv_banner img:hover{
    transform: scale(1.1);
    transition-duration: 2s;
    
}
.adv_banner1 {
    overflow: hidden;
}
.adv_banner1 img{
    opacity: 1;
   
}
.adv_banner1 img:hover{
    opacity: 0.5;
    transform: scale(1.1);
    transition-duration: 2s;

}
.content_products img{
    width:80% !important;
    height:325px !important;
}

 /* add new css for login design */
   .login-dropdown {
  display: none;
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 10px 15px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  min-width: 180px;
  z-index: 999;
}

/* Dropdown Buttons */
.login-btn {
  display: block;
  background-color: #28a745;
  color: white;
  text-align: center;
  padding: 8px 0;
  margin-bottom: 8px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.login-btn:last-child {
  margin-bottom: 0;
}

.login-btn:hover {
  background-color: #218838;
}
/* end */


@media (max-width: 768px) {
    .menu ul {
        display: none;
        flex-direction: column;
    }

    .menu ul.show {
        display: flex;
    }

    .menu ul li {
        display: block;
        margin: 10px 0;
    }

    .nav-toggle {
        display: inline-block;
        margin-left: 350px;
    }
    .search_input form input{
        display: none;
    }
    .search_input button{
        display: none;
    }
    .header .logo {
        position: absolute;
        top: 30px;
        left:40px;
    }


   
}
