* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      background: #111420;
      color: white;
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      padding-top: 80px;
    }
     /* Header Styles */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background: #111420;
      border-bottom: 1px solid #22263a;
      padding: 15px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    .logo {
      height: 50px;
      width: auto;
    }
    .nav-menu {
      display: flex;
      gap: 30px;
      align-items: center;
      
    }
    .nav-menu a {
      color: white;
      text-decoration: none;
      font-size: 1em;
      transition: color 0.3s;
    }
    .nav-menu a:hover {
      color: #fe7300;
    }
    .cart-icon {
      position: relative;
      cursor: pointer;
      padding: 10px;
      background: #111420;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s;
    }
    .cart-icon:hover {
      background: #d85f00;
    }
    .cart-count {
      position: absolute;
      top: -5px;
      right: -5px;
      background: #ff4444;
      color: white;
      border-radius: 50%;
      width: 20px;
      height: 20px;
      font-size: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .language-switcher {
      display: flex;
      gap: 10px;
      align-items: center;
    }
    .flag-btn {
      background: none;
      border: none;
      cursor: pointer;
      padding: 5px;
      opacity: 0.7;
      transition: opacity 0.3s;
    }
    .flag-btn:hover,
    .flag-btn.active {
      opacity: 1;
    }
    .flag-btn img {
      width: 30px;
      height: 20px;
      border-radius: 3px;
    }
    @media (max-width: 1000px) {
      .logo {
        width: auto;
        height: 20px;
      }
    }
    @media (max-width: 600px) {
      .header {
        width: 100%;
      position: fixed;
      background: #111420;
      border-bottom: 1px solid #22263a;
      padding: 15px 20px;
      display: flex;
    
      align-items: center;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    .logo {
      margin-right: 0.5rem;
      height: 10px;
      width: auto;
    }
    .nav-menu {
      display: flex;
      gap: 0.5rem;
      align-items: center;
      
    }
    .nav-menu a {
      color: white;
      text-decoration: none;
      font-size: 0.7em;
      transition: color 0.3s;
    }
    .nav-menu a:hover {
      color: #fe7300;
    }
    .cart-icon {
      position: relative;
      cursor: pointer;
      padding: 10px;
      background: #111420;
      border-radius: 50%;
      width: 25px;
      height: 25px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s;
    }
    .cart-icon2 {
      font-size: 0.8rem;
      
    }
    .cart-icon:hover {
      background: #d85f00;
    }
    .cart-count {
      position: absolute;
      top: -7px;
      right: -7px;
      background: #ff4444;
      color: white;
      border-radius: 50%;
      width: 15px;
      height: 15px;
      font-size: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .language-switcher {
      display: flex;
      gap: 2px;
      align-items: center;
    }
    .flag-btn {
      background: none;
      border: none;
      cursor: pointer;
      padding: 2px;
      opacity: 0.7;
      transition: opacity 0.3s;
    }
    .flag-btn:hover,
    .flag-btn.active {
      opacity: 1;
    }
    .flag-btn img {
      width: 20px;
      height: 15px;
      border-radius: 3px;
    }

    }


   
