/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f8f9fa;
    color: #333;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff3f6c, #ffafbd);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  header .logo h1 {
    font-size: 1.8rem;
    color: #fff;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s;
  }
  
  nav ul li a:hover {
    color: #ffd700;
  }
  
  .user-actions a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.2);
    transition: background 0.3s;
  }
  
  .user-actions a:hover {
    background-color: rgba(255, 255, 255, 0.4);
  }
  
  /* Hero Banner */
  .hero-banner img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  /* Categories Section */
  .categories {
    padding: 2rem;
    text-align: center;
  }
  
  .categories h2 {
    font-size: 2rem;
    color: #ff3f6c;
    margin-bottom: 1rem;
  }
  
  .category-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .category-card img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s;
    border: 5px solid #ff3f6c;
  }
  
  .category-card img:hover {
    transform: scale(1.1);
  }
  
  .category-card p {
    margin-top: 0.5rem;
    font-weight: bold;
    color: #333;
  }
  
  /* Product Grid */
  .product-grid {
    padding: 2rem;
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
  }
  
  .product-grid h2 {
    font-size: 2rem;
    color: #ff3f6c;
    margin-bottom: 1rem;
  }
  
  .products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }
  
  .product-card {
    border: none;
    padding: 1rem;
    text-align: center;
    background: linear-gradient(135deg, #fff1eb, #ace0f9);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
  }
  
  .product-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  .product-card h3 {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    color: #222;
  }
  
  .product-card .price {
    color: #ff3f6c;
    font-weight: bold;
  }
  
  .product-card .description {
    color: #535766;
  }
  
  /* Footer */
  footer {
    background: linear-gradient(135deg, #2a2a2a, #444);
    color: #fff;
    padding: 2rem;
  }
  
  .footer-links {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1rem;
  }
  
  .footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ff3f6c;
  }
  
  .footer-section ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
  }
  
  .footer-section ul li a:hover {
    color: #ff3f6c;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #666;
  }
  