/**
 * Luxe Intimates — cookie/consent notice + footer trust row.
 * (Potentially explicit imagery is blurred with tap-to-reveal — see
 * luxe-sensitive.css / luxe-shop.js.)
 */

/* Cookie / privacy consent banner */
.luxe-consent-bar {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%) translateY(140%);
  z-index: 99990;
  width: min(100% - 2rem, 46rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(31, 26, 46, 0.97);
  border: 1px solid rgba(212, 175, 119, 0.35);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.luxe-consent-bar.is-visible {
  transform: translateX(-50%) translateY(0);
}

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

.luxe-consent-bar__text {
  flex: 1 1 18rem;
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(248, 231, 255, 0.82);
}

.luxe-consent-bar__text a {
  color: rgba(212, 175, 119, 0.95);
}

.luxe-consent-bar__actions {
  display: flex;
  gap: 0.6rem;
  flex: 0 0 auto;
}

.luxe-consent-bar__btn {
  padding: 0.6rem 1.1rem;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid rgba(212, 175, 119, 0.45);
  background: transparent;
  color: var(--luxe-accent, #d4af77);
  transition: transform 0.18s ease, background 0.22s ease;
}

.luxe-consent-bar__btn--accept {
  color: #1f1a2e;
  background: linear-gradient(135deg, #f5e6c8, #d4af77);
  border-color: rgba(212, 175, 119, 0.7);
}

.luxe-consent-bar__btn:hover {
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .luxe-consent-bar {
    animation: none !important;
    transition: none !important;
  }
}

/* ─────────────────────────────────────────────────────────────
   Footer trust + social row
   ───────────────────────────────────────────────────────────── */
.luxe-trust-footer {
  max-width: 64rem;
  margin: 2rem auto 0.5rem;
  padding: 1.5rem 1.25rem 0.5rem;
  border-top: 1px solid rgba(212, 175, 119, 0.2);
  text-align: center;
}

.luxe-trust-footer__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem 1.5rem;
}

.luxe-trust-footer__row--social {
  margin-top: 1.1rem;
  gap: 0.5rem 1rem;
}

.luxe-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: rgba(248, 231, 255, 0.7);
}

.luxe-trust-badge svg {
  flex: 0 0 auto;
}

.luxe-trust-footer__follow {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(212, 175, 119, 0.85);
}

.luxe-social-links {
  display: inline-flex;
  gap: 0.55rem;
}

.luxe-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 119, 0.35);
  background: rgba(42, 37, 64, 0.6);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.luxe-social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 119, 0.7);
  background: rgba(212, 175, 119, 0.15);
}

@media (prefers-reduced-motion: reduce) {
  .luxe-social-link {
    transition: none;
  }
  .luxe-social-link:hover {
    transform: none;
  }
}
