.supplier-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.supplier-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: relative;
  transition: all 0.2s ease-in-out;
}

.supplier-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.supplier-card.cheapest {
  border: 2px solid #3b961a;
}

.top-offer-badge {
  position: absolute;
  top: -10px;
  left: 20px;
  background: #3b961a;
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
}

.supplier-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.supplier-logo {
  width: 80px;
  height: 80px;
  object-fit: fill;
  margin-right: 15px;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .supplier-logo {
    width: 70px;
    height: 70px;
  }
}

.supplier-title {
  margin: 0;
  font-size: 16px;
  color: #333;
}

.supplier-rating {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.supplier-rating .stars {
  color: #f39c12;
  margin-right: 5px;
}

.supplier-rating .review-count {
  font-size: 14px;
  color: #666;
}

.price-section {
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.total-price {
  font-weight: bold;
  font-size: 20px;
  color: #3b961a;
}

.unit-price {
  color: #666;
  font-size: 14px;
}

.info-section {
  margin-bottom: 15px;
  font-size: 14px;
  color: #666;
}

.info-section div {
    margin-bottom: 6px;
}

.info-section .neu-badge {
    background: #ff4444;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    margin-left: 4px;
}

.treuhand-info-box {
  background: #e3f2fd;
  border: 1px solid #90caf9;
  border-radius: 6px;
  padding: 8px 12px;
  margin-bottom: 15px;
  font-size: 12px;
  color: #1565c0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.treuhand-info-box .icon {
    font-size: 16px;
}

.badges-section {
  margin-bottom: 15px;
}

.badge {
  background: #007bff;
  color: white;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 12px;
  margin-right: 5px;
}

.order-button {
  width: 100%;
  background: #3b961a;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.order-button:hover {
    background: #2e7d12;
}

.page-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.filter-section {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-input-wrapper {
    position: relative;
    flex: 1;
    min-width: 100px;
}

.filter-label {
    position: absolute;
    top: -8px;
    left: 12px;
    background: white;
    color: #3b961a;
    font-size: 12px;
    font-weight: 500;
    padding: 0 4px;
}

.filter-input {
    border: 2px solid #3b961a;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    background: white;
    min-width: 120px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.filter-button {
    background: #3b961a;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-notice {
    background: #f1f8f3;
    border: 1px solid #cfe9d5;
    border-radius: 8px;
    padding: 12px 16px;
    margin: 16px 0;
    text-align: center;
    color: #2c7a1d;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.results-info {
    text-align: center;
    margin-bottom: 20px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.results-info-time {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.results-info-count {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.why-us-section {
    margin-top: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.why-us-title {
    color: #3b961a;
    margin-bottom: 10px;
}

.why-us-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}
