/* Cookie consent — Reev dark studio bar */

.reev-cookie {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 10040;
  pointer-events: none;
}

.reev-cookie-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 18px 22px 18px 20px;
  background: rgba(18, 18, 18, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 2px solid var(--main-color);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
}

html[data-cookie-consent] .reev-cookie {
  display: none !important;
}

.reev-cookie-copy {
  min-width: 0;
  flex: 1;
}

.reev-cookie-label {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--main-color);
}

.reev-cookie-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  text-wrap: pretty;
}

.reev-cookie-text a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.35);
}

.reev-cookie-text a:hover,
.reev-cookie-text a:focus-visible {
  color: var(--main-color);
  text-decoration-color: var(--main-color);
}

.reev-cookie-actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 10px;
}

.reev-cookie-btn {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.reev-cookie-btn:focus-visible {
  outline: 2px solid var(--main-color);
  outline-offset: 3px;
}

.reev-cookie-btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff;
}

.reev-cookie-btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.reev-cookie-btn-solid {
  border: 1px solid var(--main-color);
  background: var(--main-color);
  color: #fff;
}

.reev-cookie-btn-solid:hover {
  background: #fff;
  border-color: #fff;
  color: #151515;
}

html:not([data-cookie-consent]) .progress-wrap {
  bottom: 118px;
}

.privacy-cookie-reset {
  display: inline-flex;
  align-items: center;
  margin: 8px 0 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: 15px;
  color: var(--main-color);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.privacy-cookie-reset:hover,
.privacy-cookie-reset:focus-visible {
  color: #fff;
}

@media (max-width: 767px) {
  .reev-cookie {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .reev-cookie-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px 16px 14px;
    border-radius: 14px;
  }

  .reev-cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .reev-cookie-btn {
    min-height: 44px;
    padding: 0 10px;
    font-size: 12px;
    white-space: normal;
    text-align: center;
  }

  html:not([data-cookie-consent]) .progress-wrap {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reev-cookie-btn {
    transition: none;
  }
}
