/* ============================================================
   VitaPlush — Privacy Policy page styles
   css/privacy-policy.css
   ============================================================ */

/* ── Base ── */
body {
  background: #0f1117;
  color: #e2e8f0;
}

/* ── Sticky navbar bar ── */
.pp-back-bar {
  padding: 0.75rem 0;
  background: rgba(15, 17, 23, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 90px;
}

.pp-back-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.pp-nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.pp-nav-logo-img {
  height: 90px;
  width: auto;
  display: block;
  transform: scale(1.3); /* Visually zoom by 30% without altering layout height */
}

.pp-back-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: #94a3b8;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
  white-space: nowrap;
}

.pp-back-link:hover {
  color: #e91e8c;
}

/* ── Page header ── */
.pp-header {
  background: linear-gradient(135deg, #0f1117 0%, #1a1f2e 100%);
  padding: 1rem 0 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.pp-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.pp-label-line {
  display: block;
  width: 2.5rem;
  height: 2px;
  background: linear-gradient(90deg, #e91e8c, #9333ea);
  border-radius: 2px;
}

.pp-label-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #e91e8c;
  text-transform: uppercase;
}

.pp-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.pp-title em {
  font-style: italic;
  background: linear-gradient(135deg, #e91e8c, #9333ea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pp-updated {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #94a3b8;
}

/* ── Main content area ── */
.pp-body {
  padding: 3.5rem 0 5rem;
}

/* ── Content cards ── */
.pp-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
}

.pp-card h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pp-card h2 i {
  color: #e91e8c;
  font-size: 1rem;
}

.pp-card p,
.pp-card li {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 0.75rem;
}

.pp-card ul {
  padding-left: 1.25rem;
}

.pp-card li {
  margin-bottom: 0.4rem;
}

/* ── Consent notice box ── */
.pp-consent-box {
  background: linear-gradient(135deg, rgba(233, 30, 140, 0.08), rgba(147, 51, 234, 0.08));
  border: 1px solid rgba(233, 30, 140, 0.3);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.pp-consent-box .consent-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pp-consent-box .consent-title i {
  color: #e91e8c;
}

.pp-consent-box p,
.pp-consent-box li {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 0.75rem;
}

.pp-consent-box ul {
  padding-left: 1.25rem;
}

.pp-consent-box li {
  margin-bottom: 0.4rem;
}

/* ── Example consent checkbox (display-only) ── */
.checkbox-example {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin-top: 1.25rem;
}

.checkbox-example input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #e91e8c;
  cursor: not-allowed;
}

.checkbox-example label {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #e2e8f0;
  font-style: italic;
}

/* ── Section divider ── */
.pp-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 1.5rem 0;
}

/* ── Contact highlight box ── */
.pp-contact-highlight {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
}

.pp-contact-highlight a {
  color: #34d399;
  text-decoration: none;
  font-weight: 600;
}

.pp-contact-highlight a:hover {
  text-decoration: underline;
}

.pp-contact-highlight p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #94a3b8;
  margin: 0;
  line-height: 1.6;
}

/* ── Compliance framework badges ── */
.badge-frameworks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.badge-framework {
  background: rgba(233, 30, 140, 0.12);
  border: 1px solid rgba(233, 30, 140, 0.25);
  color: #e91e8c;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.65rem;
  border-radius: 2rem;
}
