.lh-consent-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.lh-consent-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lh-consent-banner.is-hidden {
  display: none;
}

.lh-consent-card {
  max-width: 360px;
  width: 100%;
  background: #fffaf0;
  border-radius: 14px;
  padding: 16px 18px 14px;
  border: 1px solid rgba(193, 154, 107, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lh-consent-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.lh-consent-cookie {
  width: 28px;
  height: 28px;
  background: #ffe6b3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b5a2b;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.lh-consent-label {
  background: #f4e7d3;
  color: #8b6a3c;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid rgba(193, 154, 107, 0.45);
}

.lh-consent-title {
  font-size: 0.9rem;
  color: #3a3327;
  margin: 0;
  line-height: 1.5;
}

.lh-consent-more {
  font-size: 0.8rem;
  color: #c19a6b;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lh-consent-more:hover {
  color: #a67c52;
}

.lh-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
  justify-content: flex-end;
}

.lh-consent-btn {
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.78rem;
  padding: 8px 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.2s ease;
  white-space: nowrap;
}

.lh-consent-btn-ghost {
  background: transparent;
  color: #2f3b4a;
  border: 1px solid rgba(47, 59, 74, 0.25);
}

.lh-consent-btn-ghost:hover {
  background: rgba(47, 59, 74, 0.05);
}

.lh-consent-btn-primary {
  background: #c19a6b;
  color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.lh-consent-btn-primary:hover {
  background: #a67c52;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.lh-consent-btn-outline {
  background: #ffffff;
  border: 1px solid #d0d4da;
  color: #555;
}

.lh-consent-btn-outline:hover {
  background: #f3f4f6;
}

@media (max-width: 600px) {
  .lh-consent-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .lh-consent-card {
    max-width: 100%;
  }

  .lh-consent-actions {
    justify-content: flex-start;
  }

  .lh-consent-btn {
    flex: 1 1 auto;
    text-align: center;
  }
}
