/* General Reset and Base Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Outfit', sans-serif;
    background-color: #f7f7f7;
    color: #333;
    line-height: 1.6;
  }
  
  /* Navbar */
  .navbar {
    background-color: #ffffff;
    color: rgb(7, 6, 6);
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  

  .nav-links {
    display: flex;
    gap: 20px;
  }
  
  .nav-links a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #ff3f6c;
  }
  
  /* Cart Section */
  .navbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .cart-link {
    color: #000000;
    font-weight: 500;
    text-decoration: none;
    font-size: 16px;
    position: relative;
  }

  .login-link {
    color: #000000;
    font-weight: 500;
    text-decoration: none;
    font-size: 16px;
    position: relative;
  }
  
  .login-link:hover {
    color: #ff3f6c;
  }
  
  .cart-link:hover {
    color: #ff3f6c;
  }
  
  .cart-count {
    font-size: 0.9rem;
    color: #ff3f6c;
    margin-left: 5px;
  }
  
  /* Mobile Menu Icon */
  .menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #ff3f6c;
  }
  
  /* Hero Section */
  .hero {
    background-image: url('https://images.unsplash.com/photo-1618221408660-cffa6b3f67a7');
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
  }
  
  .hero-text {
    max-width: 600px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 10px;
  }
  
  .hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  .cta-button {
    background-color: #ff3f6c;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
  }
  
  .cta-button:hover {
    background-color: #ff3f6c;
  }
  
  /* Products Section */
  .products {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
  }
  
  .products h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .product-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .product-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    width: 280px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
  }
  
  .product-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
  }
  
  .product-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
  }
  
  .product-card p {
    color: #ff3f6c;
    font-weight: 600;
    font-size: 1.1rem;
  }
  
  /* Footer */
  .footer {
    background-color: #111;
    color: #aaa;
    padding: 20px;
    text-align: center;
    font-size: 0.9rem;
  }



  
  /* Responsive */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      background-color: #111;
      top: 60px;
      right: 0;
      width: 100%;
      text-align: center;
      padding: 20px 0;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .menu-icon {
      display: block;
    }
  
    .hero-text h1 {
      font-size: 2.2rem;
    }
  
    .hero-text {
      padding: 20px;
    }
  }
  