.rzs-cookie {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 999999;
  display: flex;
  align-items: center;
  gap: 18px;
  width: calc(100% - 32px);
  max-width: 680px;
  padding: 14px 16px 14px 18px;
  box-sizing: border-box;
  color: #ffffff;
  background: rgba(7, 25, 87, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(7, 25, 87, 0.24), 0 4px 14px rgba(0, 0, 0, 0.12);
  font-family: "TT Travels", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 16px);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

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

.rzs-cookie--visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.rzs-cookie__text {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  line-height: 1.45;
}

.rzs-cookie__text a {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.55);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}

.rzs-cookie__text a:hover {
  text-decoration-color: #ffffff;
}

.rzs-cookie__button {
  flex-shrink: 0;
  min-height: 40px;
  padding: 9px 18px;
  color: #071957;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 10px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.rzs-cookie__button:hover {
  color: #ffffff;
  background: transparent;
}

.rzs-cookie__button:active {
  transform: scale(0.97);
}

.rzs-cookie__button:focus-visible,
.rzs-cookie__text a:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

@media (max-width: 600px) {
  .rzs-cookie {
    bottom: 10px;
    align-items: stretch;
    gap: 12px;
    width: calc(100% - 20px);
    padding: 14px;
    border-radius: 12px;
  }

  .rzs-cookie__text {
    font-size: 12px;
  }

  .rzs-cookie__button {
    align-self: center;
    padding-right: 14px;
    padding-left: 14px;
  }
}

@media (max-width: 430px) {
  .rzs-cookie {
    flex-direction: column;
  }

  .rzs-cookie__button {
    width: 100%;
  }
}
