.cookie-placeholder {
  padding: 32px;
  display: grid;
  place-content: center;
  gap: 10px;
  text-align: center;
  color: var(--grey);
  background: #f7f6f2;
}

.cookie-placeholder svg {
  width: 34px;
  height: 34px;
  margin: 0 auto 5px;
  fill: none;
  stroke: var(--gold-dark);
  stroke-width: 1.5;
}

.cookie-placeholder b {
  color: var(--ink);
  font-size: 18px;
}

.cookie-placeholder p {
  max-width: 390px;
  margin: 0 auto;
  line-height: 1.5;
}

.cookie-placeholder button {
  min-height: 44px;
  margin: 8px auto 0;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  background: var(--gold);
  font-weight: 700;
}

.reviews-widget .cookie-placeholder {
  min-height: 680px;
}

.store-route__map .cookie-placeholder {
  min-height: 460px;
}

.cookie-embed [data-cookie-frame] {
  display: none;
}

.cookie-embed.is-enabled [data-cookie-frame] {
  display: block;
}

.cookie-embed.is-enabled .cookie-placeholder {
  display: none;
}

.cookie-banner {
  position: fixed;
  z-index: 110;
  right: 24px;
  bottom: 24px;
  left: 24px;
  width: min(880px, calc(100% - 48px));
  margin: 0 auto;
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border: 1px solid #4c504b;
  border-radius: 15px;
  background: #20231f;
  color: #fff;
  box-shadow: 0 18px 55px rgba(0, 0, 0, .3);
}

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

.cookie-banner h2 {
  margin: 0 0 7px;
  font-size: 21px;
}

.cookie-banner p {
  margin: 0;
  color: #c8cbc4;
  font-size: 13px;
  line-height: 1.5;
}

.cookie-banner p a {
  color: #e6c66f;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: 9px;
}

.cookie-banner__actions button {
  min-height: 44px;
  padding: 0 15px;
  border-radius: 8px;
  font-weight: 700;
  white-space: nowrap;
}

.cookie-necessary {
  border: 1px solid #696d67;
  background: transparent;
  color: #fff;
}

.cookie-accept {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #241d0c;
}

@media (max-width: 700px) {
  .reviews-widget .cookie-placeholder {
    min-height: 620px;
  }

  .store-route__map .cookie-placeholder {
    min-height: 330px;
  }

  .cookie-placeholder {
    padding: 24px 20px;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: calc(100% - 24px);
    padding: 18px;
    display: block;
  }

  .cookie-banner h2 {
    font-size: 19px;
  }

  .cookie-banner__actions {
    margin-top: 16px;
    display: grid;
  }

  .cookie-banner__actions button {
    width: 100%;
  }
}
