.sw-cookie-notice {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  width: min(360px, calc(100vw - 40px));
  padding: 20px 22px;
  background: rgba(11, 11, 12, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #26262c;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  font-family: 'Barlow', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: #b4b4bb;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.sw-cookie-notice.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sw-cookie-notice__title {
  margin: 0 0 8px;
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #f6f6f7;
}

.sw-cookie-notice__text {
  margin: 0 0 16px;
}

.sw-cookie-notice__text a {
  color: #f26722;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sw-cookie-notice__text a:hover {
  color: #ff7a33;
}

.sw-cookie-notice__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 22px;
  border: 0;
  border-radius: 4px;
  background: #f26722;
  color: #0b0b0c;
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

.sw-cookie-notice__btn:hover {
  background: #ff7a33;
  transform: translateY(-1px);
}

.sw-cookie-notice__btn:focus-visible {
  outline: 2px solid #f26722;
  outline-offset: 2px;
}

@media (max-width: 480px) {
  .sw-cookie-notice {
    bottom: 16px;
    left: 16px;
    width: calc(100vw - 32px);
    padding: 18px;
  }

  .sw-cookie-notice__btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sw-cookie-notice {
    transition: none;
    transform: none;
  }

  .sw-cookie-notice__btn {
    transition: none;
  }

  .sw-cookie-notice__btn:hover {
    transform: none;
  }
}
