/* ===== Trust / İkna Widgetleri ===== */
.trust-section {
  padding: 0 0 36px;
  background: #f8fafc;
}

.trust-container {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.trust-card:hover {
  border-color: #dde4ec;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.trust-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.trust-icon--shipping { background: #fff3e0; color: #ff6600; }
.trust-icon--secure   { background: #e8f5e9; color: #43a047; }
.trust-icon--return   { background: #ebf4ff; color: #2d5be3; }
.trust-icon--delivery { background: #fce4ec; color: #e53935; }

.trust-body {
  min-width: 0;
}

.trust-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #2d3748;
  line-height: 1.3;
  margin-bottom: 3px;
}

.trust-text {
  font-size: 0.6875rem;
  font-weight: 500;
  color: #718096;
  line-height: 1.4;
}

/* ===== Responsive ===== */
@media (max-width: 1292px) {
  .trust-container {
    padding: 0 16px;
  }
}

@media (max-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .trust-section {
    padding-bottom: 28px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-card {
    padding: 16px 18px;
  }

  .trust-icon {
    width: 42px;
    height: 42px;
  }
}
