/* Shared styles for the Срцко legal pages (privacy / cookies / terms).
   Brand tokens mirror index.html so the legal pages match the marketing site. */
:root {
  --night-1: #160d2e;
  --night-2: #2c1551;
  --night-3: #5a2f8f;
  --dawn: #ffcf94;
  --cream: #fff6e9;
  --ink: #241634;
  --amber: #ff9e44;
  --amber-deep: #f3791f;
  --mint: #4fe0c4;
  --mint-deep: #15b497;
  --muted: rgba(255, 255, 255, 0.72);
  --glass-line: rgba(255, 255, 255, 0.16);
  --font-d: 'Unbounded', system-ui, sans-serif;
  --font-b: 'Nunito', system-ui, sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-b);
  color: #fff;
  line-height: 1.65;
  background-color: var(--night-1);
  background-image:
    radial-gradient(120% 90% at 80% -10%, rgba(255, 158, 68, 0.24), transparent 45%),
    radial-gradient(120% 90% at 10% 0%, rgba(79, 224, 196, 0.14), transparent 42%),
    linear-gradient(170deg, var(--night-1) 0%, var(--night-2) 55%, var(--night-3) 100%);
  background-attachment: fixed;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
}
.legal-top {
  max-width: 760px;
  margin: 0 auto;
  padding: 26px 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.legal-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}
.legal-brand .dot {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--amber), var(--mint));
}
.legal-home {
  color: var(--dawn);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}
.legal-home:hover {
  text-decoration: underline;
}
.legal-wrap {
  max-width: 760px;
  margin: 22px auto 0;
  padding: 0 22px 60px;
}
.legal-card {
  background: var(--cream);
  color: var(--ink);
  border-radius: 24px;
  padding: clamp(24px, 5vw, 44px);
  box-shadow: 0 24px 50px -18px rgba(0, 0, 0, 0.55);
}
.legal-card h1 {
  font-family: var(--font-d);
  font-size: clamp(24px, 5vw, 34px);
  line-height: 1.2;
  margin-bottom: 6px;
}
.legal-updated {
  color: #6a5a72;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 22px;
}
.legal-card h2 {
  font-family: var(--font-d);
  font-size: clamp(17px, 3vw, 20px);
  margin: 26px 0 8px;
  color: #3a2154;
}
.legal-card p,
.legal-card li {
  font-size: 15px;
  color: #352741;
}
.legal-card p {
  margin: 8px 0;
}
.legal-card ul,
.legal-card ol {
  margin: 8px 0 8px 20px;
}
.legal-card li {
  margin: 5px 0;
}
.legal-card a {
  color: #b25a12;
  text-decoration: underline;
  font-weight: 700;
}
.legal-card strong {
  color: var(--ink);
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  font-size: 14px;
}
.legal-table th,
.legal-table td {
  border: 1px solid #e6d8c4;
  padding: 9px 11px;
  text-align: left;
  vertical-align: top;
  color: #352741;
}
.legal-table th {
  background: #f6ead7;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 13px;
}
.legal-note {
  margin-top: 24px;
  font-size: 12.5px;
  color: #8a7c6a;
  border-top: 1px solid #e6d8c4;
  padding-top: 14px;
}
.legal-foot {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 22px 50px;
  text-align: center;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
}
.legal-foot a {
  color: var(--dawn);
  text-decoration: none;
  font-weight: 700;
}
.legal-foot a:hover {
  text-decoration: underline;
}
