/* Conteneur du slider interactif */
.prettycat-slider {
    display: flex;
    flex-wrap: nowrap; /* Force l'alignement horizontal */
    gap: 20px;
    padding: 20px;
    overflow-x: auto; /* Permet le défilement */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* Fluidité sur iPhone */
}

/* Cache la barre de défilement pour un look moderne */
.prettycat-slider::-webkit-scrollbar {
    display: none;
}
.prettycat-slider {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Carte produit Oscar */
.product-card-oscar {
    position: relative;
    flex: 0 0 260px; /* Largeur fixe pour chaque produit dans le slider */
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none !important;
}

.product-card-oscar:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(36, 185, 215, 0.2);
}

/* Gestion de l'image */
.prettycat-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.prettycat-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-oscar:hover img {
    transform: scale(1.1);
}

/* Overlay avec le bleu Covin AG au survol */
.prettycat-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    padding: 20px;
    text-align: center;
    opacity: 0.9;
    transition: background 0.3s ease;
}

.product-card-oscar:hover .prettycat-overlay {
    background: linear-gradient(to top, rgba(36, 185, 215, 0.9) 0%, transparent 100%);
}

/* Titre du produit */
.prettycat-title {
    color: #333333 !important;
    font-weight: bold;
    font-size: 1rem;
    display: block;
    margin: 10px 0;
    padding: 0 10px;
    text-align: center;
}

/* Bouton interactif */
.prettycat-btn {
    display: inline-block;
    padding: 6px 15px;
    background: #ffffff;
    color: #24b9d7 !important;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Style pour la section présentation Covin AG (Genève / Zurich) */
#covin-presentation {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}