.cZ-wrapper {
	position: relative;
	width: 85%;       /* toujours 100% largeur */
	max-width: none;
	box-sizing: border-box;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}

.cZ-container {
    overflow-x: hidden;
    scroll-behavior: smooth;
    white-space: nowrap;
    padding-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
}

/* Masquer scrollbar */
.cZ-container::-webkit-scrollbar {
    display: none;
}
.cZ-container {
    scrollbar-width: none;
}

.cZ-card {
    display: inline-block;
    width: 200px; /* largeur par défaut PC */
    margin-right: 10px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    vertical-align: top;
    opacity: 0;
    transform: translateX(50px);
    animation: slideIn 0.6s ease forwards;
}

.cZ-card img:hover {
    animation: vibrer 0.15s linear infinite;
    cursor: pointer;
}

.cZ-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}

.cZ-title {
    padding: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}

.cZ-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
    user-select: none;
}

.cZ-arrow:hover {
    background-color: #ddd;
}

.cZ-arrow-left { left: -20px; }
.cZ-arrow-right { right: -20px; }

@keyframes slideIn {
    to { transform: translateX(0); opacity: 1; }
}

@keyframes vibrer {
    0% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    50% { transform: translateX(2px); }
    75% { transform: translateX(-2px); }
    100% { transform: translateX(0); }
}

.cZ-scrollbar {
	margin: 15px auto 0 auto;
	width: 85%;       /* toujours 100% */
	max-width: none;
}

#cZ-scrollRange {
	width: 100%;
}

/* PLUS BESOIN DE MEDIA QUERIES */
/* Tout est responsive, 100% largeur, aucun vide */
