* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: "Arial";
    background-image: linear-gradient(
      45deg,
      hsl(96deg 48% 8%) 0%,
      hsl(103deg 40% 12%) 8%,
      hsl(103deg 40% 16%) 17%,
      hsl(102deg 40% 20%) 25%,
      hsl(102deg 41% 24%) 33%
    );
    background-attachment: fixed;
    min-height: 100vh;
    color: #333;
  }
  
  .shop-container {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
  }
  
  .shop-header {
    color: #fff;
    margin-bottom: 40px;
  }
  
  .shop-header h1 {
    font-size: calc(3rem + 0.5vw);
    margin-bottom: 20px;
  }
  
  .shop-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
  }
  
  .categories {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  
  .category-button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .category-button:hover,
  .category-button.active {
    background: #8dc26f;
    border-color: #8dc26f;
  }
  
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
  }
  
  .product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .product-card[data-hidden="true"] {
    display: none;
  }
  
  .product-image {
    height: 300px;
    background: linear-gradient(to bottom, #9fd483, #8dc26f);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
  .product-details {
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: 250px;
  }
  
  .product-name {
    font-family: 'PT Serif', serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .product-description {
    color: #666;
    line-height: 1.4;
    margin-bottom: 20px;
    flex-grow: 1;
  }
  
  .product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
  }
  
  .product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #58873d;
  }
  
  .add-to-cart {
    background: #58873d;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .add-to-cart:hover {
    background: #70a751;
  }
  
  @media (max-width: 768px) {
    .shop-header h1 {
      font-size: 2.5rem;
    }
  
    .products-grid {
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 20px;
    }
  
    .product-image {
      height: 250px;
    }
  }