/* bog.css. Opdateret: 22.06.2025, Specifikt for bog.php */
  .book-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 1rem;
  }
  .book-detail .book-image {
    flex: 0 0 500px !important;        /* Boksens bredde */
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .book-detail .book-image img {
    width: 100%;            /* Fylder boksen */
    max-width: 500px !important;       /* Maks bredde */
    height: auto;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    border-radius: 5px;
  }
  .book-detail .book-info {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .book-detail .book-info h1 {
    font-size: 2.5rem;
    margin: 0;
    color: var(--text-color);
  }
  .book-detail .book-info .description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
  }

  /* Én samlet grid for alle tekniske detaljer */
  .book-detail .book-info dl {
    display: grid;
    grid-template-columns: max-content 1fr;
    row-gap: 0.75rem;
    column-gap: 2rem;
    margin-top: 1rem;
    font-size: 0.95rem;
  }
  .book-detail .book-info dt {
    font-weight: 600;
    text-align: right;
    color: #222;
    padding-right: 0.5rem;
  }
  .book-detail .book-info dd {
    margin: 0;
    color: #555;
    line-height: 1.4;
  }

  /* Bestil-knap */
  .book-detail .book-info .bestil-btn {
    margin-top: 2rem;
    padding: 12px 28px;
    background: var(--brand-color);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    width: fit-content;
  }
  .book-detail .book-info .bestil-btn:hover {
    background: var(--brand-hover);
  }

  @media (max-width: 700px) {
    .book-detail {
      flex-direction: column;
      align-items: center;
    }
    .book-detail .book-info {
      text-align: center;
    }
    .book-detail .book-info dl {
      justify-content: center;
      text-align: left;
    }
  }
