.kitap-detay-page {
  padding: 80px 20px 120px;
  max-width: 1200px;
  margin: 0 auto;
}

.kitap-detay-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 70px;
}

.kitap-detay-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.kitap-detay-image {
  flex: 0 0 380px;
}

.kitap-detay-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.35);
  transition: transform .3s ease;
}

.kitap-detay-image img:hover {
  transform: scale(1.05);
}

.kitap-detay-info {
  flex: 1;
  padding: 50px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.kitap-detay-desc {
  font-size: 18px;
  white-space: pre-wrap;
  word-break: break-word;
  color: #333;

  /* KOPYALAMAYI ZORLAŞTIR */
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
}

.kitap-detay-desc::selection {
  background: transparent;
  color: #333;
}

.kitap-detay-info::before {
  content: "Kitap Hakkında";
  display: block;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  border-bottom: 3px solid #f6b6c1;
  padding-bottom: 10px;
}

.kitap-detay-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease;
}

.kitap-detay-btn:hover {
  background: #f6b6c1;
  color: #000;
}

.kitap-detay-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: flex-start;
  padding: 40px 20px 80px;
}

.kitap-kapak img {
  width: 340px;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.kitap-icerik {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.kitap-hakkinda-kart,
.bolumler-kart {
  background: #fff;
  border-radius: 26px;
  padding: 32px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.kitap-hakkinda-kart h2,
.bolumler-kart h2 {
  font-size: 34px;
  margin: 0 0 18px;
  color: #1f1f1f;
}

.kitap-aciklama {
  font-size: 17px;
  line-height: 1.9;
  color: #444;
  white-space: pre-line;
}

.bolum-listesi {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bolum-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  border-radius: 18px;
  background: #fff7f9;
  border: 1px solid #f5c7d1;
  text-decoration: none;
  transition: 0.25s ease;
}

.bolum-item:hover {
  transform: translateY(-2px);
  background: #fdeef2;
  box-shadow: 0 10px 24px rgba(246, 182, 193, 0.2);
}

.bolum-no {
  font-weight: 700;
  color: #1f1f1f;
  font-size: 17px;
}

.bolum-baslik {
  color: #c85f7e;
  font-weight: 600;
  font-size: 16px;
}

.bolum-bos {
  padding: 18px 22px;
  border-radius: 18px;
  background: #fff7f9;
  border: 1px solid #f5c7d1;
  color: #666;
  font-size: 16px;
}

/* =========================================================
   KİTAP İSTATİSTİKLERİ
   ========================================================= */

.kitap-stats {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.kitap-stat-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 15px;
  border-radius: 999px;

  background: #fff7f9;
  border: 1px solid #f5c7d1;
  color: #c85f7e;

  font-size: 14px;
  font-weight: 700;
}

.kitap-stat-icon {
  font-size: 16px;
}

.kitap-stat-number {
  color: #1f1f1f;
  font-size: 15px;
  font-weight: 800;
}

.kitap-stat-label {
  font-size: 13px;
}

/* Dark mode */
body.dark-mode .kitap-stat-item {
  background: #111 !important;
  color: #fff !important;
  border-color: #333 !important;
}

body.dark-mode .kitap-stat-number {
  color: #fff !important;
}

.bolum-item-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bolum-item-wrap .bolum-item {
  flex: 1;
}

.bolum-like-form {
  margin: 0;
}

.bolum-like-btn {
  border: 1px solid #f5c7d1;
  background: #fff7f9;
  color: #c85f7e;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.bolum-like-btn.liked {
  background: #f6b6c1;
  color: #fff;
}

@media (max-width: 768px) {
  .bolum-item-wrap {
    align-items: stretch;
    flex-direction: column;
  }

  .bolum-like-btn {
    width: fit-content;
  }
}

/* Mobil */
@media (max-width: 768px) {
  .kitap-stats {
    justify-content: center;
  }

  .kitap-stat-item {
    padding: 9px 13px;
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  .kitap-detay-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .kitap-kapak img {
    width: 280px;
  }

  .kitap-icerik {
    width: 100%;
  }

  .bolum-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (max-width: 992px) {
  .kitap-detay-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  .kitap-detay-image {
    flex: none;
    width: 260px;
  }

  .kitap-detay-info {
    width: 100%;
    padding: 35px;
  }

  .kitap-detay-title {
    font-size: 30px;
  }
}

.bolum-item-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bolum-item-wrap .bolum-item {
  flex: 1;
}

.bolum-like-display {
  min-width: 64px;
  height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  padding: 0 14px;
  border-radius: 999px;

  background: #fff7f9;
  border: 1px solid #f5c7d1;
  color: #c85f7e;

  font-size: 14px;
  font-weight: 800;

  pointer-events: none;
}

@media (max-width: 768px) {
  .bolum-item-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .bolum-like-display {
    width: fit-content;
  }
}