/* ============================================================
   Jasenka Lalović — redizajn u stilu korica „40 konaka"
   Paleta: noćno plava + krem + zlato + botanički akcenti
   ============================================================ */

:root {
  --night: #16224a;
  --night-deep: #101a3a;
  --night-soft: #1d2c5e;
  --cream: #f1e8d2;
  --cream-soft: #f7f1e2;
  --cream-deep: #e7dbbc;
  --ink: #2a2721;
  --ink-soft: #5a544a;
  --gold: #c9a86a;
  --gold-deep: #b08f4e;
  --leaf: #6b7a4d;
  --leaf-dark: #4d5c38;
  --berry: #a24a56;
  --pomegranate: #b5533c;
  --orange: #d98b3f;
  --blossom: #f0e9dc;
  --serif-display: "Cormorant Garamond", Georgia, serif;
  --serif-body: "EB Garamond", Georgia, serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--serif-body);
  color: var(--ink);
  background: var(--cream-soft);
  line-height: 1.65;
  font-size: 1.1rem;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- tipografija ---------- */
h1, h2, h3 { font-family: var(--serif-display); font-weight: 600; line-height: 1.15; }
h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); color: var(--ink); margin-bottom: 1.2rem; }
h2 em, h1 em { font-style: italic; font-weight: 500; }
.h-light { color: var(--cream); }
.kicker {
  font-family: var(--serif-body);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  color: var(--gold-deep);
  margin-bottom: 0.9rem;
}
.kicker--light { color: var(--gold); }

