/* ═══════════════════════════════════════════════════════════
   Product page — layout compact e-commerce.
   Gauche : carousel + info. Droite : sticky buy panel.
   ═══════════════════════════════════════════════════════════ */

/* Back link */
.product-back {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 1.25rem;
    transition: all 0.2s ease;
}
.product-back:hover {
    background: rgba(var(--primary-rgb), 0.08);
    border-color: rgba(var(--primary-rgb), 0.25);
    color: var(--primary);
}

/* ── Layout : desktop 2 colonnes, mobile stacked ─────────── */
.product-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}
@media (min-width: 1024px) {
    .product-layout {
        grid-template-columns: minmax(0, 1.4fr) minmax(320px, 1fr);
        gap: 2rem;
        align-items: start;
    }
}

/* ═══════════════════════════════════════════════════════════
   CAROUSEL
   ═══════════════════════════════════════════════════════════ */
.product-carousel {
    position: relative;
    margin-bottom: 1.5rem;
}
.product-carousel-viewport {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 16px;
    overflow: hidden;
    background:
        radial-gradient(ellipse at center, rgba(var(--primary-rgb), 0.06) 0%, transparent 70%),
        rgba(10, 10, 12, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.5);
}
.product-slide img {
    /* object-fit: contain garde le ratio de l'image originale, letterboxing si nécessaire.
       Évite de déformer une image petite/carrée en la stretchant en 16:10. */
    object-fit: contain;
    background:
        radial-gradient(ellipse at center, rgba(var(--primary-rgb), 0.08) 0%, transparent 65%),
        #0a0a0c;
    padding: 8px;
}
.product-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-slide.is-active {
    opacity: 1;
    visibility: visible;
}
.product-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Placeholder slides */
.product-slide-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
}
.product-slide-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}
.product-slide-placeholder-label {
    position: relative;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.product-slide-placeholder-hint {
    position: relative;
    color: rgba(255, 255, 255, 0.3);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Status badges overlay */
.product-slide-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
    z-index: 5;
    flex-wrap: wrap;
}

/* Prev / next nav */
.product-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 6;
    opacity: 0;
}
.product-carousel:hover .product-carousel-nav {
    opacity: 1;
}
.product-carousel-nav:hover {
    background: rgba(var(--primary-rgb), 0.6);
    border-color: rgba(var(--primary-rgb), 0.8);
    transform: translateY(-50%) scale(1.05);
}
.product-carousel-nav.prev { left: 12px; }
.product-carousel-nav.next { right: 12px; }

/* Thumb strip */
.product-carousel-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 2px;
}
.product-carousel-thumbs::-webkit-scrollbar { display: none; }
.product-thumb {
    flex-shrink: 0;
    width: 70px;
    height: 44px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
    opacity: 0.55;
}
.product-thumb:hover { opacity: 0.85; border-color: rgba(255, 255, 255, 0.15); }
.product-thumb.is-active {
    opacity: 1;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.15);
}
.product-thumb img,
.product-thumb-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ═══════════════════════════════════════════════════════════
   TITLE BLOCK (sous le carousel)
   ═══════════════════════════════════════════════════════════ */
.product-title-block {
    padding: 0.5rem 0;
}
.product-platform-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(102, 192, 244, 0.08);
    border: 1px solid rgba(102, 192, 244, 0.2);
    color: #66c0f4;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.product-version {
    color: rgba(255, 255, 255, 0.35);
    font-family: var(--font-mono);
    font-size: 10px;
}
.product-h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    color: white;
}
.product-tagline {
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.product-description {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 620px;
}

/* Highlights row inline */
.product-highlights {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

/* Info cards — Requirements + What you get, juste sous les highlights */
.product-info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 4px;
}
@media (min-width: 640px) {
    .product-info-cards { grid-template-columns: 1fr 1fr; }
}
.product-highlight-value {
    color: white;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 3px;
}
.product-highlight-label {
    color: rgba(255, 255, 255, 0.35);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   BUY PANEL (sticky sidebar)
   ═══════════════════════════════════════════════════════════ */
.product-buy-column {
    position: relative;
}
@media (min-width: 1024px) {
    .product-buy-column {
        position: sticky;
        top: 140px;   /* Sous la topbar (~120px) */
    }
}
.product-buy-panel {
    background: rgba(12, 12, 12, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.25rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.product-buy-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.6;
    pointer-events: none;
}

.product-buy-unavailable {
    text-align: center;
    padding: 1.5rem 0.5rem;
}

.product-buy-header {
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ═══════════════════════════════════════════════════════════
   Plan selector — cards avec custom check circle
   ═══════════════════════════════════════════════════════════ */
.plan-selector-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 1.25rem;
}
.plan-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1.5px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.plan-option:hover {
    border-color: rgba(var(--primary-rgb), 0.35);
    background: rgba(var(--primary-rgb), 0.04);
}
.plan-option.is-active {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.07);
    box-shadow:
        0 0 0 4px rgba(var(--primary-rgb), 0.08),
        0 8px 20px -10px rgba(var(--primary-rgb), 0.35);
}
/* Best value : plus de trait orange, uniquement le badge inline */
.plan-option input[type=radio] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Custom check circle */
.plan-option-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.22s ease;
    position: relative;
}
.plan-option-radio-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    transform: scale(0);
    transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 12px rgba(var(--primary-rgb), 0.6);
}
.plan-option:hover .plan-option-radio {
    border-color: rgba(var(--primary-rgb), 0.4);
}
.plan-option.is-active .plan-option-radio {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.1);
}
.plan-option.is-active .plan-option-radio-dot {
    transform: scale(1);
}

