#lw-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1c1b1b;
  border-top: 1px solid #444748;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #e5e2e1;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  will-change: transform, opacity;
}

#lw-cookie-banner.lw-cb--visible {
  transform: translateY(0);
  opacity: 1;
}

.lw-cb__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.lw-cb__body {
  flex: 1;
  min-width: 260px;
}

.lw-cb__title {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.01em;
}

.lw-cb__desc {
  margin: 0;
  color: #c8c6c5;
  font-size: 13px;
  line-height: 1.55;
}

.lw-cb__link {
  color: #c8c6c5;
  text-underline-offset: 3px;
  text-decoration: underline;
  text-decoration-color: #8e9192;
}

.lw-cb__link:hover {
  color: #ffffff;
}

/* Override Tailwind preflight which strips the [hidden] attribute */
#lw-cookie-banner [hidden] {
  display: none !important;
}

.lw-cb__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.lw-cb__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 16px;
  border-radius: 2px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  border: 1px solid transparent;
}

.lw-cb__btn--primary {
  background: #ffffff;
  color: #1a1c1c;
  border-color: #ffffff;
}

.lw-cb__btn--primary:hover {
  background: #e5e2e1;
  border-color: #e5e2e1;
}

.lw-cb__btn--secondary {
  background: transparent;
  color: #e5e2e1;
  border-color: #444748;
}

.lw-cb__btn--secondary:hover {
  border-color: #8e9192;
  color: #ffffff;
}

@media (max-width: 640px) {
  .lw-cb__inner {
    padding: 16px 20px 20px;
    gap: 16px;
  }

  .lw-cb__actions {
    width: 100%;
    justify-content: flex-end;
  }
}
