.similar-section-wrapper {
	padding: 8px 0%;
}

.similar-section-title {
	font-size: 1.4rem;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
	font-weight: bold;
	background: linear-gradient(180deg, black 0%, #ff8a00 30%, #e52e71 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	margin: 0 0 4px 0;
}

.similar-promotions-scroller {
	display: flex;
	flex-direction: row;
	gap: 4px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
    padding: 0%;
	-webkit-overflow-scrolling: touch;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.similar-promotions-scroller::-webkit-scrollbar {
	display: none;
}

.similar-promotions-scroller::-webkit-scrollbar-track {
	background: #f0f0f0;
	border-radius: 2px;
}

.similar-promotions-scroller::-webkit-scrollbar-thumb {
	background: #ccc;
	border-radius: 2px;
}

.similar-promotions-viewport {
	position: relative;
	width: 100%;
}

.similar-promotions-nav {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	pointer-events: none;
	z-index: 999;
}

/* Boutons nav visibles uniquement sur grand écran */
@media (max-width: 768px) {
    .similar-promotions-nav {
        display: none;
    }
}

@keyframes shimmerBorderGold {
    0%   { box-shadow: 0 0 0 2px #FFD700, 0 0 8px rgba(255, 215, 0, 0.55); }
    50%  { box-shadow: 0 0 0 2.5px #FFC107, 0 0 18px rgba(255, 193, 7, 0.9); }
    100% { box-shadow: 0 0 0 2px #FFD700, 0 0 8px rgba(255, 215, 0, 0.55); }
}

.similar-promotions-nav-btn {
    pointer-events: auto;
    border: 1.5px solid rgba(229, 57, 53, 0.5);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #e53935;
    background: transparent;
    box-shadow: 0 2px 8px rgba(229, 57, 53, 0.12);
    transition: transform 0.22s ease, box-shadow 0.22s ease,
                background 0.22s ease, color 0.22s ease,
                border-color 0.22s ease, opacity 0.22s ease;
    transform: scale(1);
}

.similar-promotions-nav-btn:hover:not([disabled]) {
    border: none;
    background: #e53935;
    color: #FFD700;
    transform: scale(1.12) translateY(-1px);
    animation: shimmerBorderGold 0.9s ease infinite;
}

.similar-promotions-nav-btn[disabled] {
    opacity: 0.3;
    cursor: default;
    transform: scale(0.94);
    pointer-events: none;
}

.similar-promotions-nav-btn.left {
    margin-left: 4px;
}

.similar-promotions-nav-btn.right {
    margin-right: 4px;
}
