/* Cookie / analytics consent banner */
.cookie-notice {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  transform: translateY(calc(100% + 20px));
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-notice.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 640px) {
  .cookie-notice {
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 16px;
  }

  .cookie-notice.show {
    transform: translateY(0);
  }
}

.cookie-notice-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-notice-text {
  flex: 1;
  min-width: 250px;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}

.cookie-notice-text a {
  color: #0d6efd;
  text-decoration: none;
}

.cookie-notice-text a:hover {
  text-decoration: underline;
}

.cookie-notice-button {
  padding: 10px 20px;
  background: #0d6efd;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}

.cookie-notice-button:hover {
  background: #0b5ed7;
  transform: translateY(-1px);
}

.cookie-notice-button:active {
  transform: translateY(0);
}

@media (max-width: 640px) {
  .cookie-notice-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-notice-button {
    width: 100%;
  }
}
