
    body {
        background: #f8f9fa;
    }

    .card-shadow {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .card-shadow:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .thumbnail {
        cursor: pointer;
        max-height: 80px;
        object-fit: cover;
        border-radius: 6px;
    }

    .badge-cat {
        background: #9eeaf9;
        font-size: 0.85rem;
        padding: 0.4em 0.6em;
        color: #3d3434;
    }

    .seller-card {
        border-radius: 12px;
        border: 1px solid #eee;
        padding: 20px;
        background: #fff;
        margin-top: 30px;
    }

    .seller-logo {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 50%;
        margin-right: 15px;
    }

    .publie-par {
        font-weight: bold;
        color: green;
    }

.container{
    margin-top: -25px;
}

/*SIMILAIRE PRODUITS*/
/* GRID plus propre */
.similar-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}

/* CARD */
.similaires-zone .card {
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.similaires-zone .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* IMAGE */
.similaires-zone .card img {
    height: 150px;
    width: 100%;
    object-fit: cover;
}

/* BODY compact */
.similaires-zone .card-body {
    padding: 8px 10px !important;
}

/* TITRE */
.similaires-zone h5 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.2;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* PRIX */
.similaires-zone .text-success {
    font-size: 0.9rem;
    font-weight: bold;
}

/* BADGE */
.similaires-zone .badge {
    font-size: 0.7rem;
    padding: 4px 6px;
    border-radius: 6px;
}

.similaires-zone .card img {
    transition: transform .3s ease;
}

.similaires-zone .card:hover img {
    transform: scale(1.05);
}

/* MOBILE */
@media(max-width: 480px) {
    .similaires-zone .card img {
        height: 115px;
    }
}


/* ======= Veo Link ======= */
/* Icône vidéo en bas à droite */
.video-icon {
    position: absolute;
    bottom: 50%;
    right: 8px;
    background: rgba(0,0,0,0.7);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    cursor: pointer;
    font-size: 18px;
    transition: transform 0.2s, background 0.2s;
    z-index: 1050;
}

.video-icon:hover {
    transform: scale(1.2);
    background: rgba(230, 57, 70, 0.8);
}

/* Mini preview overlay (sur hover image) */
.video-preview {
    position: absolute;
    bottom: 50%;   /* place en bas */
    right: 8px;    /* place à droite */
    width: 35px;
    height: 35px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
    cursor: pointer;
    z-index: 1050;
}

.card:hover .video-preview {
    opacity: 1;
}

.card .video-preview:hover {
    opacity: 0;
}

.video-preview i {
    font-size: 18px;
    color: white;
}


.card {
    cursor: pointer;
}


/* Icône vidéo en bas à droite pour toutes les tailles ≥ 200px */
@media (min-width: 200px) {
    .video-icon {
        bottom: 60%;
    }
    
    .video-preview {
        bottom: 60%;   /* place en bas */
    }

}



/* ⭐ STARS STYLE */
.star-rating {
    display: flex;
    gap: 4px;
    font-size: 1.5rem;
    cursor: pointer;
    position: relative;
}

.star {
    color: #ccc;
    position: relative;
    display: inline-block;
    transition: color 0.2s;
}

.star.filled {
    color: #ffc107;
}

.star.half::before {
    content: '★';
    position: absolute;
    left: 0;
    width: 50%;
    overflow: hidden;
    color: #ffc107;
}

.rating-section{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-left: 20px;
}

.shadow-light {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); /* plus claire et douce */
  }

 .rating-section .badge:hover {
    transition: all 0.3s ease; /* animation fluide */
  }

 .rating-section .badge:hover:hover {
    box-shadow: 0 6px 15px rgba(0,0,0,0.25); /* ombre un peu plus marquée */
    transform: translateY(-2px); /* léger effet flottant */
  }
  
.description-text {
    white-space: pre-wrap; 
    word-wrap: break-word; 
    overflow-wrap: break-word; 
    max-width: 100%; 
    line-height: 1.4; 
    margin-top: -10px;       /* supprime le margin-top */
    margin-bottom: 10px; /* ajuste selon besoin */
}
