/* --- TITRES --- */
.shop-title {
    text-align:center;
    margin-top:40px;
    font-size:32px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#0ff;
    opacity:0.9;
}

/* --- PRODUITS --- */
.products {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;
    padding:40px 20px;
}

.product {
    background:#141414cc;
    border:1px solid #0ff4;
    border-radius:12px;
    padding:20px;
    width:280px;
    text-align:center;
    backdrop-filter:blur(6px);
    box-shadow:0 0 12px #0ff2;
    transition:transform 0.3s ease;
}

.product:hover {
    transform:scale(1.05);
}

.product img {
    max-width:100%;
    border-radius:8px;
    margin-bottom:12px;
}

/* --- BOUTONS COCKPIT --- */
.btn-cockpit,
.buy-btn {
    padding:10px 18px;
    background:#0ff;
    color:#000;
    border-radius:6px;
    text-decoration:none;
    font-weight:bold;
    box-shadow:0 0 12px #0ff;
    transition:0.3s;
}

.btn-cockpit:hover,
.buy-btn:hover {
    background:#0cc;
}

/* --- MESSAGE PANIER --- */
.cart-message {
    text-align:center;
    background:#0f0a;
    color:#0f0;
    padding:12px;
    margin:20px auto;
    width:60%;
    border:1px solid #0f0;
    border-radius:8px;
    box-shadow:0 0 12px #0f0;
    font-weight:bold;
}

/* --- NAVIGATION PANIER --- */
.cart-nav {
    display:flex;
    justify-content:center;
    gap:20px;
    margin-bottom:30px;
}


.store-header {
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:20px;
}

.store-header {
    position:fixed;
    top:20px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:20px;
    z-index:9999;
}

.cart-count {
    background:#000;
    color:#0ff;
    padding:2px 6px;
    border-radius:4px;
    margin-left:4px;
    font-weight:bold;
    box-shadow:0 0 6px #0ff;
}

/* --- HEADER COCKPIT GLOBAL --- */
.store-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 9999;
    padding: 10px 20px;
    background: #00000088;
    border: 1px solid #0ff4;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    box-shadow: 0 0 12px #0ff3;
}

/* --- BOUTONS DU HEADER --- */
.header-btn {
    padding: 10px 18px;
    background: #0ff;
    color: #000;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 0 12px #0ff;
    transition: 0.3s;
}

.header-btn:hover {
    background: #0cc;
}

/* --- COMPTEUR PANIER --- */
.cart-count {
    background: #000;
    color: #0ff;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
    font-weight: bold;
    box-shadow: 0 0 6px #0ff;
}

/* --- BOUTON PAIEMENT --- */
.payment-btn {
    background: #0f0;
    box-shadow: 0 0 12px #0f0;
}

.payment-btn:hover {
    background: #0c0;
}

.checkout-container {
    display:flex;
    justify-content:center;
    gap:40px;
    padding:40px;
    flex-wrap:wrap;
}

.checkout-summary, .checkout-form {
    background:#141414cc;
    border:1px solid #0ff4;
    border-radius:12px;
    padding:30px;
    width:380px;
    backdrop-filter:blur(6px);
    box-shadow:0 0 12px #0ff3;
}

.checkout-item {
    display:flex;
    gap:15px;
    margin-bottom:20px;
}

.checkout-item img {
    width:70px;
    border-radius:8px;
}

.checkout-total {
    margin-top:20px;
    font-size:22px;
    color:#0ff;
}

.checkout-form label {
    display:block;
    margin-top:15px;
    color:#0ff;
}

.checkout-form input,
.checkout-form select {
    width:100%;
    padding:10px;
    margin-top:5px;
    background:#000;
    color:#0ff;
    border:1px solid #0ff4;
    border-radius:6px;
}
