.merch-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .merch-title {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 20px;
      border-bottom: 2px solid #444;
      padding-bottom: 10px;
    }

    .merch-section {
      margin-bottom: 60px;
    }

    .merch-section h2 {
      font-size: 2rem;
      margin-bottom: 20px;
      border-left: 5px solid #e50914;
      padding-left: 10px;
    }

    .merch-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .merch-card {
      background-color: #111;
      border: 1px solid #333;
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
    }

    .merch-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    }

    .merch-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .merch-card-content {
      padding: 20px;
      text-align: center;
    }
    

    .merch-card-content h3 {
      margin: 0 0 10px;
      font-size: 1.2rem;
      color: #f5f5f5;
    }

    .merch-card-content p {
      font-size: 0.95rem;
      color: #aaa;
    }

    .merch-btn {
      display: inline-block;
      margin-top: 15px;
      padding: 10px 20px;
      border-radius: 5px;
      border: none;
      background: #e50914;
      color: #fff;
      font-weight: bold;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.3s;
    }

    .merch-btn:hover {
      background: #b20710;
    }