.gradient-slider-wrapper { 
    position: relative; 
    width: 100vw; 
    left: 50%;
    transform: translateX(-50%);
    height: 100vh; 
    min-height: 600px; 
    overflow: hidden; 
    background: transparent !important; 
}

.stage { 
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    perspective: 1800px; 
    touch-action: pan-y; 
    cursor: grab;
    mask-image: linear-gradient(to bottom, transparent 2%, black 15%, black 85%, transparent 98%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 2%, black 15%, black 85%, transparent 98%);
}

.stage.dragging { cursor: grabbing; }

.bg-canvas { 
    position: absolute; 
    inset: 0; 
    z-index: 0; 
    width: 100%; height: 100%; 
    display: block; 
    opacity: var(--gradient-opacity, 0.9);
    filter: blur(var(--gradient-blur, 90px)) saturate(var(--gradient-saturation, 140%)); 
    pointer-events: none; 
}

.cards { 
    position: absolute; 
    inset: 0; 
    z-index: 10; 
    transform-style: preserve-3d; 
}

.card { 
    position: absolute; 
    top: 50%; left: 50%; 
    width: var(--card-width, 320px); 
    height: var(--card-height, 480px); 
    margin-left: calc(var(--card-width, 320px) / -2); 
    isolation: isolate; 
    transform-style: preserve-3d; 
    backface-visibility: hidden; 
    will-change: transform, filter; 
    transform-origin: center center; 
    transition: none !important; 
}

/* Le conteneur HTML global de la carte doit être transparent */
.card__content { 
    width: 100%; height: 100%; 
    position: relative; 
    overflow: hidden; 
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.gp-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--card-padding, 20px);
    gap: var(--card-gap, 12px);
    border-radius: var(--card-radius, 32px);
    background-color: var(--card-bg-color, rgba(255, 255, 255, 0.95));
    transition: background-color 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    box-sizing: border-box;
}

.gp-link-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--card-gap, 12px);
    width: 100%;
    text-decoration: none !important;
    color: inherit !important;
    cursor: pointer;
}

.gp-badge {
    position: absolute;
    width: var(--badge-size, 40px);
    height: var(--badge-size, 40px);
    object-fit: contain;
    z-index: 5;
}
.gp-badge--top-left { top: 12px; left: 12px; }
.gp-badge--top-right { top: 12px; right: 12px; }
.gp-badge--bottom-left { bottom: 12px; left: 12px; }
.gp-badge--bottom-right { bottom: 12px; right: 12px; }

.gp-image-wrap {
    width: 100%;
    height: var(--card-image-height, 250px);
    flex: 0 0 auto;
    border-radius: var(--image-radius, 24px);
    overflow: hidden;
}
.gp-image {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: cover;
    object-position: center center;
    display: block !important;
    box-sizing: border-box;
}

.gp-title {
    margin: 0;
    line-height: 1.25;
    color: #ffffff;
}
.gp-title.gp-dynamic-color {
    color: rgba(var(--card-color-rgb, 255, 255, 255), var(--title-dynamic-opacity, 1));
}

.gp-price {
    color: #ffffff;
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}
.gp-price.gp-dynamic-color {
    color: rgba(var(--card-color-rgb, 255, 255, 255), var(--price-dynamic-opacity, 1));
}
.gp-price-old { opacity: 0.6; }
.gp-price--old-strikethrough .gp-price-old { text-decoration: line-through; }
.gp-price--old-underline .gp-price-old { text-decoration: underline; }
.gp-price--old-none .gp-price-old { text-decoration: none; }
.gp-price-new { font-weight: 600; }
.gp-price-percent { font-weight: 600; }
.gp-price del { opacity: 0.6; }
.gp-price ins { text-decoration: none; }

.gp-btn-cart {
    display: inline-block;
    margin-top: auto;
    color: #ffffff;
    background: #F28B74;
    border-radius: 50px;
    padding: 14px 28px;
    text-decoration: none !important;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}
.gp-btn-cart.gp-btn-cart--text-dynamic {
    color: rgba(var(--card-color-rgb, 255, 255, 255), var(--button-text-dynamic-opacity, 1)) !important;
}
.gp-btn-cart.gp-btn-cart--bg-dynamic {
    background: rgba(var(--card-color-rgb, 242, 139, 116), var(--button-bg-dynamic-opacity, 1)) !important;
}
.gp-btn-cart.gp-btn-cart--text-dynamic-hover:hover {
    color: rgba(var(--card-color-rgb, 255, 255, 255), var(--button-text-dynamic-opacity-hover, 1)) !important;
}
.gp-btn-cart.gp-btn-cart--bg-dynamic-hover:hover {
    background: rgba(var(--card-color-rgb, 242, 139, 116), var(--button-bg-dynamic-opacity-hover, 1)) !important;
}

.card.is-zooming { 
    position: fixed !important; 
    top: 0 !important; left: 0 !important; 
    width: 100vw !important; height: 100vh !important; 
    z-index: 99999 !important; 
    transform: translate3d(0,0,0) scale(1.05) !important; 
    opacity: 0; 
    margin: 0 !important; padding: 0 !important; 
    border-radius: 0 !important; 
    transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1) !important;
}