/* =========================
   PAGE HERO
========================= */

.shop-hero {
    background: var(--accent);
    padding: 3rem 2rem 5.5rem;
    position: relative;
    overflow: hidden;
}

section.shop-hero i {
    font-size: 10rem;
    color: rgb(255 255 255 / 16%);
}

.shop-hero-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 43rem;
    margin: auto;
}

#shop-root a.block-link {
    margin: 0.75rem 0;
}

.shop-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.shop-hero__label {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.shop-hero__title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: white;
    line-height: 1.0;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.shop-hero__title span {
    color: rgba(255, 255, 255, 0.55);
}

.shop-hero__sub {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
}

#shop-root nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    padding: 0 2rem;
    margin: 0;
}

#shop-root .block-button {
    display: flex;
    justify-content: center;
    margin-right: 11rem;
    align-items: flex-start;
    position: absolute;
    right: 1.5rem;
    padding: 0 1rem 0 0;
    background-size: 1.5rem;
    background-position: 100% 0.1rem;
    flex-direction: row;
    top: 0.5rem;
}

nav div {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-right: 2rem;
}

.shop-features-strip {
    background: #2d2880;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.shop-features-strip__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    font-family: 'Courier New', monospace;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
}

.shop-features-strip__item:last-child {
    border-right: none;
}

/* =========================
   SHOP SECTION
========================= */

.shop-section {
    padding: 3.5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.shop-section__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 1rem;
}

/* Réutilise h2 de main.css avec surcharge couleur */
.shop-section__head h2 {
    color: var(--text);
    margin-bottom: 0;
    font-size: 1.75rem;
}

.shop-section__meta {
    font-family: 'Courier New', monospace;
    font-size: 0.68rem;
    color: var(--muted);
    letter-spacing: 0.1em;
}

/* =========================
   PRODUCTS GRID
========================= */

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .products-grid { grid-template-columns: 1fr; }
}

/* =========================
   PRODUCT CARD
   Étend : .card.alpine-card de components.css
========================= */

.product-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transition: 0.2s;
    overflow: hidden;
    box-shadow: 0 4px 8px rgb(34 34 34 / 8%);
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 8px 32px rgba(62, 58, 171, 0.12);
}

/* Image zone */
.product-card__img-wrap {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    position: relative;
}

/* Badge - pattern .pricing-badge-top de components.css */
.product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 999px;
}

.product-card__badge--flagship {
    background: #2d2880;
}

.product-card__img {
    max-height: 160px;
    width: auto;
    margin: auto;
    object-fit: contain;
    filter: drop-shadow(0 6px 16px rgba(62, 58, 171, 0.12));
    transition: transform 0.3s;
    max-width: unset; /* override img global de main.css */
}

.product-card:hover .product-card__img {
    transform: scale(1.04);
}

.product-card__img-placeholder {
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    opacity: 0.25;
    width: 120px;
    height: 120px;
}

