/* Position unten rechts */
.trustlex-sn-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99999;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid #f0f0f0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.trustlex-sn-popup.show {
  opacity: 1;
  transform: translateY(0);
}

.trustlex-sn-popup-inner {
  display: flex;
  align-items: center;
  padding: 16px;
}

.trustlex-sn-popup img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  margin-right: 16px;
  object-fit: cover;
}

.trustlex-sn-popup .trustlex-sn-content {
  line-height: 1.4;
}

.trustlex-sn-popup p {
  margin: 0;
  padding: 0;
  color: #333;
}

.trustlex-sn-popup .trustlex-sn-line1 {
  font-size: 13px;
  font-weight: 600;
}

.trustlex-sn-popup .trustlex-sn-verified-badge {
  width: 16px;
  height: 16px;
  color: #419073;
  vertical-align: -3px;
  margin: 0 2px;
}

.trustlex-sn-popup .trustlex-sn-line2 {
  font-size: 13px;
  font-weight: 600;
  margin-top: 2px;
}

.trustlex-sn-popup .trustlex-sn-line3 {
  font-size: 13px;
}

.trustlex-sn-popup .trustlex-sn-line4 {
  font-size: 10px;
  color: #888;
  margin-top: 4px;
}

@media (max-width: 600px) {
  .trustlex-sn-popup {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .trustlex-sn-popup img {
    width: 50px;
    height: 50px;
  }

  .trustlex-sn-popup .trustlex-sn-line1,
  .trustlex-sn-popup .trustlex-sn-line2,
  .trustlex-sn-popup .trustlex-sn-line3 {
    font-size: 12px;
  }
} 