.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    touch-action: pan-y;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-out;
    height: 100%;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    min-height: 300px;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
}
.thumbnail.active {
    border: 2px solid #3b82f6;
}

/* Indicateurs pour mobile */
.carousel-dots {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 5px;
    cursor: pointer;
}

.carousel-dot.active {
    background: #3b82f6;
}

@media (min-width: 768px) {
    .carousel-dots {
        display: none;
    }
}
/*la fin de du carrousel*/
.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
}
.spec-item:last-child {
    border-bottom: none;
}
.spec-label {
    font-weight: 500;
    color: #4b5563;
    min-width: 180px;
}
.spec-value {
    color: #111827;
    text-align: right;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.animate-pulse { animation: pulse 2s infinite; }
.animate-bounce { animation: bounce 2s infinite; }

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
}
.spec-item:last-child {
    border-bottom: none;
}
.spec-label {
    font-weight: 500;
    color: #4b5563;
    min-width: 180px;
}
.spec-value {
    color: #111827;
    text-align: right;
    flex: 1;
    max-width: 200px;
    word-break: break-word;
}