/* Body */
.product-card__body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.product-card__cat {
    font-family: 'Courier New', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

/* Réutilise .pricing-label de components.css */
.product-card__name {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 0.6rem;
}

.product-card__desc {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 1rem;
    flex: 1;
}

/* Specs - étend .container-desc de components.css */
.product-card__specs {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-card__spec-row {
    display: flex;
    justify-content: space-between;
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: var(--text);
}

.product-card__spec-key {
    color: var(--muted);
}

/* Prix - étend .pricing-price de components.css */
.product-card__price-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.product-card__price {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: -0.04em;
    line-height: 1;
}

.product-card__price sup {
    font-size: 1rem;
    font-weight: 600;
    vertical-align: super;
}

.product-card__price-ht {
    font-family: 'Courier New', monospace;
    font-size: 0.65rem;
    color: var(--muted);
    letter-spacing: 0.05em;
}

/* Actions */
.product-card__actions {
    display: flex;
    gap: 8px;
}

/* Qty - étend button.primary de main.css */
.product-card__qty {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.product-card__qty-btn {
    width: 32px;
    height: 40px;
    background: var(--bg);
    border: none;
    font-size: 1rem;
    color: var(--accent);
    cursor: pointer;
    transition: 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card__qty-btn:hover {
    background: #ededfa;
}

.product-card__qty-val {
    width: 32px;
    text-align: center;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    font-weight: 600;
    border: none;
    outline: none;
    background: #fff;
    color: var(--text);
}

/* CTA - étend .pricing-cta--dark de components.css */
.product-card__btn-add {
    flex: 1;
    height: 40px;
    background: var(--accent);
    color: #fff;
    border: 2px solid var(--accent);
    border-radius: 4px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.product-card__btn-add:hover {
    background: #2d2880;
    border-color: #2d2880;
}

.product-card__btn-add.added {
    background: var(--ok);
    border-color: var(--ok);
}

.product-card__btn-download {
    flex: 1;
    height: 40px;
    border: 1.5px solid var(--accent);
    color: var(--accent);
    background: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Archivo Black', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 8px;
}

.product-card__btn-download:hover {
    background: #f5f4ff;
}

.product-card__btn-download[aria-disabled='true'],
.product-card__btn-download.is-disabled {
    opacity: 0.45;
    pointer-events: none;
}

/* =========================
   CART PANEL
========================= */

.cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(17, 24, 39, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
    backdrop-filter: blur(2px);
}

.cart-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.cart-panel {
    position: fixed;
    right: 0; top: 0; bottom: 0;
    z-index: 201;
    width: min(460px, 100vw);
    background: #fff;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 32px rgba(62, 58, 171, 0.1);
}

.cart-panel.open {
    transform: translateX(0);
}

.cart-panel__head {
    background: var(--accent);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-panel__title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: white;
}

.cart-panel__close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.15s;
    padding: 0;
}

.cart-panel__close:hover {
    color: white;
}

.cart-panel__body {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem 1.5rem;
}

.cart-panel__empty {
    text-align: center;
    padding: 3.5rem 0;
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 0.1em;
}

/* Cart item - étend .feature-card */
.cart-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
}

.cart-item__info { flex: 1; }

.cart-item__name {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text);
    letter-spacing: 0.01em;
    margin-bottom: 3px;
}

.cart-item__price {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: var(--muted);
}

.cart-item__remove {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
    font-size: 0.85rem;
    padding: 4px;
    transition: color 0.15s;
}

.cart-item__remove:hover {
    color: #ef4444;
}

.cart-panel__foot {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--border);
}

/* Totaux - étend .pricing-price / .pricing-detail */
.cart-totals {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: var(--muted);
}

.cart-total-row--main {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--accent);
    text-transform: uppercase;
    padding-top: 8px;
    border-top: 2px solid var(--border);
    margin-top: 4px;
}

.cart-total-row--vat {
    font-size: 0.65rem;
    opacity: 0.6;
}

/* Checkout btn - étend .pricing-cta--dark */
.btn-checkout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    border-radius: 8px;
    border: 2px solid var(--accent);
    background: var(--accent);
    color: #fff;
    font-family: 'Archivo Black', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 8px;
    transition: 0.2s ease;
    text-decoration: none;
}

.btn-checkout:hover {
    background: #2d2880;
    border-color: #2d2880;
}

.btn-checkout:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* =========================
   CHECKOUT MODAL
========================= */

.checkout-overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(17, 24, 39, 0.65);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 1rem;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
    backdrop-filter: blur(3px);
}

.checkout-overlay.open {
    opacity: 1;
    pointer-events: all;
}

/* Étend .pricing-card de components.css */
.checkout-modal {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    width: 100%;
    max-width: 660px;
    overflow: hidden;
    transform: translateY(16px);
    transition: transform 0.3s;
    box-shadow: 0 12px 40px rgba(62, 58, 171, 0.15);
}

.checkout-overlay.open .checkout-modal {
    transform: translateY(0);
}

.checkout-modal__head {
    background: var(--accent);
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkout-modal__title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: white;
}

.checkout-modal__close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.15s;
    padding: 0;
}

.checkout-modal__close:hover { color: white; }

.checkout-modal__body { padding: 2rem; }

