/* ============================================================
   RESALE Cookie Consent Banner — DSGVO + Google Consent Mode v2
   ============================================================ */

.resale-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #1a1f36;
  color: #e0e5f0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.resale-consent-banner.visible {
  transform: translateY(0);
}

.resale-consent-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.resale-consent-text {
  flex: 1 1 500px;
  min-width: 280px;
}

.resale-consent-text p {
  margin: 0 0 4px 0;
  color: #c8cee0;
}

.resale-consent-text a {
  color: #5faeff;
  text-decoration: underline;
}

.resale-consent-text a:hover {
  color: #8ec7ff;
}

.resale-consent-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.resale-consent-btn {
  padding: 10px 22px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s, transform 0.15s;
}

.resale-consent-btn:hover {
  transform: translateY(-1px);
}

.resale-consent-btn:active {
  transform: translateY(0);
}

.resale-consent-accept {
  background: #28a745;
  color: #fff;
}

.resale-consent-accept:hover {
  background: #218838;
}

.resale-consent-reject {
  background: transparent;
  color: #c8cee0;
  border: 1px solid #4a5068;
}

.resale-consent-reject:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #6b7394;
}

/* Mobile responsive */
@media (max-width: 640px) {
  .resale-consent-inner {
    flex-direction: column;
    padding: 16px;
    gap: 12px;
  }

  .resale-consent-buttons {
    width: 100%;
  }

  .resale-consent-btn {
    flex: 1;
    text-align: center;
  }
}
