
body {
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
  }
  
  .shop-hero {
    text-align: center;
    padding: 2.5rem 1rem;
    background-color: #7b1e1e;
    color: #fff;
  }
  
  .shop-hero h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .shop-hero p {
    font-size: 1rem;
  }
  
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .product-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.06);
    padding: 1rem;
    text-align: center;
    transition: transform 0.2s ease;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
  }
  
  .product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
  }
  
  .product-card h3 {
    font-size: 1.1rem;
    margin: 0.75rem 0 0.5rem;
  }
  
  .product-card .price {
    font-size: 1rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 1rem;
  }
  
  .product-card button {
    background-color: #7b1e1e;
    color: #fff;
    border: none;
    padding: 0.6rem 1.25rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
  }
  
  .product-card button:hover {
    background-color: #5e1515;
  }
  
  .btn-join {
    display: inline-block;
    background-color: #7b1e1e;
    color: #fff !important;
    border: none;
    padding: 0.6rem 1.25rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    text-align: center;
    margin-top: 0.5rem;
  }
  
  .btn-join:hover {
    background-color: #5e1515;
  }
  

  @media (max-width: 500px) {
    .shop-hero h1 {
      font-size: 1.5rem;
    }
  
    .product-card h3 {
      font-size: 1rem;
    }
  
    .product-card .price {
      font-size: 0.95rem;
    }
  }
  