/* -------------------------
   GLOBAL STYLES
--------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  
  body {
    background: #0d0d0d;
    color: #fff;
  }
  
  /* -------------------------
     HERO SECTION
  --------------------------*/
  .shop-hero {
    text-align: center;
    padding: 80px 6%;
    background: url('./yellow11.webp') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
  }
  
  .shop-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
  }
  
  .shop-hero h2,
  .shop-hero p {
    position: relative;
    z-index: 2;
  }
  
  .shop-hero h2 {
    font-size: 3rem;
    font-weight: 700;
  }
  
  .shop-hero p {
    margin-top: 8px;
    font-size: 1.2rem;
    opacity: 0.85;
  }
  
  /* -------------------------
     SHOP SECTION LAYOUT
  --------------------------*/
  .shop-section {
    display: flex;
    gap: 40px;
    padding: 60px 6%;
  }
  
  /* -------------------------
     SIDEBAR FILTERS
  --------------------------*/
  .shop-filters {
    width: 260px;
    background: #1a1a1a;
    padding: 25px;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 80px;
  }
  
  .shop-filters h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ff66c4;
  }
  
  .shop-filters ul {
    list-style: none;
    margin-bottom: 25px;
  }
  
  .shop-filters li {
    margin: 10px 0;
    display: flex;
    align-items: center;
  }
  
  .shop-filters label {
    margin-left: 8px;
    cursor: pointer;
  }
  
  /* -------------------------
     PRODUCT GRID
  --------------------------*/
  .product-grid {
    display: grid;
    flex: 1;
    gap: 25px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  
  .product-card {
    background: #1a1a1a;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #222;
  }
  
  .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 4px 20px rgba(255,20,147,0.4);
  }
  
  .product-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .product-card h4 {
    margin-top: 12px;
    font-size: 1.1rem;
  }
  
  .product-card p {
    margin: 6px 0 12px;
    font-weight: 600;
    color: #ff66c4;
  }
  
  .product-card button {
    background: linear-gradient(135deg, #ff1493, #7700a8);
    border: none;
    padding: 10px 16px;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
  }
  
  .product-card button:hover {
    background: #ff1493;
  }
  
  /* -------------------------
     RESPONSIVE DESIGN
  --------------------------*/
  
  /* ---------- LARGE TABLET (1024px) ---------- */
  @media (max-width: 1024px) {
    .shop-section {
      gap: 30px;
    }
  
    .shop-filters {
      width: 220px;
    }
  }
  
  /* ---------- TABLET (768px) ---------- */
  @media (max-width: 768px) {
    .shop-section {
      flex-direction: column;
    }
  
    .shop-filters {
      width: 100%;
      position: relative;
      top: 0;
    }
  
    .shop-hero h2 {
      font-size: 2.4rem;
    }
  
    .shop-hero p {
      font-size: 1rem;
    }
  }
  
  /* ---------- MOBILE (480px) ---------- */
  @media (max-width: 480px) {
  
    .shop-hero {
      padding: 60px 6%;
      background-attachment: scroll;
    }
  
    .shop-hero h2 {
      font-size: 1.9rem;
    }
  
    .product-grid {
      grid-template-columns: 1fr;
    }
  
    .product-card img {
      height: 220px;
    }
  }
  