/* Cookie Notice Banner Styles */
.cookie-notice {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 420px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  animation: slideInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-notice-content {
  padding: 24px;
}

.cookie-notice-text {
  font-size: 14px;
  line-height: 1.6;
  color: #2c3e50;
  margin: 0 0 16px 0;
}

.cookie-notice-link {
  color: var(--brand, #0066cc);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.cookie-notice-link:hover {
  color: #004fa3;
  text-decoration: underline;
}

.cookie-notice-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.cookie-btn-primary {
  background: var(--brand, #0066cc);
  color: #fff;
}

.cookie-btn-primary:hover {
  background: #004fa3;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

@keyframes slideInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cookie-notice {
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    border-radius: 12px 12px 0 0;
  }

  .cookie-notice-content {
    padding: 20px;
  }

  .cookie-notice-text {
    font-size: 13px;
  }

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