.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 20px 20px;
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid rgba(16, 24, 40, 0.12);
  box-shadow: 0 -8px 32px rgba(16, 24, 40, 0.08);
  backdrop-filter: blur(10px);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #101828;
  line-height: 1.55;
}
.cookie-consent[hidden] {
  display: none !important;
}
.cookie-consent-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 700px) {
  .cookie-consent-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
}
.cookie-consent-text {
  flex: 1;
  min-width: 0;
}
.cookie-consent-title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}
.cookie-consent-desc {
  margin: 6px 0 0;
  font-size: 14px;
  color: #475467;
}
.cookie-consent-desc a {
  color: #6b4bff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-consent-desc a:hover {
  color: #5a3cff;
}
.cookie-consent-actions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-consent-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: transform 0.15s ease, background 0.15s ease;
}
.cookie-consent-btn:focus-visible {
  outline: 2px solid #6b4bff;
  outline-offset: 2px;
}
.cookie-consent-accept {
  background: #6b4bff;
  color: #fff;
  box-shadow: 0 10px 28px rgba(107, 75, 255, 0.25);
}
.cookie-consent-accept:hover {
  background: #5a3cff;
  transform: translateY(-1px);
}
.cookie-consent-reject {
  background: rgba(255, 255, 255, 0.75);
  color: #101828;
  box-shadow: inset 0 0 0 1px rgba(16, 24, 40, 0.14);
}
.cookie-consent-reject:hover {
  background: #f8fafc;
}
