.breadcrumbs {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  color: #666;
  font-family: 'Montserrat', sans-serif;
}

.breadcrumbs a {
  color: #0077cc;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumbs a:hover {
  color: #d12020;
}

.breadcrumbs span {
  color: #999;
}
.book-page {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Montserrat', sans-serif;
}

.book-content {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  position: relative;
}

.book-left {
  width: 300px;
  flex-shrink: 0;
  text-align: center;
}

.book-cover {
  width: 100%;
  height: auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  margin-bottom: 1rem;
}

.book-meta p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  color: #444;
}

.buy-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background-color: #d2222d;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.buy-button:hover {
  background-color: #a61a24;
}

.book-divider {
  width: 2px;
  background-color: #000;
  opacity: 0.1;
  height: auto;
  align-self: stretch;
}

.book-right {
  flex: 1;
}

.book-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.book-fragment p {
 font-family: 'Alegreya', serif;
  font-size: 1.225rem;
  line-height: 1.75;
  color: #2c2c2c;
  max-width: 90ch;
  margin-bottom: 1.5rem;
}
.book-fragment a {
  color: #007acc; 
  text-decoration: none; 
  transition: color 0.3s, background-color 0.3s;
}

.book-fragment a:hover {
  color: white; 
  background-color: #007acc; 
  padding: 2px 5px;
  border-radius: 4px;
  text-decoration: none; 
}

@media (max-width: 768px) {
	.breadcrumbs {
    padding: 0 1rem;
  }
  .book-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .book-left {
    width: 100%;
    text-align: center;
  }

  .book-divider {
    display: none;
  }

  .book-right {
    width: 100%;
  }

  .book-title {
    font-size: 1.5rem;
    text-align: center;
  }
}
