* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: #f8f9fa;
      color: #333;
      line-height: 1.6;
    }

    .header {
      background: #2874f0;
      padding: 15px 30px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    }

    .logo {
      font-size: 26px;
      color: #fff;
      font-weight: 700;
      letter-spacing: 1px;
      cursor: pointer;
      transition: 0.3s;
    }

    .logo:hover {
      color: #ffd700;
      transform: scale(1.05);
    }

    .search-container {
      flex: 1;
      max-width: 500px;
      position: relative;
    }

    .search {
      width: 100%;
      padding: 10px 15px;
      border: none;
      border-radius: 20px;
      font-size: 14px;
      outline: none;
      transition: 0.3s;
    }

    .search:focus {
      box-shadow: 0 0 8px #ffd700;
    }

    .search-suggestions {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: white;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      max-height: 200px;
      overflow-y: auto;
      display: none;
      z-index: 1001;
    }

    .search-suggestion {
      padding: 10px 15px;
      cursor: pointer;
      border-bottom: 1px solid #eee;
      transition: 0.2s;
    }

    .search-suggestion:hover {
      background: #f0f7ff;
      color: #2874f0;
    }

    .search-suggestion:last-child {
      border-bottom: none;
    }

    .menu {
      display: flex;
      gap: 25px;
      color: #fff;
      position: relative;
      font-weight: 500;
      font-size: 16px;
    }

    .dropdown {
      position: relative;
      cursor: pointer;
      transition: 0.3s;
    }

    .dropdown:hover {
      color: #ffd700;
    }

    .dropdown::after {
      content: '';
      display: block;
      width: 0%;
      height: 2px;
      background: #ffd700;
      transition: 0.5s;
      margin: auto;
    }

    .dropdown:hover::after {
      width: 100%;
    }

    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: white;
      padding: 12px 18px;
      border-radius: 6px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      color: #333;
      animation: fadeIn 0.3s ease-in-out;
      min-width: 140px;
      z-index: 1000;
    }

    .dropdown:hover .dropdown-menu {
      display: block;
    }

    .dropdown-menu a {
      display: block;
      margin: 8px 0;
      text-decoration: none;
      font-size: 14px;
      color: #333;
      transition: 0.3s;
    }

    .dropdown-menu a:hover {
      color: #2874f0;
      transform: translateX(5px);
    }

    .hero {
      background: linear-gradient(to right, #2874f0, #00bcd4);
      text-align: center;
      color: white;
      padding: 60px 20px;
    }

    .hero h1 {
      font-size: 36px;
      margin-bottom: 10px;
    }

    .hero p {
      font-size: 18px;
      margin-bottom: 20px;
    }

    .shop-btn {
      padding: 12px 24px;
      font-size: 16px;
      background: #ffd700;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: 0.3s;
      color: #333;
      font-weight: 600;
    }

    .shop-btn:hover {
      background: #ffb400;
      transform: scale(1.05);
    }

    .products {
      display: flex;
      flex-wrap: wrap; 
      padding: 40px;
      gap: 20px;
      justify-content: center;
    }

    .product-card {
      background: white;
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s, box-shadow 0.3s;
      flex: 1 1 250px; 
      max-width: 300px;
    }

    .product-card.hidden {
      display: none;
    }

    .product-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      background: #f0f0f0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #666;
      font-size: 14px;
    }

    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

    .product-card h3 {
      margin: 15px 0;
      font-size: 18px;
      color: #222;
    }

    .product-card .price {
      font-size: 20px;
      color: #2874f0;
      font-weight: 600;
      margin: 10px 0;
    }

    .product-card .original-price {
      font-size: 16px;
      color: #999;
      text-decoration: line-through;
      margin-right: 10px;
    }

    .product-card button {
      margin-top: 10px;
      padding: 10px 16px;
      background: #2874f0;
      color: white;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: 0.3s;
    }

    .product-card button:hover {
      background: #0056b3;
      transform: scale(1.05);
    }

    .no-results {
      text-align: center;
      padding: 40px;
      color: #666;
      font-size: 18px;
      display: none;
    }

    .search-results-header {
      padding: 20px 40px 0;
      color: #666;
      font-size: 16px;
      display: none;
    }

    .footer {
      text-align: center;
      padding: 20px;
      background: #2874f0;
      color: white;
      margin-top: 40px;
      font-size: 14px;
    }

    @keyframes fadeIn {
      from {opacity: 0; transform: translateY(-10px);}
      to {opacity: 1; transform: translateY(0);}
    }

    /* Mobile responsive */
    @media (max-width: 768px) {
      .header {
        flex-direction: column;
        gap: 15px;
      }
      
      .search-container {
        width: 100%;
        max-width: none;
      }
      
      .menu {
        gap: 15px;
        font-size: 14px;
      }
      
      .hero h1 {
        font-size: 28px;
      }
      
      .products {
        padding: 20px;
      }
    }