html{
  scroll-behavior: smooth;
}
/* Category Page Styles */
.category-page {
    padding-top: 80px;
    background-color: rgba(255, 255, 255, 0.05);
    align-items: center;
    justify-content: center;
    align-content: center;
  }
  
  .category-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;

  }
  
  .category-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15, 15, 15, 0.4), rgba(15, 15, 15, 0.8));
  }
  
  .category-hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
  }
  
  .category-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FF3366, #FF6B3D);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .category-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
  }
  
  /* Product Grid */
  .products {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
  }
  
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .product-card {
    background:rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .product-card h3{
    color: #ffffff;
  }

  .product-card p{
    color: #FF3366;
  }
  .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }
  
  .product-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
  }
  
  .product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .product-card:hover .product-image img {
    transform: scale(1.1);
  }
  
  .product-info {
    padding: 1.5rem;
  }
  
  .product-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color:#FF3366;
    margin-bottom: 1rem;
  }
  
  .add-to-cart {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #FF3366, #FF6B3D);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 51, 102, 0.3);
  }
  
  /* Filters */
  .filters {
    margin-bottom: 3rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .filter-button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .filter-button:hover,
  .filter-button.active {
    background: linear-gradient(135deg, #FF3366, #FF6B3D);
    transform: translateY(-2px);
  }


