.cms-page {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 20px;
  }

  .card {
    display: block;
    text-decoration: none;
    color: inherit;
  }
  
  /* ===== TOOLBAR ===== */
  .toolbar {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  
  .toolbar input,
  .toolbar select {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    min-width: 160px;
  }
  
  /* ===== GRID ===== */
  .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  /* ===== CARD ===== */
  .card {
    background: #fff;
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: .2s;
    cursor: pointer;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  /* image */
  .img-wrap {
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .img-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
  }
  
  /* text */
  .meta {
    font-size: 12px;
    color: #888;
  }
  
  .price {
    font-weight: 600;
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
  }

  @media (max-width: 640px) {
    .cms-page {
      padding: 24px 16px;
    }

    .cms-page h1 {
      font-size: 1.75rem;
      margin-bottom: 16px;
    }

    .toolbar {
      flex-direction: column;
      gap: 10px;
    }

    .toolbar input,
    .toolbar select {
      width: 100%;
      min-width: unset;
    }

    .grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .card {
      padding: 14px;
    }

    .img-wrap {
      height: 200px;
    }

    .card h3 {
      font-size: 1rem;
      line-height: 1.35;
    }
  }