.flyt-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #1A1A1A;
  border-top: 1px solid rgba(182, 161, 95, 0.4);
  color: #e8d6b2;
  padding: 16px 18px calc(16px + env(safe-area-inset-bottom));
  font-family: inherit;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
}
.flyt-cookie-banner.is-visible {
  transform: translateY(0);
}
.flyt-cookie-banner__text {
  margin: 0;
}
.flyt-cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.flyt-cookie-banner__btn {
  flex: 1 1 auto;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid #B6A15F;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.flyt-cookie-banner__btn--accept {
  background: #B6A15F;
  color: #1A1A1A;
}
.flyt-cookie-banner__btn--accept:hover,
.flyt-cookie-banner__btn--accept:focus {
  background: #c8b475;
}
.flyt-cookie-banner__btn--deny {
  background: transparent;
  color: #B6A15F;
}
.flyt-cookie-banner__btn--deny:hover,
.flyt-cookie-banner__btn--deny:focus {
  background: rgba(182, 161, 95, 0.12);
}
@media (min-width: 600px) {
  .flyt-cookie-banner {
    flex-direction: row;
    align-items: center;
    padding: 14px 24px calc(14px + env(safe-area-inset-bottom));
  }
  .flyt-cookie-banner__text {
    flex: 1 1 auto;
  }
  .flyt-cookie-banner__actions {
    flex: 0 0 auto;
  }
  .flyt-cookie-banner__btn {
    flex: 0 0 auto;
    min-width: 160px;
  }
}