.plan-option-info {
    flex: 1;
    min-width: 0;
}
.plan-option-label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    flex-wrap: wrap;
}
.plan-option-best-tag {
    display: inline-flex;
    align-items: center;
    padding: 2px 7px;
    border-radius: 5px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(251, 191, 36, 0.08));
    border: 1px solid rgba(251, 191, 36, 0.35);
    color: #fbbf24;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.15);
}
.plan-option-sub {
    color: rgba(255, 255, 255, 0.42);
    font-size: 11px;
    font-weight: 600;
    margin-top: 3px;
    letter-spacing: 0;
    text-transform: none;
}
.plan-option-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
}
.plan-option-save {
    display: inline-flex;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #4ade80;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}
.plan-option-price-row {
    display: flex;
    align-items: baseline;
    gap: 3px;
}
.plan-option-amount {
    color: white;
    font-size: 19px;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
}
.plan-option-cur {
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   Payment tabs — horizontal row avec icon + body + check
   ═══════════════════════════════════════════════════════════ */
.pay-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 1.25rem;
}
.pay-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1.5px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    text-align: left;
    overflow: hidden;
    min-width: 0;
}
.pay-tab:hover:not(.is-disabled):not(.is-active) {
    border-color: rgba(var(--primary-rgb), 0.3);
    background: rgba(var(--primary-rgb), 0.03);
}
.pay-tab.is-active {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.07);
    box-shadow:
        0 0 0 4px rgba(var(--primary-rgb), 0.08),
        0 8px 20px -10px rgba(var(--primary-rgb), 0.35);
}
.pay-tab.is-disabled {
    opacity: 0.55;
    cursor: not-allowed;
}
.pay-tab-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.22s ease;
}
.pay-tab-icon--crypto {
    background: linear-gradient(135deg, rgba(247, 147, 26, 0.2), rgba(247, 147, 26, 0.08));
    border: 1px solid rgba(247, 147, 26, 0.3);
    color: #f7931a;
}
.pay-tab-icon--card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(37, 99, 235, 0.06));
    border: 1px solid rgba(37, 99, 235, 0.28);
    color: #60a5fa;
}
.pay-tab.is-disabled .pay-tab-icon {
    filter: grayscale(0.6);
    opacity: 0.7;
}
.pay-tab.is-active .pay-tab-icon {
    transform: scale(1.05);
}
.pay-tab-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}
.pay-tab-title {
    color: white;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1.1;
}
.pay-tab.is-disabled .pay-tab-title {
    color: rgba(255, 255, 255, 0.55);
}
.pay-tab-hint {
    color: rgba(255, 255, 255, 0.42);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pay-tab.is-active .pay-tab-hint {
    color: rgba(255, 255, 255, 0.65);
}
.pay-tab-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0);
    transition: all 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.5);
}
.pay-tab.is-active .pay-tab-check {
    opacity: 1;
    transform: scale(1);
}
.pay-tab-soon {
    display: inline-flex;
    padding: 3px 7px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.55);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    flex-shrink: 0;
}

/* Fields */
.buy-field {
    margin-bottom: 1rem;
}
.buy-label {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.buy-input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 13px;
    font-weight: 500;
    transition: border-color 0.2s ease;
}
.buy-input:focus {
    outline: none;
    border-color: rgba(var(--primary-rgb), 0.5);
    background: rgba(var(--primary-rgb), 0.03);
}
.buy-input::placeholder { color: rgba(255, 255, 255, 0.25); }
.buy-hint {
    color: rgba(255, 255, 255, 0.3);
    font-size: 10px;
    margin-top: 4px;
}

/* Total row */
.buy-total-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 12px 0;
    margin: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.buy-total-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.buy-total-value {
    color: white;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

/* Trust list */
.buy-trust {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 12px 10px 0;
    list-style: none;
    margin: 0;
}
.buy-trust li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    font-weight: 600;
}

