.cookie-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 40px;
  color: #fff;
  background: var(--dark);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
  flex-wrap: wrap;
}

.cookie-banner p {
  flex: 1;
  min-width: 280px;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  line-height: 1.6;
}

.cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner button {
  min-height: 42px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.cookie-accept {
  border: 1px solid var(--primary);
  color: #fff;
  background: var(--primary);
}

.cookie-reject {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  background: transparent;
}

@media (max-width: 640px) {
  .cookie-banner {
    padding: 18px;
  }

  .cookie-banner-actions,
  .cookie-banner button {
    width: 100%;
  }
}
