/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-consent-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.cookie-consent-text h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--white);
}

.cookie-consent-text p {
  margin: 0;
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.5;
}

.cookie-consent-text a {
  color: #a8d4b4;
  text-decoration: underline;
}

.cookie-consent-text a:hover {
  color: var(--white);
}

.cookie-consent-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.cookie-consent-btn {
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.cookie-consent-btn--accept {
  background: var(--green);
  color: white;
}

.cookie-consent-btn--accept:hover {
  background: var(--green-light);
}

.cookie-consent-btn--necessary {
  background: transparent;
  color: #ccc;
  border: 1px solid #666;
}

.cookie-consent-btn--necessary:hover {
  border-color: #999;
  color: var(--white);
}

/* Placeholder for embedded content */
.cookie-placeholder {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  border: 2px dashed #ccc;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 200px;
}

.cookie-placeholder-icon {
  font-size: 3rem;
  opacity: 0.5;
}

.cookie-placeholder-text {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-placeholder-btn {
  display: inline-block;
  background: var(--green);
  color: white;
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease;
}

.cookie-placeholder-btn:hover {
  background: var(--green-light);
}

/* Responsive */
@media (max-width: 600px) {
  .cookie-consent {
    padding: 1rem;
  }

  .cookie-consent-container {
    flex-direction: column;
    text-align: center;
  }

  .cookie-consent-text {
    min-width: auto;
  }

  .cookie-consent-buttons {
    width: 100%;
    justify-content: center;
  }
}