/* Consent Banner Styles */
.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #fff;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  font-family: 'Manrope', sans-serif;
  animation: slideUp 0.3s ease-in-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.consent-banner.hidden {
  display: none;
}

.consent-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.consent-content {
  flex: 1;
  min-width: 250px;
}

.consent-content h3 {
  margin: 0 0 10px 0;
  font-size: 14px;
  font-weight: 600;
}

.consent-content p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: #ccc;
}

.consent-content a {
  color: #7a9fd8;
  text-decoration: none;
  border-bottom: 1px solid #7a9fd8;
}

.consent-content a:hover {
  color: #a3c5ff;
}

.consent-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  min-width: 200px;
}

.consent-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Manrope', sans-serif;
  white-space: nowrap;
}

.consent-btn-accept {
  background: #7a5124;
  color: #fff;
}

.consent-btn-accept:hover {
  background: #8f6837;
}

.consent-btn-decline {
  background: transparent;
  color: #fff;
  border: 1px solid #666;
}

.consent-btn-decline:hover {
  border-color: #999;
  color: #ddd;
}

/* Map Placeholder */
.map-placeholder {
  background: linear-gradient(135deg, #f5f5f5 0%, #e9e9e9 100%);
  border-radius: 8px;
  padding: 60px 20px;
  text-align: center;
  color: #666;
  margin: 20px 0;
}

.map-placeholder h3 {
  margin: 0 0 10px 0;
  color: #333;
  font-size: 16px;
}

.map-placeholder p {
  margin: 0 0 15px 0;
  font-size: 13px;
  color: #888;
}

.map-placeholder-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #7a5124;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease;
}

.map-placeholder-btn:hover {
  background: #8f6837;
}

/* Responsive */
@media (max-width: 768px) {
  .consent-banner {
    padding: 15px;
  }

  .consent-container {
    flex-direction: column;
    align-items: stretch;
  }

  .consent-buttons {
    width: 100%;
  }

  .consent-btn {
    flex: 1;
  }
}
