.cookie-consent {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: none;
  max-width: 420px;
  width: calc(100% - 40px);
  padding: 24px;
  color: #333;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .18);
  font-family: 'Open Sans', Arial, sans-serif;
}

.cookie-consent.is-visible {
  display: block;
}

.cookie-consent__title {
  margin: 0 0 10px;
  color: #F47321;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.cookie-consent__text {
  margin: 0 0 18px;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-consent__options {
  display: none;
  margin: 0 0 18px;
  padding: 14px;
  background: #f7f7f7;
  border-radius: 12px;
}

.cookie-consent.is-customizing .cookie-consent__options {
  display: block;
}

.cookie-consent__option {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0 0 12px;
  color: #444;
  font-size: 14px;
  line-height: 1.4;
}

.cookie-consent__option:last-child {
  margin-bottom: 0;
}

.cookie-consent__option input {
  margin-top: 3px;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-consent__button {
  flex: 1 1 auto;
  min-width: 120px;
  padding: 10px 14px;
  border: 1px solid #F47321;
  border-radius: 999px;
  cursor: pointer;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all .2s ease;
}

.cookie-consent__button--primary {
  color: #fff;
  background: #F47321;
}

.cookie-consent__button--secondary {
  color: #F47321;
  background: #fff;
}

.cookie-consent__button--save {
  display: none;
}

.cookie-consent.is-customizing .cookie-consent__button--save {
  display: inline-block;
}

.cookie-consent__footer-link {
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
}

.cookie-consent__button:hover,
.cookie-consent__button:focus {
  opacity: .85;
  outline: none;
}

@media (max-width: 575px) {
  .cookie-consent {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 18px;
  }

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