/* Steps */
.checkout-steps {
    display: flex;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1.25rem;
}

.checkout-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    position: relative;
}

.checkout-step::after {
    content: '';
    position: absolute;
    top: 11px; left: 50%; right: -50%;
    height: 1px;
    background: var(--border);
    z-index: 0;
}

.checkout-step:last-child::after { display: none; }

.checkout-step__num {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--border);
    color: var(--muted);
    font-family: 'Courier New', monospace;
    font-size: 0.65rem;
    font-weight: 600;
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 1;
    transition: all 0.2s;
}

.checkout-step.active .checkout-step__num {
    background: var(--accent);
    color: white;
}

.checkout-step.done .checkout-step__num {
    background: var(--ok);
    color: white;
}

.checkout-step__lbl {
    font-family: 'Courier New', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.checkout-step.active .checkout-step__lbl {
    color: var(--accent);
    font-weight: 600;
}

/* Step content */
.checkout-step-content { display: none; }
.checkout-step-content.active { display: block; }

/* =========================
   FORM ELEMENTS
   Étend button.primary de main.css
========================= */

.form-block { margin-bottom: 1.5rem; }

.form-block__title {
    font-family: 'Courier New', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0dff8;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.form-grid .full { grid-column: 1 / -1; }

@media (max-width: 640px) {
    .form-grid { grid-template-columns: 1fr; }
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-field label {
    font-family: 'Courier New', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.form-field input,
.form-field select,
.form-field textarea {
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.5rem 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--text);
    background: #fff;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(62, 58, 171, 0.12);
}

.form-field textarea {
    resize: vertical;
    min-height: 70px;
}

.form-check-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--muted);
    cursor: pointer;
    margin-bottom: 1rem;
}

.form-check-label input[type="checkbox"] {
    cursor: pointer;
    accent-color: var(--accent);
}

/* =========================
   PAYMENT OPTIONS
   Étend .pricing-card de components.css
========================= */

.pay-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.95rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 480px) {
    .pay-options { grid-template-columns: 1fr; }
}

