.psearch-container {
      display: flex;
      max-width: 1200px;
      margin: 40px auto;
      box-shadow: 0 3px 20px rgba(0, 0, 0, .1);
      background: white;
      min-height: 200px;
    }

    .psearch-icon {
      background: #ffc700;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 20px;
      font-size: 60px;
      color: #ffc700;
      border-right: 1px solid #ddd;
    }

    .psearch-content {
      flex: 1;
      padding: 20px 30px;
    }

    .psearch-tabs {
      display: flex;
      border-bottom: 2px solid #ddd;
      margin-bottom: 20px;
    }

    .psearch-tab {
      padding: 10px 20px;
      cursor: pointer;
      font-weight: bold;
      color: #555;
      border-bottom: 3px solid transparent;
      text-transform: uppercase;
    }

    .psearch-tab.active,
    .psearch-tab:hover {
      color: #ffc700;
      border-color: #ffc700;
    }

    .psearch-tab-content {
      display: none;
    }

    .psearch-tab-content.active {
      display: block;
    }

    .psearch-form-row {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 20px;
    }

    .psearch-form-group {
      flex: 1;
      min-width: 200px;
    }

    .psearch-container label {
      font-weight: bold;
      display: block;
      margin-bottom: 6px;
      color: #333;
    }

    /* --- Range slider dupla fogóval --- */
    .psearch-range-container {
      position: relative;
      height: 40px;
    }

    .psearch-container input[type=range] {
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      pointer-events: none;
      -webkit-appearance: none;
      background: none;
    }

    .psearch-container input[type=range]::-webkit-slider-thumb {
      pointer-events: all;
      width: 16px;
      height: 16px;
      background: #ffc700;
      border: none;
      cursor: pointer;
      -webkit-appearance: none;
    }

    .psearch-slider-track {
      position: absolute;
      height: 4px;
      background: #ddd;
      top: 18px;
      width: 100%;
    }

    .psearch-slider-range {
      position: absolute;
      height: 4px;
      background: #ffc700;
      top: 18px;
    }

    .psearch-range-values {
      display: flex;
      justify-content: space-between;
      font-size: 0.9em;
      color: #666;
      margin-top: 4px;
    }

    /* --- Látható opciók (pill stílus) --- */
    .psearch-options {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .psearch-option {
      padding: 6px 12px;
      border: 1px solid #ccc;
      cursor: pointer;
      user-select: none;
      transition: background 0.2s;
    }

    .psearch-option.active {
      background: #ffc700;
      color: white;
      border-color: #ffc700;
    }

    .psearch-button {
      text-align: center;
    }

    .psearch-button button {
      background: #ffc700;
      color: white;
      border: none;
      padding: 14px 40px;
      cursor: pointer;
      text-transform: uppercase;
      font-weight: bold;
    }

    .psearch-button button:hover {
      background: #ffc700;
    }

    @media (max-width: 768px) {
      .psearch-form-row {
        flex-direction: column;
      }

      .psearch-container {
        flex-direction: column;
      }

      .psearch-icon {
        border-right: none;
        border-bottom: 1px solid #ddd;
        font-size: 30px;
        padding: 10px;
      }
    }

.psearch-info {
  display: inline-block;
  position: relative;
  cursor: pointer;
  color: #a6a5ad;
}

.psearch-tooltip {
  visibility: hidden;
  width: 200px;
  background-color: #333;
  color: #fff;
  text-align: left;
  padding: 8px;
  border-radius: 4px;
  position: absolute;
  z-index: 10;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 0.85em;
  pointer-events: none;
}

.psearch-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

.psearch-info:hover .psearch-tooltip {
  visibility: visible;
  opacity: 1;
}

.product-trust-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.product-trust-box .card {
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-trust-box .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-trust-box .card img {
  width: 80px;
  height: 80px;
  margin-right: 1rem;
}

.product-trust-box .card-body {
  text-align: left;
}

@media (max-width: 767px) {
  .product-trust-box {
    grid-template-columns: 1fr;
  }
  
  .product-trust-box .card {
    flex-direction: row; /* vagy column, ha a kép alá akarod tenni */
  }

  .product-trust-box .card img {
    width: 60px;
    height: 60px;
    margin-right: 0.5rem;
  }
}