/* ── Ebook singular page ───────────────────────────────────────────────────── */

.ebook-page {
  margin: 0;
  padding: 0;
  background: #FDFBF2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
}

.ebook-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 72px 24px;
}

.ebook-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  width: 100%;
  max-width: 420px;
}

/* Cover frame */
.ebook-cover-frame {
  border: 1px solid #e7c9c9;
  padding: 14px;
  width: 100%;
  background: #fff;
}

.ebook-cover-img {
  display: block;
  width: 100%;
  height: auto;
}

.ebook-cover-placeholder {
  display: block;
  width: 100%;
  height: auto;
}

/* Title */
.ebook-title {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  color: #a25948;
  font-weight: 500;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

/* Download button */
.ebook-btn {
  display: block;
  width: 100%;
  background: #ce9781;
  color: #FDFBF2;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 22px 26px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.ebook-btn:hover {
  background: #b07a60;
}

.ebook-unavailable {
  color: #a25948;
  font-size: 16px;
  text-align: center;
  opacity: 0.7;
  margin: 0;
}

/* Responsive */
@media (max-width: 480px) {
  .ebook-wrap {
    padding: 48px 20px;
  }
}
