.cookie-consent {
  position: fixed;
  z-index: 120;
  left: 50%;
  bottom: max(22px, env(safe-area-inset-bottom));
  width: fit-content;
  max-width: calc(100vw - 44px);
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 16px 18px 16px 20px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 20px;
  color: rgba(255, 255, 255, .9);
  background: rgba(10, 8, 8, .88);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .42);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.35;
  transform: translateX(-50%);
}

.cookie-consent[hidden] { display: none; }
.cookie-consent__text { margin: 0; }
.cookie-consent__text > span + span { display: block; margin-top: 3px; }
.cookie-consent__text a { color: #fff; text-decoration: underline; text-decoration-color: rgba(214, 76, 49, .8); text-underline-offset: 3px; }
.cookie-consent__text a:hover { color: #d64c31; }
.cookie-consent__text a:focus-visible,
.cookie-consent__accept:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

.cookie-consent__accept {
  min-width: 112px;
  min-height: 44px;
  flex: 0 0 auto;
  padding: 0 18px;
  border: 1px solid #d64c31;
  border-radius: 999px;
  color: #fff;
  background: #9f281a;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.cookie-consent__accept:hover { border-color: #e35b40; background: #d64c31; transform: translateY(-1px); }
body.menu-open .cookie-consent { display: none; }

@media (max-width: 620px) {
  .cookie-consent {
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    width: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 17px;
    border-radius: 18px;
    font-size: 14px;
    transform: none;
  }

  .cookie-consent__accept { width: 100%; min-height: 48px; }
}
