/* START HEADER */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.bg{
    width: 100%;
    height: 12vh;
    background-image: linear-gradient(rgba(0,0,0,0.75) , rgba(0,0,0,0.75)),url("../images/HomePage-pic-12.jpeg");
    background-position: center;
    background-size: cover;
    position: fixed;
    top: 0;
    z-index: 1000;
}
/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background:transparent; 
    padding: 1rem;
    height: 85px;
}

.logo img {
    width: 160px;
    height: 120px; 
    margin-top: 10px;
    margin-left: 40px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-right: 1rem;
}
.nav-links li :hover {
    border : 3px solid #fff;
   border-left: none;
   border-right: none;
   border-top: none;
   
}
.nav-links a {
    text-decoration: none;
    color: white; 
    font-size: 1.3rem;
}

.badge:after{
    content:attr(value);
    font-size:16px;
    color: #fff;
    background: red;
    border-radius:50%;
    padding: 0 5px;
    position:relative;
    left:-8px;
    top:-10px;
    opacity:0.9;
}

.cart-link{
    cursor: pointer;
    color: white;
}

/* Login  */
.login-button {
    background-color: #3498db; /* Customize login button color */
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.profile-name{
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    margin-left: 1rem;
    margin-right: 0.2rem;
}
.logout-button{
    background-color: #e74c3c;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Categories  */
.categories-dropdown {
    position: relative;
}

.categories-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 0.5rem;
    List-style-type: none;

}

.categories-dropdown-content li a {
    color:black;

}
.categories-dropdown-content li  {
padding: 10px;

}


.categories-dropdown:hover .categories-dropdown-content {
    display: block;
    z-index: 999;
}
.categories-dropdown-content li a:hover {
   border : 3px solid black;
   border-left: none;
   border-right: none;
   border-top: none;
}
.search{
    width:30%;
    height: 60px;
    margin-top: 20px;
  }
  .search form {
    height: 60%;
    width: 100%;
    border: 1px solid rgb(255, 255, 255);
    background: transparent;
    display: flex;
    align-items: center;
    border-radius: 60px;
    padding: 10px 20px;
    color: white;
  }
  
  .search form button {
    border: 0;
    border-radius: 50%;
    background: transparent;
  }
  .search form button img {
    height: 25px;
    width: 25px;
  }
  .search form input {
    background: transparent;
    flex:1;
    border:0;
    outline: none;
    padding: 24px 20px;
    font-size: 20px;
    color: white;
  }
    .search form input::placeholder {
        color: gainsboro;
    }
.contact-link {
    color: #fff;
    text-decoration: none;
    margin-left: 1rem;
}

/* END HEADER */

/* START FOOTER */

.social-media {
    font-family:  Arial, sans-serif;
    background-color: #ffd97f;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 30px;
}
.left-text {
    font-size: 14px;
}


.icon img {
     height: 20px;
     padding-right: 10px;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0b0b0b;
    padding: 20px;
}

.logof img {
    width: 200px; 
    height: auto;
}

.contact-info,
.about-us {
    flex: 1;
    margin: 0 20px;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    
}
.contact-info {
    padding-left: 80px;
}

.contact-info h3,
.about-us h3 {
    text-decoration: underline;
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-info p,
.about-us p {
    font-size: 14px;
    line-height: 1.5;
}

.copyright {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #888;
}
/* END FOOTER */