    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #f8f9fa;
      background-image: url("data:image/svg+xml,%3Csvg width='120' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20 Q30 0 60 20 T120 20' stroke='%23ed64a6' stroke-opacity='0.1' fill='transparent' stroke-width='2'/%3E%3C/svg%3E");
      color: #333;
    }
    
    /* Top Info Bar */
    .top-bar {
      background: #e3f2fd;
      padding: 8px 20px;
      display: flex;
      justify-content: flex-end;
      font-size: 14px;
    }
    .top-bar div {
      margin-left: 20px;
      cursor: pointer;
      color: #1976d2;
    }
    .top-bar div:hover {
      color: #0d47a1;
    }
    
    .navbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
      padding: 15px 40px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      backdrop-filter: blur(10px);
    }
    
    .logo {
      display: flex;
      align-items: center;
    }
    .logo img {
      width: 55px;
      margin-right: 15px;
      border-radius: 8px;
    }
    .logo h2 {
      margin: 0;
      color: #2c3e50;
      font-size: 24px;
    }
    .logo p {
      margin: 0;
      font-size: 12px;
      color: #7f8c8d;
    }
    
    .search-box {
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      padding: 12px 20px;
      display: flex;
      align-items: center;
      background: #fff;
      width: 50%;
      transition: all 0.3s ease;
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }
    .search-box:focus-within {
      border-color: #e74c3c;
      box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
    }
    .search-box input {
      border: none;
      outline: none;
      padding: 0;
      flex: 1;
      font-size: 16px;
      color: #333;
    }
    .search-box input::placeholder {
      color: #999;
    }
    .search-box i {
      color: #999;
      font-size: 16px;
      cursor: pointer;
      transition: color 0.3s ease;
    }
    .search-box:focus-within i {
      color: #e74c3c;
    }
    
    /* Menu and Cart - Cart moved to right */
    .nav-right {
      display: flex;
      align-items: center;
      gap: 30px;
    }
    .menu {
      display: flex;
      gap: 25px;
    }
    .menu a {
      text-decoration: none;
      font-weight: 600;
      color: #2c3e50;
      font-size: 16px;
      transition: color 0.3s ease;
    }
    .menu a:hover {
      color: #e74c3c;
    }
    .cart-icon {
      position: relative;
      font-size: 24px;
      color: #e74c3c;
      cursor: pointer;
      padding: 8px;
      border-radius: 8px;
      transition: all 0.3s ease;
    }
    .cart-icon:hover {
      background: #f8f9fa;
      color: #c0392b;
    }
    .cart-icon span {
      position: absolute;
      top: -2px;
      right: -2px;
      background: #e74c3c;
      color: white;
      font-size: 12px;
      border-radius: 8px;
      padding: 2px 6px;
      font-weight: bold;
    }
    
    .banner-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      overflow: hidden;
      z-index: 1;
    }
    .banner-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('https://t3.ftcdn.net/jpg/06/48/53/82/240_F_648538289_PzWYhuDVcf0iXSDpSB01E9NeeeQDqhBG.jpg') no-repeat center center/cover;
      filter: blur(3px);
      transform: scale(1.1);
    }
    .banner-content {
      position: absolute;
      top: 50%;
      left: 40px;
      transform: translateY(-50%);
      color: white;
      z-index: 10;
      max-width: 50%;
    }
    .banner-content h1 {
      font-size: 42px;
      font-weight: bold;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }
    .banner-content p {
      font-size: 20px;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
      line-height: 1.4;
      margin-bottom: 30px;
    }
    .banner-buttons {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }
    .banner-btn {
      padding: 12px 25px;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .banner-btn-primary {
      background: #e74c3c;
      color: white;
    }
    .banner-btn-primary:hover {
      background: #c0392b;
      transform: translateY(-2px);
    }
    .banner-btn-secondary {
      background: transparent;
      color: white;
      border: 2px solid white;
    }
    .banner-btn-secondary:hover {
      background: white;
      color: #2c3e50;
      transform: translateY(-2px);
    }