/* Sticker-Seite: mobile-first, die Kacheln sind der Held. */

/* Eigene Shell: page.css deckt nur die Produkt-Unterseiten ab. */
.page {
  max-width: 980px; margin: 0 auto; padding: 8px 22px 72px;
  position: relative; z-index: 1;
}
.page-head { text-align: center; margin: 1.6rem 0 1.4rem; }
.page-over {
  font-family: var(--serif); letter-spacing: .22em; text-transform: uppercase;
  font-size: .72rem; color: var(--muted); margin: 0 0 .6rem;
}
.page-head h1 {
  font-family: var(--serif); font-size: clamp(1.5rem, 6vw, 2.3rem);
  letter-spacing: .06em; line-height: 1.22; margin: 0;
  background: linear-gradient(120deg, var(--gold-hi), var(--gold) 60%, var(--gold-lo));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 22px #e2b83e4d);
}

.sticker-intro { max-width: 640px; margin: 0 auto 2rem; text-align: center; }
.sticker-intro p { color: var(--text); line-height: 1.65; }

.sticker-actions {
  display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center;
  margin: 1.6rem auto 2.4rem; max-width: 640px;
}
.sticker-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .82rem 1.35rem; border-radius: 999px;
  font-family: var(--sans); font-size: .95rem; font-weight: 600;
  border: 1px solid var(--gold-lo); background: transparent; color: var(--gold-hi);
  cursor: pointer; transition: background .18s, border-color .18s, transform .18s;
  text-decoration: none; /* gilt auch fuer die Varianten als <a> */
}
.sticker-btn:hover { background: #d4af371a; border-color: var(--gold); transform: translateY(-1px); }
.sticker-btn-primary {
  background: linear-gradient(180deg, #ffe9a0, #d4af37);
  border-color: transparent; color: #120e04;
}
.sticker-btn-primary:hover { background: linear-gradient(180deg, #fff0bb, #e2c14a); }

/* ── Das Set ── */
.sticker-grid {
  display: grid; gap: .7rem;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  max-width: 760px; margin: 0 auto;
}
.sticker-tile {
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
  padding: 0; border: 0; background: none; cursor: pointer;
  border-radius: 18px; transition: transform .16s;
  -webkit-tap-highlight-color: transparent;
}
.sticker-tile img {
  width: 100%; height: auto; display: block; border-radius: 18px;
  transition: filter .16s;
}
.sticker-tile:hover { transform: translateY(-3px); }
.sticker-tile:hover img { filter: drop-shadow(0 6px 16px #d4af3733); }
.sticker-tile:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.sticker-tile-name {
  font-family: var(--sans); font-size: .62rem; color: var(--muted);
  letter-spacing: .03em; text-align: center; line-height: 1.2;
}
.sticker-empty { text-align: center; color: var(--muted); }

/* ── Anleitungen ── */
.sticker-how {
  max-width: 720px; margin: 3.4rem auto 0;
  display: grid; gap: 1.1rem; grid-template-columns: 1fr;
}
@media (min-width: 720px) { .sticker-how { grid-template-columns: 1fr 1fr; } }
.sticker-card {
  border: 1px solid var(--line); border-radius: 18px; padding: 1.3rem 1.4rem;
  background: #0a09064d;
}
.sticker-card h3 {
  font-family: var(--serif); color: var(--gold); font-size: 1.02rem;
  letter-spacing: .08em; margin: 0 0 .7rem;
}
.sticker-card ol { margin: 0; padding-left: 1.15rem; color: var(--text); }
.sticker-card li { margin-bottom: .5rem; line-height: 1.55; font-size: .92rem; }
.sticker-card li:last-child { margin-bottom: 0; }
.sticker-card .sticker-btn { margin-top: 1rem; width: 100%; justify-content: center; }

/* ── Toast ── */
.sticker-toast {
  position: fixed; left: 50%; bottom: 1.5rem; transform: translate(-50%, 1.2rem);
  background: #120f08; border: 1px solid var(--gold-lo); color: var(--gold-hi);
  padding: .72rem 1.15rem; border-radius: 999px; font-family: var(--sans); font-size: .88rem;
  opacity: 0; pointer-events: none; transition: opacity .22s, transform .22s; z-index: 60;
  max-width: calc(100vw - 2rem); text-align: center;
}
.sticker-toast.on { opacity: 1; transform: translate(-50%, 0); }
