.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: rgba(20, 20, 20, 0.96);
  color: #ffffff;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.28);
  transform: translateY(120%);
  transition: transform 0.25s ease;
}

.cookie-consent-banner.is-visible {
  transform: translateY(0);
}

.cookie-consent-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.cookie-consent-text {
  flex: 1 1 420px;
  font-size: 14px;
  line-height: 1.4;
}

.cookie-consent-text a {
  color: #7fe7dd;
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cookie-btn {
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 8px 12px;
}

.cookie-btn-primary {
  background: #00a99d;
  color: #fff;
}

.cookie-btn-secondary {
  background: transparent;
  border-color: #cfcfcf;
  color: #fff;
}

.cookie-btn-link {
  background: transparent;
  color: #7fe7dd;
  text-decoration: underline;
}

.cookie-prefs-panel {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
  display: none;
}

.cookie-prefs-panel.is-open {
  display: block;
}

.cookie-prefs-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.cookie-prefs-note {
  font-size: 12px;
  opacity: 0.88;
}

.cookie-manage-btn {
  background: none;
  border: 0;
  color: #c6c6c6;
  cursor: pointer;
  font-size: 12px;
  margin-top: 8px;
  padding: 0;
  text-decoration: underline;
}
