/* Shared styles for legal/policy pages
   (/vratenie-tovaru/, /obchodne-podmienky/, /ochrana-osobnych-udajov/)
   — single stylesheet so a brand tweak propagates to all of them. */
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 25% 20%, rgba(124,58,237,0.18), transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(76,29,149,0.18), transparent 60%),
    #0a0510;
  color: #f4f1ee;
  font-family: 'Manrope', system-ui, sans-serif;
  line-height: 1.6;
}
.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}
.brand {
  display: inline-block;
  text-decoration: none;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, #f4cc6c, #b9842c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 800;
  font-size: clamp(1.75rem, 4.5vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 0.4rem;
  background: linear-gradient(135deg, #fff, #c4b5fd 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  font-size: 1.05rem;
  color: rgba(244,241,238,0.78);
  margin: 0 0 2.5rem;
}
h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 2.4rem 0 0.8rem;
  color: #c4b5fd;
}
h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 1.4rem 0 0.4rem;
  color: #fff;
}
p, li {
  color: rgba(244,241,238,0.88);
  font-size: 0.98rem;
}
ul, ol { padding-left: 1.2rem; }
ul li, ol li { margin-bottom: 0.4rem; }
strong { color: #fff; }
a {
  color: #c4b5fd;
  text-decoration: underline;
  text-underline-offset: 3px;
}
a:hover { color: #fff; }
code {
  background: rgba(124,58,237,0.18);
  padding: 0.1em 0.4em;
  border-radius: 4px;
  font-size: 0.92em;
}
.box {
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(167,139,250,0.22);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  margin: 1.2rem 0;
}
.box--accent {
  background: linear-gradient(135deg, rgba(244,200,100,0.08), rgba(124,58,237,0.08));
  border-color: rgba(244,200,100,0.32);
}
table {
  border-collapse: collapse;
  width: 100%;
  margin: 1rem 0;
  font-size: 0.92rem;
}
th, td {
  text-align: left;
  padding: 0.55rem 0.7rem;
  border-bottom: 1px solid rgba(167,139,250,0.18);
  vertical-align: top;
}
th { color: #c4b5fd; font-weight: 700; }
.home {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 0.7rem 1.1rem;
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}
.home:hover {
  color: #fff;
  transform: translateY(-1px);
}
.footer-note {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(167,139,250,0.15);
  font-size: 0.82rem;
  color: rgba(244,241,238,0.55);
}
