  .page-header {
      padding: 8rem 0 4rem;
      position: relative;
      overflow: hidden;
  }

  .page-header-bg {
      position: absolute;
      inset: 0;
      opacity: 0.2;
  }

  .page-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
  }

  @media (min-width: 768px) {
      .page-title {
          font-size: 3rem;
      }
  }

  .page-desc {
      color: var(--muted-foreground);
      max-width: 36rem;
  }

  .products-section {
      padding: 3rem 0 6rem;
  }

  .mql5-cta {
      margin-top: 4rem;
      padding: 2rem;
      border-radius: 1rem;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      align-items: center;
      text-align: center;
  }

  @media (min-width: 768px) {
      .mql5-cta {
          flex-direction: row;
          justify-content: space-between;
          text-align: left;
      }
  }

  .mql5-content h3 {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--foreground);
      margin-bottom: 0.5rem;
  }

  .mql5-content p {
      color: var(--muted-foreground);
      font-size: 0.875rem;
  }

  .filters {
      display: flex;
      gap: 16px;
      margin: 40px 0 32px;
      flex-wrap: wrap;
  }

  .filters-group {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
  }

  .filter-btn {

      font-weight: 500;
      border-radius: 8px;

      padding: 8px 14px;
      border-radius: 9999px;
      font-size: 0.875rem;
      font-weight: 500;
      border: none;
      cursor: pointer;
      transition: all 0.2s ease;


      border: 1px solid rgba(226, 225, 216, 0.25);
      background: rgba(75, 74, 72, 0.05);
      color: #f5f5f5;
      cursor: pointer;
      transition: all 0.2s ease;
      backdrop-filter: blur(6px);
  }

  .filter-btn:hover {
      background: rgba(255, 215, 0, 0.05);
      border-color: rgba(255, 215, 0, 0.5);
  }

  .filter-btn.active {
      border-color: transparent;
      border-radius: var(--radius);
      font-size: 0.875rem;
      font-weight: 500;
      background: hsl(142, 76%, 36%, 0.2);
      color: #f5f5f5;
  }

  @media (max-width: 768px) {
      .filters {
          justify-content: center;
      }
  }

  /* ===== PAGINATION ===== */
  .pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      margin-top: 40px;
      margin-bottom: 40px;
  }

  .pagination button {
      padding: 8px 14px;
      background: #1a1a2e;
      color: #ddd;
      border: 1px solid #444;
      border-radius: 6px;
      cursor: pointer;
      font-size: 14px;
      transition: all 0.2s ease;
  }

  .pagination button:hover:not(:disabled) {
      background: #2d2d44;
      color: var(--primary);
      border-color: var(--primary);
  }

  .pagination button:disabled {
      opacity: 0.4;
      cursor: not-allowed;
  }

  .pagination .pagination-numbers {
      display: flex;
      gap: 6px;
  }

  .pagination .pagination-numbers button.active {
      background: var(--primary);
      color: #000;
      border-color: var(--primary);
      font-weight: bold;
  }
/* ===== NO RESULTS ===== */
.no-results {
    margin-top: 22px;
    padding: 18px 16px;
    border: 1px dashed rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    text-align: center;
    color: var(--muted-foreground);
    background: rgba(255, 255, 255, 0.03);
}

.no-results.hidden {
    display: none;
}
