* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
  }
  
  body {
    height: 100%;
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
  }
  
  /* ---------- Header Container ---------- */
.Header {
  width: 100%;
  background-color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 30px 10px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
  
  /* ---------- Logo ---------- */
  .logo-header {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .logo-header img {
    height: 95px;
    width: auto;
    max-width: 100%;
  }
  
  /* ---------- Right-side (Cart + Menu) ---------- */
  .Header-right {
    position: absolute;
    top: 60px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 18px;
  }
  
  /* ---------- Cart Icon ---------- */
  .cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  
  .cart-icon-img {
    width: 30px;
    height: auto;
  }
  
  .cart-count-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.8rem;
    font-weight: bold;
    line-height: 1;
  }
  
  /* ---------- Hamburger ---------- */
  .hamburger {
    background: none;
    border: none;
    color: white;
    font-size: 34px;
    cursor: pointer;
    display: none;
    line-height: 1;
    padding: 0;
  }
  
  /* ---------- Navbar ---------- */
  .header-navbar {
    width: 100%;
    text-align: center;
    margin-top: 15px;
  }
  
  .header-navbar ul {
    display: flex;
    justify-content: center;
    gap: 35px;
  }
  
  .header-navbar ul li a {
    color: white;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
  }
  
  .header-navbar ul li a:hover {
    color: #0056b3;
  }
  
/* ---------- Mobile Responsive ---------- */
@media screen and (max-width: 768px) {
    .Header {
      flex-direction: column;
      align-items: center;
      padding: 10px 20px 0;
    }
    .logo-header {
        align-self: flex-start;
        width: 100%;
        display: flex;
        justify-content: flex-start;
      }      
  
    .logo-header img {
      height: 80px;
    }
  
    .Header-right {
      top: 40px;
      right: 20px;
      transform: none;
    }
  
    .hamburger {
      display: block;
    }
  
    .header-navbar {
      width: 100%;
      overflow: hidden;
      max-height: 0;
      padding: 0;
      background-color: #000;
      transition: max-height 0.4s ease, padding 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: flex-start; /* left align */
    }
  
    .header-navbar.show {
      max-height: 300px;
      padding: 20px 0px;
    }
  
    .header-navbar ul {
      flex-direction: column;
      gap: 20px;
      width: 100%;
    }
  
    .header-navbar ul li {
      width: 100%;
    }
  
    .header-navbar ul li a {
      display: block;
      color: white;
      font-size: 1rem;
      font-weight: 400;
      padding: 5px 10px;
      width: 100%;
      text-align: left;
    }
  }
  
