.cookie-consent {
  position: fixed;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  z-index: 95;
  width: min(100% - 32px, 560px);
  padding: 18px;
  border: 1px solid rgba(183, 143, 55, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  box-shadow: 0 24px 70px rgba(26, 26, 26, 0.14);
  backdrop-filter: blur(18px);
}

.cookie-consent[hidden] {
  display: none !important;
}

.cookie-consent__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.cookie-consent__title {
  margin: 0 0 6px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.22;
  font-weight: 700;
}

.cookie-consent__text {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.55;
}

.cookie-consent__text a {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(183, 143, 55, 0.45);
  text-underline-offset: 3px;
}

.cookie-consent__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-consent__accept {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.cookie-consent__accept:hover {
  transform: translateY(-2px);
  background: #000;
}

@media (max-width: 640px) {
  .cookie-consent {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 16px;
    border-radius: 20px;
  }

  .cookie-consent__inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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