.cookie-banner {
  color: #fff;
  z-index: 9999;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-top: 3px solid #fff3;
  padding: 1.5rem;
  transition: transform .3s ease-in-out;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(100%);
  box-shadow: 0 -4px 20px #00000026;
}

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

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

.cookie-banner-text {
  flex: 1;
}

.cookie-banner-title {
  align-items: center;
  gap: .5rem;
  margin-bottom: .75rem;
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
}

.cookie-banner-title i {
  font-size: 1.5rem;
}

.cookie-banner-description {
  opacity: .95;
  margin-bottom: .5rem;
  font-size: .95rem;
  line-height: 1.6;
}

.cookie-banner-learn-more {
  font-size: .875rem;
}

.cookie-banner-link {
  color: #fff;
  font-weight: 500;
  text-decoration: underline;
  transition: opacity .2s;
}

.cookie-banner-link:hover {
  color: #fff;
  opacity: .8;
}

.cookie-banner-actions {
  flex-shrink: 0;
  gap: .75rem;
  display: flex;
}

.cookie-banner-actions .btn {
  border-radius: 6px;
  padding: .5rem 1.5rem;
  font-weight: 500;
  transition: all .2s;
}

.cookie-banner-actions .btn-primary {
  color: #667eea;
  background: #fff;
  border: none;
}

.cookie-banner-actions .btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px #00000026;
}

.cookie-banner-actions .btn-outline-secondary {
  color: #fff;
  background: none;
  border: 2px solid #ffffff80;
}

.cookie-banner-actions .btn-outline-secondary:hover {
  color: #fff;
  background: #ffffff1a;
  border-color: #fff;
}

.cookie-decline-notice {
  z-index: 10000;
  opacity: 0;
  align-items: center;
  gap: .75rem;
  max-width: 400px;
  transition: all .3s ease-in-out;
  display: flex;
  position: fixed;
  top: 20px;
  right: 20px;
  transform: translateX(100%);
  box-shadow: 0 4px 12px #00000026;
}

.cookie-decline-notice.show {
  opacity: 1;
  transform: translateX(0);
}

.cookie-decline-notice i {
  flex-shrink: 0;
  font-size: 1.25rem;
}

@media (width <= 768px) {
  .cookie-banner {
    padding: 1.25rem;
  }

  .cookie-banner-content {
    text-align: center;
    flex-direction: column;
    gap: 1.25rem;
  }

  .cookie-banner-actions {
    flex-direction: column;
    width: 100%;
  }

  .cookie-banner-actions .btn {
    width: 100%;
  }

  .cookie-banner-title {
    justify-content: center;
    font-size: 1.1rem;
  }

  .cookie-banner-description {
    font-size: .875rem;
  }

  .cookie-decline-notice {
    max-width: none;
    left: 20px;
    right: 20px;
  }
}

@media (width <= 480px) {
  .cookie-banner {
    padding: 1rem;
  }

  .cookie-banner-title {
    font-size: 1rem;
  }

  .cookie-banner-description {
    font-size: .8125rem;
  }

  .cookie-banner-learn-more {
    font-size: .75rem;
  }
}

@media (prefers-color-scheme: dark) {
  .cookie-banner {
    background: linear-gradient(135deg, #4c1d95 0%, #5b21b6 100%);
  }
}

@media (prefers-contrast: high) {
  .cookie-banner {
    background: #000;
    border-top: 3px solid #fff;
  }

  .cookie-banner-actions .btn-primary {
    color: #000;
    background: #fff;
    border: 2px solid #fff;
  }

  .cookie-banner-actions .btn-outline-secondary {
    border-color: #fff;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner, .cookie-decline-notice, .cookie-banner-actions .btn {
    transition: none;
  }
}
