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

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

.cookie-consent-inner {
  pointer-events: auto;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--border, #e8e0e4);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(74, 18, 40, 0.12);
}

.cookie-consent-text {
  flex: 1 1 240px;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted, #5c4a52);
}

.cookie-consent-text a {
  color: var(--primary, #6b1d3a);
  font-weight: 600;
}

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

.cookie-consent-actions .btn {
  white-space: nowrap;
}

@media (max-width: 520px) {
  .cookie-consent {
    padding: 12px;
  }
  .cookie-consent-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-consent-actions {
    flex-direction: column;
  }
  .cookie-consent-actions .btn {
    width: 100%;
  }
}
