/* terms.css (or privacy.css) – updated with brighter gradient background */

:root {
  --green-core:    #2e7d32;
  --green-dark:    #1a3c34;
  --green-darker:  #132b26;               /* kept for shadows/glows if needed */
  --green-glow:    #3a9d44;
  --text-light:    rgba(255,255,255,0.92);
  --text-muted:    rgba(255,255,255,0.65);
  --surface:       rgba(26, 60, 52, 0.42);
  --surface-border: rgba(58, 157, 68, 0.18);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  background: linear-gradient(135deg, #1e4d3a 0%, #164236 50%, #0f2a24 100%);  /* ← brighter gradient from index.html */
  color: var(--text-light);
  line-height: 1.7;
  min-height: 100vh;
  padding: 4rem 1rem 6rem;
}

.container {
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(19,43,38,0.4);
}

header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(58,157,68,0.12);
}

h1 {
  font-size: clamp(2.8rem, 7vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, #e8f5e9 0%, #ffffff 50%, #e8f5e9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.6rem;
}

.subtitle {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--green-glow);
}

h2 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--green-glow);
  margin: 2.8rem 0 1.2rem;
}

p, li {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  font-weight: 400;
}

ul, ol {
  padding-left: 1.8rem;
  margin-bottom: 1.6rem;
}

.last-updated {
  text-align: center;
  margin: 4rem 0 2rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.95rem;
}

.stores {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 4rem auto 1rem;
  max-width: 500px;
  opacity: 0.42;
  filter: grayscale(0.6) brightness(0.9);
  pointer-events: none;
}

.stores img {
  height: 60px;
  width: auto;
  max-width: 45vw;
}

.stores-coming-soon {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 500;
  opacity: 0.7;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  color: rgba(255,255,255,0.38);
  font-size: 0.92rem;
  border-top: 1px solid rgba(58,157,68,0.08);
  margin-top: 4rem;
}

footer a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: var(--green-glow);
}

@media (max-width: 640px) {
  .container { padding: 2rem 1.5rem; }
  h1 { font-size: 3.2rem; }
  body { padding: 3rem 1rem 5rem; }
  .stores img { height: 50px; }
}