.fs-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1000;
  display: none;
  max-width: 720px;
  margin: 0 auto;
  padding: 14px;
  border: 1px solid #D7E4FF;
  border-radius: 12px;
  background: #FFFFFF;
  box-shadow: 0 18px 55px rgba(14, 20, 21, 0.16);
  color: #0E1415;
  font-family: 'Wix Madefor Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  gap: 14px;
  align-items: center;
}

.fs-consent.is-visible {
  display: flex;
}

.fs-consent p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
}

.fs-consent a {
  color: #116DFF;
  font-weight: 700;
}

.fs-consent-actions {
  display: flex;
  gap: 8px;
  margin-left: auto;
  flex: 0 0 auto;
}

.fs-consent button {
  min-height: 40px;
  border-radius: 8px;
  border: 1px solid #D1D5DB;
  padding: 0 14px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  background: #FFFFFF;
  color: #0E1415;
}

.fs-consent .fs-consent-accept {
  border-color: #116DFF;
  background: #116DFF;
  color: #FFFFFF;
}

@media (max-width: 640px) {
  .fs-consent {
    align-items: stretch;
    flex-direction: column;
  }

  .fs-consent-actions {
    margin-left: 0;
  }

  .fs-consent button {
    flex: 1;
  }
}