/* ---------- dugmad ---------- */
.btn {
  display: inline-block;
  font-family: var(--serif-body);
  font-size: 1rem;
  letter-spacing: 0.06em;
  padding: 0.85rem 1.9rem;
  border-radius: 2px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn--gold { background: var(--gold); color: var(--night-deep); border-color: var(--gold); }
.btn--gold:hover { background: var(--cream); border-color: var(--cream); }
.btn--ghost { background: transparent; color: var(--cream); border-color: rgba(241, 232, 210, 0.45); }
.btn--ghost:hover { border-color: var(--cream); background: rgba(241, 232, 210, 0.08); }
.btn--cream { background: var(--cream); color: var(--night-deep); border-color: var(--cream); }
.btn--cream:hover { background: var(--gold); border-color: var(--gold); }

/* ---------- navigacija ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled { background: rgba(16, 26, 58, 0.92); backdrop-filter: blur(12px); box-shadow: 0 1px 0 rgba(241,232,210,0.12); }
.nav__inner {
  max-width: 1180px; margin: 0 auto; padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
  font-family: var(--serif-display); font-size: 1.35rem; font-weight: 600;
  color: var(--cream); text-decoration: none; letter-spacing: 0.04em;
}
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a {
  color: rgba(241, 232, 210, 0.85); text-decoration: none; font-size: 0.98rem; letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--cream); }
.nav__links .nav__cta {
  border: 1px solid var(--gold); color: var(--gold); padding: 0.45rem 1.1rem; border-radius: 2px;
}
.nav__links .nav__cta:hover { background: var(--gold); color: var(--night-deep); }
.nav__burger { display: none; background: none; border: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav__burger span { width: 24px; height: 2px; background: var(--cream); display: block; transition: 0.3s; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column;
  background: radial-gradient(ellipse at 50% -20%, var(--night-soft) 0%, var(--night) 45%, var(--night-deep) 100%);
  overflow: hidden;
}
.hero__sky { position: absolute; inset: 0; }
.stars { position: absolute; inset: 0; pointer-events: none; }
.star {
  position: absolute; background: #fff; border-radius: 50%;
  animation: twinkle var(--tw, 3s) ease-in-out infinite alternate;
  opacity: 0.7;
}
@keyframes twinkle { from { opacity: 0.25; } to { opacity: 0.9; } }

.hero__moon { position: absolute; top: 13%; right: 24%; }
.moon {
  width: 92px; height: 92px; border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, #ffffff 0%, #efeceb 45%, #cfc9c2 100%);
  box-shadow: inset -8px -10px 18px rgba(140, 130, 120, 0.35);
  position: relative; z-index: 2;
}
.moon-glow {
  position: absolute; inset: -46px; border-radius: 50%; z-index: 1;
  background: radial-gradient(circle, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.06) 45%, transparent 70%);
}

.botanic { position: absolute; width: min(300px, 34vw); height: auto; opacity: 0.92; }
.botanic--tl { top: 0; left: 0; }
.botanic--tr { top: 0; right: 0; }

.hero__content {
  position: relative; z-index: 3;
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 130px 24px 60px;
}
.hero__eyebrow {
  color: rgba(241, 232, 210, 0.75); letter-spacing: 0.24em; text-transform: uppercase;
  font-size: 0.82rem; margin-bottom: 1.4rem;
}
.hero__eyebrow em { text-transform: none; letter-spacing: 0.06em; font-size: 1rem; }
.hero__title {
  font-size: clamp(4rem, 12vw, 8.5rem);
  color: var(--cream);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-shadow: 0 0 60px rgba(201, 168, 106, 0.25);
}
.hero__rule { display: flex; align-items: center; gap: 18px; margin: 1.6rem 0; color: var(--gold); }
.hero__rule::before, .hero__rule::after {
  content: ""; width: 90px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero__rule::after { background: linear-gradient(90deg, var(--gold), transparent); }
.hero__sub { color: rgba(241, 232, 210, 0.85); font-size: 1.15rem; max-width: 560px; margin-bottom: 2.2rem; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* krem traka na dnu hero-a — kao na koricama */
.hero__band {
  position: relative; z-index: 3;
  background: var(--cream);
  padding: 26px 32px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 20px;
  border-top: 1px solid rgba(42, 39, 33, 0.08);
}
.hero__band-note { font-size: 0.95rem; color: var(--ink-soft); }
.hero__band-name { font-family: var(--serif-display); font-style: italic; font-size: 1.5rem; font-weight: 500; }
.hero__band-title { font-family: var(--serif-display); font-size: 1.3rem; letter-spacing: 0.02em; }
.hero__band-pub { font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- sekcije ---------- */
.section-cream { background: var(--cream-soft); padding: 110px 0; }
.section-night { position: relative; background: linear-gradient(180deg, var(--night) 0%, var(--night-deep) 100%); padding: 110px 0; overflow: hidden; }

/* ---------- O JASENKI ---------- */
.about__grid { display: grid; grid-template-columns: 5fr 6fr; gap: 64px; align-items: center; }
.about__photo { position: relative; }
.about__photo img { border-radius: 3px; box-shadow: 24px 24px 0 var(--cream-deep); }
.about__photo figcaption {
  margin-top: 30px; font-style: italic; color: var(--ink-soft); font-size: 1.05rem;
}
.about__text p { margin-bottom: 1.1rem; }
.about__potpis { width: 150px; margin-top: 1.4rem; mix-blend-mode: multiply; }

/* ---------- CITAT ---------- */
.quote {
  position: relative; background: var(--night-deep);
  padding: 100px 0; overflow: hidden; text-align: center;
}
.quote__inner { position: relative; z-index: 2; max-width: 820px; }
.quote__star { color: var(--gold); font-size: 1.4rem; display: block; margin-bottom: 1.4rem; }
.quote blockquote {
  font-family: var(--serif-display); font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  font-style: italic; font-weight: 500; color: var(--cream); line-height: 1.4;
}
.quote cite { display: block; margin-top: 1.4rem; color: rgba(241, 232, 210, 0.65); font-style: normal; font-size: 1rem; }

/* recenzije */
.reviews {
  position: relative; z-index: 2;
  margin-top: 70px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
  text-align: left;
}
.review {
  background: rgba(241, 232, 210, 0.05);
  border: 1px solid rgba(241, 232, 210, 0.14);
  border-radius: 3px; padding: 26px 26px 22px;
}
.review__stars { color: var(--gold); letter-spacing: 4px; font-size: 0.95rem; }
.review p {
  font-family: var(--serif-display); font-style: italic;
  color: var(--cream); font-size: 1.18rem; line-height: 1.45;
  margin: 0.8rem 0 0.9rem;
}
.review cite { font-style: normal; font-size: 0.9rem; color: rgba(241, 232, 210, 0.6); letter-spacing: 0.06em; }
@media (max-width: 720px) {
  .reviews { grid-template-columns: 1fr; margin-top: 50px; }
}

/* ---------- KNJIGE ---------- */
.books__grid {
  margin-top: 3rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 40px;
}
.book h3 { font-size: 1.5rem; margin: 1.2rem 0 0.5rem; }
.book p { font-size: 1rem; color: var(--ink-soft); margin-bottom: 0.7rem; }
.book__link { font-size: 0.98rem; color: var(--gold-deep); text-decoration: none; letter-spacing: 0.04em; }
.book__link:hover { color: var(--ink); }

/* CSS „korice" */
.book__cover {
  aspect-ratio: 2 / 3;
  border-radius: 2px;
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 9%;
  box-shadow: 0 18px 40px -18px rgba(16, 26, 58, 0.45), inset 0 0 0 1px rgba(255,255,255,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}
.book:hover .book__cover { transform: translateY(-8px); box-shadow: 0 30px 50px -20px rgba(16, 26, 58, 0.55); }
.book__cover-author { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.85; margin-bottom: 0.7rem; }
.book__cover-title { font-family: var(--serif-display); font-size: clamp(1.4rem, 2vw, 1.9rem); font-weight: 600; line-height: 1.15; }
.book__cover-sub { font-size: 0.78rem; font-style: italic; opacity: 0.8; margin-top: 0.9rem; }
.book__badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--gold); color: var(--night-deep);
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px;
}

.book__cover--konaka { background: radial-gradient(ellipse at 50% 0%, #23336b 0%, var(--night) 55%, var(--night-deep) 100%); color: var(--cream); justify-content: flex-end; padding-bottom: 0; }
.book__cover--konaka .book__cover-title { font-size: clamp(1.7rem, 2.4vw, 2.2rem); margin-bottom: auto; }
.book__cover--konaka .book__cover-author { order: -1; margin-top: 18%; }
.book__cover--konaka .book__cover-band {
  width: calc(100% + 2 * 9%); margin: 0 -9%;
  background: var(--cream); color: var(--ink);
  font-size: 0.75rem; letter-spacing: 0.1em; padding: 12px 0 14px;
}
.book__cover-moon {
  position: absolute; top: 12%; right: 16%;
  width: 34px; height: 34px; border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #fff, #d8d2c8);
  box-shadow: 0 0 24px rgba(255,255,255,0.5);
}
.book__cover-stars, .book__cover-stars::before, .book__cover-stars::after {
  content: ""; position: absolute; width: 2px; height: 2px; border-radius: 50%; background: #fff; opacity: 0.8;
}
.book__cover-stars { top: 22%; left: 24%; box-shadow: 30px 40px 0 #fff, -10px 70px 0 rgba(255,255,255,0.7), 60px 10px 0 rgba(255,255,255,0.6), 90px 55px 0 #fff, 120px 25px 0 rgba(255,255,255,0.5); }

.book__cover--zera { background: linear-gradient(170deg, #2c2a55 0%, #201f42 60%, #191837 100%); color: #f2efe6; }
.book__cover--bastadur { background: linear-gradient(180deg, #cfe0e8 0%, #b5cdd9 100%); color: #22333d; }
.book__cover--kastigulja { background: linear-gradient(180deg, #56603f 0%, #454e32 100%); color: #eef0e4; }
.book__cover--sove { background: linear-gradient(180deg, #3d4a44 0%, #2f3a35 100%); color: #e9ece7; }
.book__cover--sone { background: linear-gradient(180deg, #8e4a38 0%, #7a3d2d 100%); color: #f4e9e2; }

/* ---------- FOTO TRAKA ---------- */
.strip { background: var(--cream-soft); padding: 0 0 110px; position: relative; }
.strip__track {
  display: flex; gap: 18px; overflow-x: auto; padding: 0 max(24px, calc((100vw - 1180px) / 2));
  scroll-snap-type: x mandatory; scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.strip__track::-webkit-scrollbar { display: none; }
.strip__track img {
  height: 380px; width: auto; flex: 0 0 auto; border-radius: 3px;
  scroll-snap-align: center;
  filter: saturate(0.92);
}

/* ---------- VIDEO — cinematic full-width ---------- */
.video-sec {
  position: relative; overflow: hidden;
  min-height: 72vh;
  display: flex; align-items: center; justify-content: center;
  background: var(--night-deep);
}
.video-sec video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}
.video-sec__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16, 26, 58, 0.55) 0%, rgba(16, 26, 58, 0.25) 45%, rgba(16, 26, 58, 0.65) 100%);
}
.video-sec__content {
  position: relative; z-index: 2;
  text-align: center; padding: 90px 24px;
}
.video-sec__content h2 { text-shadow: 0 2px 30px rgba(0, 0, 0, 0.45); }
.video-sec__cta { margin-top: 1.6rem; }
@media (max-width: 720px) {
  .video-sec { min-height: 60vh; }
}

/* ---------- TRAGOVI ---------- */
.traces__grid { margin-top: 3rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; z-index: 2; }
.trace {
  display: block; text-decoration: none;
  background: rgba(241, 232, 210, 0.05);
  border: 1px solid rgba(241, 232, 210, 0.14);
  border-radius: 3px; padding: 30px 28px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.trace:hover { background: rgba(241, 232, 210, 0.09); border-color: rgba(201, 168, 106, 0.5); transform: translateY(-4px); }
.trace__date { font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.trace h3 { color: var(--cream); font-size: 1.35rem; margin: 0.7rem 0 0.6rem; }
.trace p { color: rgba(241, 232, 210, 0.7); font-size: 0.98rem; margin-bottom: 1rem; }
.trace__more { color: var(--gold); font-size: 0.95rem; }

/* ---------- SUSRETI ---------- */
.events__list { list-style: none; margin-top: 2.5rem; border-top: 1px solid rgba(42, 39, 33, 0.14); }
.events__list li {
  display: grid; grid-template-columns: 160px 180px 1fr; gap: 20px; align-items: baseline;
  padding: 22px 6px; border-bottom: 1px solid rgba(42, 39, 33, 0.14);
  transition: background 0.2s;
}
.events__list li:hover { background: rgba(201, 168, 106, 0.08); }
.events__date { font-size: 0.9rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); }
.events__city { font-family: var(--serif-display); font-size: 1.4rem; font-weight: 600; }
.events__place { color: var(--ink-soft); }

/* ---------- KUPOVINA: cijena + dodaj u korpu ---------- */
.book__buy { display: flex; align-items: center; gap: 14px; margin-top: 0.4rem; }
.book__price { font-family: var(--serif-display); font-size: 1.35rem; font-weight: 600; color: var(--ink); }
.btn-add {
  font-family: var(--serif-body); font-size: 0.95rem; letter-spacing: 0.05em;
  background: transparent; color: var(--gold-deep);
  border: 1px solid var(--gold-deep); border-radius: 2px;
  padding: 0.55rem 1.2rem; cursor: pointer; transition: all 0.22s;
}
.btn-add:hover { background: var(--gold-deep); color: var(--cream-soft); }

.nav__cart { font-family: var(--serif-body); font-size: 0.98rem; cursor: pointer; background: transparent; display: inline-flex; align-items: center; gap: 8px; }
.nav__cart-count {
  min-width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold); color: var(--night-deep);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 600; padding: 0 5px;
}

/* ---------- KORPA (drawer) ---------- */
.cart-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(16, 26, 58, 0.55); backdrop-filter: blur(3px);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 201;
  width: min(460px, 100vw);
  background: var(--cream-soft);
  box-shadow: -30px 0 70px rgba(0, 0, 0, 0.35);
  transform: translateX(105%); transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex; flex-direction: column;
}
.cart.open { transform: none; }
.cart__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px; background: var(--night); color: var(--cream);
}
.cart__head h3 { font-family: var(--serif-display); font-size: 1.5rem; font-weight: 600; }
.cart__close {
  background: none; border: none; color: var(--cream); font-size: 2rem;
  line-height: 1; cursor: pointer; opacity: 0.8; padding: 0 4px;
}
.cart__close:hover { opacity: 1; }
.cart__step { flex: 1; overflow-y: auto; display: flex; flex-direction: column; }
.cart__step[hidden] { display: none; }
.cart__items { padding: 20px 26px 6px; }
.cart__empty { color: var(--ink-soft); text-align: center; padding: 40px 0 20px; font-style: italic; }

.cart-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(42, 39, 33, 0.1); }
.cart-item__thumb {
  width: 52px; height: 76px; border-radius: 2px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif-display); font-size: 1.05rem; font-weight: 600; color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4); padding: 4px; text-align: center; line-height: 1.05;
}
.cart-item__body { flex: 1; min-width: 0; }
.cart-item__title { font-family: var(--serif-display); font-size: 1.1rem; font-weight: 600; }
.cart-item__price { color: var(--ink-soft); font-size: 0.95rem; }
.cart-item__row { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.qty { display: inline-flex; align-items: center; border: 1px solid rgba(42, 39, 33, 0.25); border-radius: 2px; }
.qty button {
  width: 28px; height: 28px; background: none; border: none; cursor: pointer;
  font-size: 1.1rem; color: var(--ink); line-height: 1;
}
.qty button:hover { background: rgba(201, 168, 106, 0.2); }
.qty span { min-width: 30px; text-align: center; font-size: 1rem; }
.cart-item__remove {
  background: none; border: none; color: var(--ink-soft); font-size: 0.85rem;
  cursor: pointer; text-decoration: underline; text-underline-offset: 2px;
}
.cart-item__remove:hover { color: var(--berry); }

/* upsell */
.cart__upsell { padding: 14px 26px; }
.cart__upsell-title {
  font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 10px;
}
.upsell-card {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid rgba(201, 168, 106, 0.45); border-radius: 3px;
  padding: 10px 12px; margin-bottom: 10px;
}
.upsell-card__thumb {
  width: 40px; height: 58px; border-radius: 2px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif-display); font-size: 0.85rem; font-weight: 600; color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4); text-align: center; line-height: 1.05; padding: 3px;
}
.upsell-card__body { flex: 1; min-width: 0; }
.upsell-card__title { font-family: var(--serif-display); font-size: 1rem; font-weight: 600; line-height: 1.2; }
.upsell-card__price { font-size: 0.9rem; color: var(--ink-soft); }
.upsell-card__price s { opacity: 0.6; margin-right: 6px; }
.upsell-card .btn-add { padding: 0.4rem 0.9rem; font-size: 0.85rem; white-space: nowrap; }

.cart__foot {
  margin-top: auto; padding: 18px 26px 24px;
  border-top: 1px solid rgba(42, 39, 33, 0.12); background: var(--cream);
}
.cart__totals { margin-bottom: 14px; font-size: 1rem; }
.cart__totals .trow { display: flex; justify-content: space-between; padding: 3px 0; color: var(--ink-soft); }
.cart__totals .trow--total { font-family: var(--serif-display); font-size: 1.3rem; font-weight: 700; color: var(--ink); border-top: 1px solid rgba(42,39,33,0.15); margin-top: 8px; padding-top: 10px; }
.cart__totals .trow--free { color: var(--leaf-dark); }
.cart__next, .cart__submit { width: 100%; text-align: center; }

/* checkout korak */
.cart__form { padding: 20px 26px 26px; }
.cart__summary {
  background: var(--cream); border: 1px solid rgba(201, 168, 106, 0.4); border-radius: 3px;
  padding: 12px 16px; margin-bottom: 18px; font-size: 0.98rem;
}
.cart__summary .trow { display: flex; justify-content: space-between; padding: 2px 0; }
.cart__summary .trow--total { font-weight: 700; border-top: 1px solid rgba(42,39,33,0.12); margin-top: 6px; padding-top: 8px; }
.cart__form-actions { display: flex; gap: 12px; margin-top: 4px; }
.cart__form-actions .cart__submit { flex: 1; }
.btn--ghost-dark { background: transparent; color: var(--ink); border-color: rgba(42, 39, 33, 0.3); }
.btn--ghost-dark:hover { border-color: var(--ink); }

/* hvala korak */
.cart__thanks { align-items: center; justify-content: center; text-align: center; padding: 40px 30px; gap: 14px; }
.cart__thanks-star { color: var(--gold-deep); font-size: 1.6rem; }
.cart__thanks h3 { font-family: var(--serif-display); font-size: 1.8rem; }
.cart__thanks p { color: var(--ink-soft); max-width: 300px; }

/* toast */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 80px);
  background: var(--night); color: var(--cream);
  padding: 12px 22px; border-radius: 3px; font-size: 0.98rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  opacity: 0; transition: all 0.35s ease; z-index: 300; pointer-events: none;
  max-width: calc(100vw - 40px); text-align: center;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }

/* ---------- FORMA (polja) ---------- */
.order__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 16px; }
.order__field { display: flex; flex-direction: column; gap: 6px; }
.order__field--full { grid-column: 1 / -1; }
.order__field span {
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft);
}
.order__field span em { text-transform: none; letter-spacing: 0; font-size: 0.85rem; }
.order__field input, .order__field select, .order__field textarea {
  font-family: var(--serif-body); font-size: 1.05rem; color: var(--ink);
  background: #fff; border: 1px solid rgba(42, 39, 33, 0.22); border-radius: 2px;
  padding: 0.7rem 0.9rem; outline: none; transition: border-color 0.2s;
  width: 100%;
}
.order__field input:focus, .order__field select:focus, .order__field textarea:focus { border-color: var(--gold-deep); }
.order__field textarea { resize: vertical; }
.order__pay { margin: 26px 0 22px; display: flex; flex-direction: column; gap: 10px; }
.order__radio { display: flex; align-items: baseline; gap: 10px; font-size: 1.05rem; cursor: pointer; }
.order__radio input { accent-color: var(--gold-deep); }
.order__radio small { color: var(--ink-soft); }
.order__radio--soon { opacity: 0.55; cursor: not-allowed; }
.order__submit { width: 100%; text-align: center; font-size: 1.1rem; }
.order__status { margin-top: 1rem; text-align: center; font-size: 1rem; display: none; }
.order__status.ok { display: block; color: #3e6b3a; }
.order__status.err { display: block; color: #9b3a2a; }

/* ---------- KONTAKT / NEWSLETTER ---------- */
.contact__inner { text-align: center; position: relative; z-index: 2; max-width: 720px; }
.contact__moon {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 2rem;
  background: radial-gradient(circle at 40% 35%, #fff, #d8d2c8);
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.35);
}
.contact__lead { color: rgba(241, 232, 210, 0.8); max-width: 540px; margin: 0 auto 2rem; }
.contact__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 3.5rem; }
.newsletter { max-width: 480px; margin: 0 auto; }
.newsletter__label { color: rgba(241, 232, 210, 0.7); font-size: 0.98rem; margin-bottom: 0.9rem; }
.newsletter__row { display: flex; gap: 10px; }
.newsletter input {
  flex: 1; background: rgba(241, 232, 210, 0.08);
  border: 1px solid rgba(241, 232, 210, 0.25); border-radius: 2px;
  padding: 0.85rem 1.1rem; color: var(--cream); font-family: var(--serif-body); font-size: 1rem;
  outline: none; transition: border-color 0.2s;
}
.newsletter input::placeholder { color: rgba(241, 232, 210, 0.4); }
.newsletter input:focus { border-color: var(--gold); }
.newsletter__ok { display: none; color: var(--gold); margin-top: 1rem; }
.newsletter__ok.show { display: block; }

/* ---------- FOOTER ---------- */
.footer { background: var(--night-deep); border-top: 1px solid rgba(241, 232, 210, 0.1); padding: 56px 0; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center; }
.footer__potpis { width: 130px; opacity: 0.9; }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer__links a { color: rgba(241, 232, 210, 0.7); text-decoration: none; font-size: 0.95rem; }
.footer__links a:hover { color: var(--cream); }
.footer__copy { color: rgba(241, 232, 210, 0.4); font-size: 0.88rem; }

/* ---------- reveal animacije ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .star { animation: none; }
}

/* ---------- MOBILNI ---------- */
@media (max-width: 900px) {
  .books__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .traces__grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; gap: 44px; }
  .about__photo img { box-shadow: 14px 14px 0 var(--cream-deep); }
  .events__list li { grid-template-columns: 1fr; gap: 4px; }
}

@media (max-width: 720px) {
  .section-cream, .section-night { padding: 80px 0; }
  .nav__links {
    position: fixed; inset: 0; z-index: -1;
    background: rgba(16, 26, 58, 0.97);
    flex-direction: column; justify-content: center; gap: 34px;
    opacity: 0; pointer-events: none; transition: opacity 0.3s;
  }
  .nav__links a { font-size: 1.4rem; }
  .nav.open .nav__links { opacity: 1; pointer-events: auto; z-index: 99; }
  .nav__burger { display: flex; position: relative; z-index: 100; }
  .nav.open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.open .nav__burger span:nth-child(2) { opacity: 0; }
  .nav.open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero__moon { top: 4.5%; right: 12%; }
  .moon { width: 48px; height: 48px; }
  .moon-glow { inset: -28px; }
  .botanic { opacity: 0.4; width: 40vw; }
  .hero__content { padding-top: 150px; }
  .hero__sub { font-size: 1.05rem; }
  .hero__band { flex-direction: column; align-items: flex-start; gap: 4px; padding: 22px 24px; }
  .hero__band-right { margin-top: 6px; }

  .books__grid { grid-template-columns: 1fr; max-width: 340px; margin-left: auto; margin-right: auto; }
  .strip__track img { height: 280px; }
  .newsletter__row { flex-direction: column; }
  .newsletter__row .btn { width: 100%; text-align: center; }
  .order { padding: 30px 20px; }
  .order__grid { grid-template-columns: 1fr; }
}
