/* =====================================================
   STORYBOOK VOICES — RECORD BOOK PAGE
   Clean Production Version
===================================================== */

/* ===============================
   RESET
=============================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #e6e0d4;
  font-family: Georgia, serif;
}

/* =====================================================
   FRONT PAGE SCROLL + LANGUAGE
===================================================== */

.corner-wrapper {
  position: absolute;
  top: 18px;
  left: 22px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.corner-scroll img {
  width: 106px;
}

.corner-label {
  margin-top: 4px;
  font-size: 13px;
  text-align: center;
}

/* Language under scroll */
.lang-under-scroll {
  margin-top: 6px;
}
.lang-switcher select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  font-family: 'Cormorant Garamond', Garamond, serif;
  font-size: 18px;
  font-weight: 600;

  width: 110px;
  height: 44px;            /* ← increase height */
  padding: 4px 12px;       /* ← add vertical padding */

  line-height: 1.2;        /* ← prevents clipping */

  text-align: center;
  text-align-last: center;

  background: #ffffff;
  border: 1px solid #c9c2b8;
  border-radius: 10px;

  color: #2f2a24;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
  cursor: pointer;
}
/* Hide labels in English */
html[lang="en"] .translatable {
  display: none;
}
.lang-switcher {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 1000;
}

/* =====================================================
   PLAQUE
===================================================== */

.plaque-section {
  text-align: center;
  margin-top: 80px;
}

.plaque-link {
  display: inline-block;
}

.plaque-image {
  width: 70vw;
  max-width: 420px;
  height: auto;
  display: block;
}

/* Plaque label under image */
.plaque-section .scroll-text {
  margin-top: 10px;
  font-size: 16px;
  text-align: center;
}

/* =====================================================
   BOOK DISPLAY
===================================================== */

.books-section {
  margin-top: 60px;
  text-align: center;
}

.books-image {
  width: 100%;
  max-width: 770px;
}

/* =====================================================
   SCROLL BUTTONS
===================================================== */

.scroll-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
  padding-bottom: 40px;
}

.scroll-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.scroll-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-btn img {
  width: 110px;
  cursor: pointer;
}

.scroll-text {
  margin-top: 8px;
  font-size: 15px;
  text-align: center;
}

/* =====================================================
   NOTICE BOX
===================================================== */

.notice-box {
  margin: 30px auto 0;
  max-width: 800px;
  padding: 0 24px;
  font-size: 15px;
  color: #4a3f34;
}

/* =====================================================
   STORY TEXT
===================================================== */

.story-text {
  display: flex;
  flex-direction: column;
  align-items: center;

  margin: 70px auto 110px;
  padding: 0 24px;

  max-width: 800px;
  text-align: center;

  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  line-height: 1.8;
  color: #4a3f34;
  letter-spacing: 0.3px;
}

/* Headline */
.story-text h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 32px;
}

/* Paragraphs */
.story-text p {
  margin-bottom: 24px;
  max-width: 680px;
}

/* =====================================================
   PRICE BLOCK (CLEANED — NO MYSTERY LINES)
===================================================== */

.story-text .price-block {
  margin: 50px 0 30px;
  font-size: 24px;
  font-weight: 600;
  color: #3e3328;
  padding: 18px 28px;
  display: inline-block;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {
  .scroll-btn img { width: 96px; }
}

@media (max-width: 480px) {
  .scroll-btn img { width: 86px; }
  .corner-scroll img { width: 70px; }
}