.pay-option {
    border: 1px solid #edf0f6;
    border-radius: 18px;
    padding: 1.15rem 1.25rem 1.1rem 3.2rem;
    cursor: pointer;
    transition: 0.15s;
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0.45rem 1rem;
    min-height: 124px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.pay-option:hover {
    border-color: #d8dff0;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
}

.pay-option.selected {
    border-color: #ccd8ff;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(80, 112, 255, 0.12);
}

.pay-option input { display: none; }

.pay-option__icon {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    grid-column: 2;
    grid-row: 1 / span 3;
    min-width: 112px;
    text-align: right;
}

.pay-option__icon i {
    font-size: 2rem;
}

.pay-option__icon .trinity-payment-icon--wire {
    color: #607089;
}

.pay-option__icon .trinity-payment-icon--crypto {
    color: #f7931a;
}

.pay-option__icon img {
    width: 4.5rem;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.pay-option__icon .trinity-payment-logo--litecoin {
    width: 3.5rem;
}

.pay-option__logo {
    width: auto;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 560px) {
    .pay-option {
        padding: 1rem 1rem 1rem 3rem;
        min-height: 108px;
    }

    .pay-option__icon {
        min-width: 80px;
    }

    .pay-option__icon img {
        width: 3.5rem;
    }
}

/* Étend .pricing-label */
.pay-option__name {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    grid-column: 1;
    grid-row: 1;
}

.pay-option__desc {
    font-size: 0.8rem;
    color: #8a92a6;
    margin-top: 0.1rem;
    line-height: 1.45;
    grid-column: 1;
    grid-row: 2;
}

/* Étend .pricing-badge-top */
.pay-option__check {
    position: absolute;
    top: 1.2rem;
    left: 1rem;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #d5dbeb;
    color: transparent;
    font-size: 0;
    display: flex;
    align-items: center; justify-content: center;
}

.pay-option.selected .pay-option__check {
    border-color: #4b67f2;
    box-shadow: inset 0 0 0 4px #4b67f2;
}

/* Wire transfer box - étend .container-desc */
.wire-box {
    background: #f0effc;
    border: 1px solid #e0dff8;
    border-left: 3px solid var(--accent);
    border-radius: 4px;
    padding: 1rem;
    margin-top: 0.75rem;
    display: none;
}

.wire-box.visible { display: block; }

.wire-box__title {
    font-family: 'Courier New', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.6rem;
}

.wire-row {
    display: flex;
    gap: 10px;
    font-size: 0.82rem;
    margin-bottom: 4px;
}

.wire-row__key {
    font-family: 'Courier New', monospace;
    font-size: 0.68rem;
    color: var(--muted);
    min-width: 80px;
}

.wire-row__val { color: var(--text); font-weight: 600; }

/* =========================
   ORDER RECAP
   Étend .pricing-card
========================= */

.order-recap {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}

.order-recap__title {
    font-family: 'Courier New', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.order-recap__item {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    padding: 5px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.order-recap__item:last-child { border-bottom: none; }

/* Étend .pricing-price */
.order-recap__total {
    display: flex;
    justify-content: space-between;
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--accent);
    text-transform: uppercase;
    padding-top: 0.6rem;
    margin-top: 4px;
    border-top: 2px solid var(--accent);
}

/* =========================
   MODAL NAV BUTTONS
   Étend button.primary / .pricing-cta de components.css
========================= */

.modal-nav {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    margin-top: 1.5rem;
}

.btn-back {
    height: 40px;
    padding: 0 1.25rem;
    background: none;
    border: 1px solid var(--border);
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--muted);
    transition: all 0.15s;
}

.btn-back:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Étend .pricing-cta--dark */
.btn-next {
    height: 40px;
    padding: 0 1.5rem;
    background: var(--accent);
    color: white;
    border: 2px solid var(--accent);
    border-radius: 8px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn-next:hover {
    background: #230a6a;
    border-color: #230a6a;
}

.btn-next:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* =========================
   ALERTS
========================= */

.alert {
    padding: 0.6rem 0.875rem;
    border-radius: 4px;
    font-size: 0.82rem;
    margin-bottom: 0.75rem;
}

.alert-error,
.alert--error {
    background: #fef2f2;
    border-left: 3px solid #ef4444;
    color: #ef4444;
}

/* =========================
   CONFIRMATION
========================= */

.confirm-block {
    text-align: center;
    padding: 2rem 0;
}

.confirm-block__icon {
    font-size: 2.75rem;
    display: block;
    margin-bottom: 1rem;
}

/* Étend .pricing-badge-top */
.confirm-block__ref {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: var(--accent);
    letter-spacing: 0.12em;
    margin-bottom: 0.4rem;
}

.confirm-block__title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.confirm-block__text {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.7;
    max-width: 380px;
    margin: 0 auto 1.5rem;
}

/* Étend .container-desc */
.wire-confirm {
    background: #f0effc;
    border: 1px solid #e0dff8;
    border-left: 3px solid var(--accent);
    border-radius: 4px;
    padding: 1.25rem;
    max-width: 420px;
    margin: 0 auto;
    text-align: left;
}

/* =========================
   LOADING SPINNER
========================= */

.spinner {
    display: inline-block;
    width: 14px; height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* =========================
   INFO STRIP FOOTER
========================= */

.shop-info-strip {
    background: #2d2880;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 100%;
}

@media (max-width: 768px) {
    .shop-info-strip { grid-template-columns: 1fr; padding: 2rem; }
}

.shop-info-strip__title {
    font-family: 'Courier New', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.75rem;
}

.shop-info-strip__text {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.8;
}

/* =========================
   NAV CART BUTTON
   Étend header styles de main.css
========================= */

.nav-cart-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--accent);
    border: none;
    border-radius: 4px;
    padding: 0.25rem 1rem;
    font-family: 'Archivo Black', sans-serif;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.15s;
}

.nav-cart-btn:hover { background: #ededfa; }

.nav-cart-btn__badge {
    background: var(--accent);
    color: white;
    border-radius: 50%;
    width: 18px; height: 18px;
    font-size: 0.62rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