.buy-tos {
    color: rgba(255, 255, 255, 0.25);
    font-size: 9px;
    text-align: center;
    margin-top: 12px;
    line-height: 1.5;
}
.buy-tos a {
    color: rgba(var(--primary-rgb), 0.7);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.buy-tos a:hover { color: var(--primary); }

/* Help link below buy panel */
.product-buy-help {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    padding: 10px;
    border-radius: 10px;
    background: transparent;
    border: 1px dashed rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}
.product-buy-help span { color: var(--primary); font-weight: 800; }
.product-buy-help:hover {
    background: rgba(var(--primary-rgb), 0.03);
    border-color: rgba(var(--primary-rgb), 0.2);
    color: rgba(255, 255, 255, 0.7);
}

/* ═══════════════════════════════════════════════════════════
   BELOW-FOLD SECTIONS
   ═══════════════════════════════════════════════════════════ */
.product-section {
    margin-top: 3rem;
}
.product-section-head {
    text-align: center;
    margin-bottom: 1.5rem;
}
.product-section-title {
    color: white;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}
.product-section-sub {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}
.product-section-mini-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════════════════
   Features accordion — chaque feature = ligne dépliable.
   ═══════════════════════════════════════════════════════════ */
.product-features-accordion {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 720px;
    margin: 0 auto;
}
.product-feature-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-feature-item:hover {
    border-color: rgba(var(--primary-rgb), 0.2);
    background: rgba(var(--primary-rgb), 0.02);
}
.product-feature-item[open] {
    border-color: rgba(var(--primary-rgb), 0.3);
    background: rgba(var(--primary-rgb), 0.04);
}
.product-feature-summary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    cursor: pointer;
    list-style: none;
    user-select: none;
}
.product-feature-summary::-webkit-details-marker { display: none; }
.product-feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: rgba(var(--primary-rgb), 0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.22s ease;
}
.product-feature-item[open] .product-feature-icon {
    background: rgba(var(--primary-rgb), 0.18);
    border-color: rgba(var(--primary-rgb), 0.35);
    box-shadow: 0 0 12px rgba(var(--primary-rgb), 0.15);
}
.product-feature-name {
    flex: 1;
    color: white;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    min-width: 0;
}
.product-feature-chevron {
    color: rgba(255, 255, 255, 0.35);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}
.product-feature-item[open] .product-feature-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}
.product-feature-body {
    padding: 0 14px 14px 60px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    line-height: 1.6;
    animation: featureExpand 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes featureExpand {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Requirements / includes tags */
.product-req-tag {
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════════
   Signed-in banner (buy panel top)
   ═══════════════════════════════════════════════════════════ */
.product-signed-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    margin: -4px -4px 14px -4px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1), rgba(88, 101, 242, 0.03));
    border: 1px solid rgba(88, 101, 242, 0.25);
}
.product-signed-avatar,
.product-signed-avatar-fallback {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
}
.product-signed-avatar-fallback {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.4), rgba(88, 101, 242, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 13px;
    font-weight: 900;
}
.product-signed-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.product-signed-label {
    color: rgba(255, 255, 255, 0.45);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.product-signed-name {
    color: white;
    font-size: 13px;
    font-weight: 800;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.product-signed-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #4ade80;
    color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.4);
}

/* Discord CTA variant (Sign in with Discord to buy) */
.shop-cta--discord {
    background: linear-gradient(135deg, #5865f2, #4752c4) !important;
    color: white !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 6px 20px -6px rgba(88, 101, 242, 0.55) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.shop-cta--discord:hover {
    box-shadow: 0 12px 28px -8px rgba(88, 101, 242, 0.75) !important;
    filter: brightness(1.08);
}

/* ═══════════════════════════════════════════════════════════
   Features + Requirements 2-column layout
   ═══════════════════════════════════════════════════════════ */
.product-features-req-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    align-items: start;
}
@media (min-width: 900px) {
    .product-features-req-grid {
        grid-template-columns: minmax(0, 1.7fr) minmax(280px, 1fr);
        gap: 2rem;
    }
}

/* Section mini-head (icon + eyebrow + h2 alignés à gauche) */
.product-section-mini-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.25rem;
}
.product-section-mini-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.2), rgba(var(--primary-rgb), 0.08));
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.15);
}
.product-section-mini-eyebrow {
    display: block;
    color: rgba(255, 255, 255, 0.4);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 4px;
}
.product-section-mini-h2 {
    color: white;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 0;
}

/* Side cards (Requirements + Includes) */
.product-side-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.product-side-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}
.product-side-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.4), transparent);
    opacity: 0.5;
}
.product-side-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.product-side-head-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: rgba(var(--primary-rgb), 0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.25);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.product-side-eyebrow {
    display: block;
    color: rgba(255, 255, 255, 0.4);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.product-side-h3 {
    color: white;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin: 0;
    line-height: 1.1;
}
.product-side-body {
    padding: 14px;
}
.product-side-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.product-side-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    line-height: 1.4;
}
.product-side-list li svg {
    color: #4ade80;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   Features accordion — surcharge pour ajouter le numéro
   ═══════════════════════════════════════════════════════════ */
.product-feature-num {
    color: rgba(var(--primary-rgb), 0.4);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    flex-shrink: 0;
    min-width: 22px;
    transition: color 0.22s ease;
}
.product-feature-item[open] .product-feature-num,
.product-feature-item:hover .product-feature-num {
    color: var(--primary);
}
/* Ajuste padding body pour aligner sous l'icon (num + icon = 22 + 8 + 32 = 62px) */
.product-feature-body {
    padding-left: 76px;
}

/* Live badge (users online, remplace fake reviews) */
.product-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #4ade80;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.05em;
}
.product-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px currentColor;
    animation: livePulse 1.8s ease-in-out infinite;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.5; transform: scale(0.85); }
}
