/** Shopify CDN: Minification failed

Line 6:0 Unexpected "`"

**/
```css
/* Fichier : ngs-product-page.css */

/* --- TOKENS & VARIABLES --- */
:root {
    --color-background: #FFFFFF;
    --color-foreground: #111111;
    --color-background-1: #fffdec; /* Cards */
    --color-background-2: #F8D7C3; /* Background */
    --color-accent-1: #cc7384;     /* Primary CTA */
    --color-accent-2: #00b67b;     /* Success / Validation */
}

/* --- STYLES SPÉCIFIQUES À LA PAGE --- */
.ngs-buybox-subtext {
    text-align: center;
    margin-top: -20px;
    padding-bottom: 20px;
}
.ngs-label-honest {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.8;
}
.ngs-loss-aversion {
    font-weight: 500;
    margin-top: 10px;
}

.ngs-ritual-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}
.ngs-step {
    border-left: 4px solid var(--color-accent-1);
    padding-left: 1.5rem;
}
.ngs-step h3 {
    margin: 0;
    font-size: 1.2rem;
}
.ngs-step-desc {
    font-weight: normal;
}
.ngs-note-box {
    background-color: var(--color-accent-1);
    color: white;
    padding: 1.5rem;
    text-align: center;
    font-style: italic;
    margin-top: 2rem;
}
.ngs-scarcity-text {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

/* --- STICKY BUY BOX (à activer si besoin) --- */
/*
.ngs-buybox-sticky .featured-product__info {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-background-1);
    padding: 1rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    z-index: 100;
    transform: translateY(100%);
    animation: slideUp 0.5s forwards ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@media (min-width: 750px) {
    .ngs-buybox-sticky .featured-product__info {
        position: static;
        box-shadow: none;
        padding: 0;
        animation: none;
        transform: none;
    }
}
*/