.detail-book-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            max-width: 1000px;
            margin: 30px auto;
            padding: 0 20px;
        }

        .book-cover {
            flex: 1;
            min-width: 300px;
            text-align: center;
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            border-top: 3px solid #4caf50;
        }

       .book-cover img {
            max-width: 100%;
            max-height: 200px; /* Taille réduite */
            height: auto; /* Garde les proportions */
            border-radius: 4px;
            margin-bottom: 15px;
            border: 1px solid #f0f0f0;
            object-fit: contain; /* Évite la déformation */
        }

        .book-info {
            flex: 2;
            min-width: 300px;
            background: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .book-title {
            color: #2e7d32;
            margin-top: 0;
            font-size: 1.8em;
            border-bottom: 2px solid #e0e0e0;
            padding-bottom: 10px;
        }

        .book-description p {
            margin-bottom: 15px;
            color: #555;
            line-height: 1.6;
        }

        .book-price {
            font-weight: bold;
            color: #2e7d32;
            font-size: 1.2em;
            margin: 15px 0;
        }

        .stylebouton_acheter {
            display: inline-block;
            padding: 12px 25px;
            background: linear-gradient(135deg, #ef5350, #e57373);
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s;
            margin-bottom: 20px;
        }

        .stylebouton_acheter:hover {
            background: linear-gradient(135deg, #d32f2f, #ef5350);
            box-shadow: 0 3px 6px rgba(239, 83, 80, 0.3);
        }

        .sommaire {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin-top: 20px;
        }

        .sommaire p {
            margin-bottom: 10px;
            font-weight: bold;
            color: #2e7d32;
        }

        .sommaire ul {
            padding-left: 20px;
        }

        .sommaire li {
            margin-bottom: 8px;
            color: #666;
        }

        .auteur-section {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px dashed #ccc;
        }

        .auteur-title {
            color: #2e7d32;
            font-size: 1.4em;
            margin-bottom: 10px;
        }

        .auteur-content p {
            color: #555;
            margin-bottom: 10px;
        }