<style>
        .carousel-container {
            width: 100%;
            height: auto;
            min-height: 300px;
            overflow: hidden;
            margin-bottom: 15px;
        }
        .carousel-container img {
            width: 100%;
            height: auto;
            max-height: 80vh;
            object-fit: contain;
            cursor: zoom-in;
        }
        .thumbnail-wrapper {
            width: 100%;
            overflow-x: auto;
            white-space: nowrap;
            margin-top: 10px;
            margin-bottom: 20px;
            padding: 10px 0;
        }
        .thumbnail-container {
            display: flex;
            gap: 8px;
        }
        .thumbnail-container img {
            height: 60px;
            width: auto;
            cursor: pointer;
            border: 2px solid transparent;
            transition: border 0.3s;
        }
        .thumbnail-container img.active {
            border-color: #007bff;
        }
        .modal-dialog {
            max-width: 90%;
            margin: 1.75rem auto;
        }
        .modal-content {
            width: 100%;
            background-color: transparent;
            border: none;
        }
        .modal-body {
            padding: 0;
            position: relative;
        }
        .modal-body img {
            width: 100%;
            height: auto;
            max-height: 150vh;
            object-fit: contain;
        }
        .close-zoom {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: rgba(255, 255, 255, 0.7);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .close-zoom:hover {
            background-color: rgba(255, 255, 255, 0.9);
        }
        .product__rating i {
            color: #FFD700;
        }
        .liste-service {
            font-size: 14px;
            line-height: 1.6;
        }
        @media (max-width: 768px) {
            .carousel-container {
                min-height: 200px;
            }
            .thumbnail-container img {
                height: 50px;
            }
            .col-md-5.ps-5 {
                padding-left: 15px !important;
                margin-top: 20px;
            }
            .product-details {
                margin-bottom: 2rem !important;
            }
            .display-6 {
                font-size: 1.5rem;
            }
        }
    </style>