/* ═══ COOKIE CONSENT ═══ */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-dark-bg, #171717);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  z-index: 9999;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.cookie-consent.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-consent__content {
  max-width: var(--max-width, 960px);
  margin: 0 auto;
}

.cookie-consent__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: #fff;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-consent__text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 1rem 0;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-consent__link {
  color: var(--color-accent, #D20959);
  text-decoration: none;
  border-bottom: 1px solid var(--color-accent, #D20959);
  transition: opacity 0.2s ease;
}

.cookie-consent__link:hover {
  opacity: 0.8;
}

.cookie-consent__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-consent__actions .btn {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-consent__actions .btn-primary {
  background: var(--color-accent, #D20959);
  color: #fff;
}

.cookie-consent__actions .btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.cookie-consent__actions .btn:not(.btn-primary) {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-consent__actions .btn:not(.btn-primary):hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 640px) {
  .cookie-consent {
    padding: 1rem;
  }

  .cookie-consent__title {
    font-size: 0.95rem;
  }

  .cookie-consent__text {
    font-size: 0.8125rem;
  }

  .cookie-consent__actions {
    flex-direction: column;
  }

  .cookie-consent__actions .btn {
    width: 100%;
    padding: 0.75rem 1rem;
  }
}
