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

.cookie-banner {
  position: fixed;
  right: 0;
  bottom: 18px;
  left: 0;
  z-index: 1000;
  padding: 0 20px;
  pointer-events: none;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(29, 29, 31, 0.12);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.cookie-banner__copy {
  max-width: 720px;
}

.cookie-banner__copy strong {
  display: block;
  margin-bottom: 6px;
  color: var(--apple-black, #1d1d1f);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cookie-banner__copy p {
  margin: 0;
  color: var(--text-grey, #86868b);
  font-size: 14px;
  line-height: 1.5;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cookie-banner__button {
  min-height: 48px;
  cursor: pointer;
  border: 0;
}

@media (max-width: 768px) {
  .cookie-banner {
    bottom: 12px;
    padding: 0 14px 14px;
  }

  .cookie-banner__inner {
    align-items: stretch;
    flex-direction: column;
    padding: 16px;
    border-radius: 24px;
  }

  .cookie-banner__actions {
    width: 100%;
  }
}
