    
body { background:#f8f9fa; font-family:"Open Sans",sans-serif; }
.card { position:relative; overflow:hidden; }
.card-img-top { height:140px; object-fit:cover; } /* réduit la hauteur */
.card-body { padding:6px; background: rgba(255,255,255,0.95); border-top-left-radius:0.5rem; border-top-right-radius:0.5rem; } /* padding réduit */
.card-title { font-size:0.9rem; font-weight:600; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; } /* titre plus petit */
.old-price { text-decoration: line-through; color:#888; font-size:0.8rem; } /* prix original plus petit */
.card-text.fw-bold { color:#d00000; font-weight:bold; font-size:0.9rem; } /* prix soldé un peu plus petit */
.country-menu { overflow-x:auto; white-space:nowrap; padding-bottom:8px; }
.country-menu a { display:inline-block; margin-right:8px; margin-bottom:8px; }

/* ======= 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: 30px; /* réduit la taille */
    height: 30px; /* réduit la taille */
    border-radius: 50%;
    text-align: center;
    line-height: 30px; /* adapte au nouveau height */
    cursor: pointer;
    font-size: 16px; /* légèrement plus petit */
    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: 30px; /* réduit la taille */
    height: 30px; /* réduit la taille */
    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: 16px; /* légèrement plus petit */
    color: white;
}

.card {
    cursor: pointer;
}

/* Largeur cards réduite pour plus de compactage */
@media(min-width:768px){
    .col-lg-2{flex:0 0 16.66%; max-width:16.66%;} /* 6 cards par ligne au lieu de 5 */
}

/* 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 */
    }
}
