.fr-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: 16px;
  background: rgba(15, 23, 42, 0.96);
  color: #f8fafc;
  box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.25);
  backdrop-filter: blur(8px);
}

.fr-cookie-banner[hidden] {
  display: none !important;
}

.fr-cookie-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.fr-cookie-inner p {
  margin: 0;
  flex: 1 1 280px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #e2e8f0;
}

.fr-cookie-inner a {
  color: #5eead4;
  text-decoration: underline;
}

.fr-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fr-cookie-btn {
  border: none;
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.fr-cookie-btn:hover {
  transform: translateY(-1px);
}

.fr-cookie-decline {
  background: transparent;
  color: #cbd5e1;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.fr-cookie-accept {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
  color: #fff;
  box-shadow: 0 4px 14px rgba(20, 184, 166, 0.35);
}

@media (max-width: 576px) {
  .fr-cookie-actions {
    width: 100%;
  }

  .fr-cookie-btn {
    flex: 1 1 auto;
  }
}
