.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10050;
  padding: 16px;
  pointer-events: none;
}

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

.cookie-consent-inner {
  pointer-events: auto;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  border-radius: 14px;
  background: #111827;
  color: #F9FAFB;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-consent-text {
  flex: 1;
  min-width: 0;
}

.cookie-consent-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.cookie-consent-text p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #D1D5DB;
}

.cookie-consent-text a {
  color: #C9A84C;
  text-decoration: underline;
}

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

.cookie-consent-form {
  margin: 0;
}

.cookie-consent-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.cookie-consent-btn--primary {
  background: #C9A84C;
  color: #111827;
}

.cookie-consent-btn--primary:hover {
  background: #D4B65E;
}

.cookie-consent-btn--outline {
  background: transparent;
  color: #F9FAFB;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.cookie-consent-btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 767px) {
  .cookie-consent {
    padding: 12px;
  }

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

  .cookie-consent-actions {
    width: 100%;
    flex-direction: column-reverse;
  }

  .cookie-consent-form,
  .cookie-consent-btn {
    width: 100%;
  }
}
