/* ============================================
   LOVAA — Gaya halaman polisi (Privacy/Terms/Refund/Shipping)
   ============================================ */
:root {
  --primary: #A9744F;
  --primary-dark: #5B4636;
  --accent: #8C6239;
  --text-dark: #3D2E22;
  --text-body: #5C4A3A;
  --text-muted: #9A8A78;
  --bg-cream: #F7F1E8;
  --bg-soft: #F0E6D8;
  --border: #E4D8C8;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-cream);
  color: var(--text-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Header */
.policy-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
  position: sticky; top: 0; z-index: 10;
}
.policy-header-inner {
  max-width: 820px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.policy-logo {
  font-weight: 800; font-size: 1.5rem; letter-spacing: 0.06em;
  background: linear-gradient(120deg, #C9A24B, #8C6239);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.policy-back {
  font-size: 0.85rem; font-weight: 600; color: var(--text-body);
  display: inline-flex; align-items: center; gap: 5px;
}

/* Kandungan */
.policy-wrap { max-width: 820px; margin: 0 auto; padding: 34px 20px 60px; }
.policy-card {
  background: #fff; border-radius: 22px; border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(91,70,54,0.07);
  padding: 40px 34px;
}
.policy-eyebrow {
  display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
  background: var(--bg-soft); padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
}
.policy-title { font-size: 2rem; font-weight: 800; color: var(--text-dark); line-height: 1.2; margin-bottom: 8px; }
.policy-updated { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 28px; }

.policy-card h2 {
  font-size: 1.16rem; font-weight: 700; color: var(--text-dark);
  margin: 30px 0 10px; padding-top: 6px;
}
.policy-card h2:first-of-type { margin-top: 8px; }
.policy-card p { margin-bottom: 12px; }
.policy-card ul { margin: 6px 0 14px 22px; }
.policy-card li { margin-bottom: 7px; }
.policy-card strong { color: var(--text-dark); }

.policy-note {
  background: var(--bg-cream); border: 1px solid var(--border);
  border-radius: 14px; padding: 16px 18px; margin: 18px 0;
  font-size: 0.92rem;
}
.policy-note strong { color: var(--accent); }

.policy-contact {
  margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--border);
  font-size: 0.92rem;
}

/* Butang balik */
.policy-home-btn {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 26px;
  background: var(--accent); color: #fff; font-weight: 600; font-size: 0.9rem;
  padding: 12px 24px; border-radius: 999px;
}
.policy-home-btn:hover { background: var(--primary-dark); text-decoration: none; }

/* Baris polisi lain */
.policy-more {
  max-width: 820px; margin: 0 auto; padding: 0 20px 40px;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  font-size: 0.85rem;
}
.policy-more a {
  color: var(--text-body); background: #fff; border: 1px solid var(--border);
  padding: 8px 15px; border-radius: 999px; font-weight: 500;
}
.policy-more a:hover { background: var(--bg-soft); text-decoration: none; }

.policy-foot { text-align: center; font-size: 0.78rem; color: var(--text-muted); padding: 10px 20px 40px; }

@media (max-width: 560px) {
  .policy-card { padding: 28px 20px; }
  .policy-title { font-size: 1.6rem; }
}
