/* ==========================================================================
   APPLE MINIMALIST BLACK THEME
   ========================================================================== */
html, body, #page, #wrapper, #main, #content, .card, #content-wrapper, .container {
    background: #000000 !important;
    background-color: #000000 !important;
    color: #f5f5f7 !important;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Alignement général */
.apple-clean {
    max-width: 1060px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* En-tête de la page */
.hero-store {
    margin-bottom: 60px;
    padding-top: 20px;
}
.store-title {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    letter-spacing: -1.5px !important;
    color: #ffffff !important;
    margin: 0;
}
.store-subtitle {
    font-size: 1.5rem;
    color: #86868b !important;
    font-weight: 500;
    letter-spacing: -0.5px;
    margin-top: 5px;
}

/* Grille des boîtes de compétences */
.apple-grid-clean {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 70px;
}

.apple-box {
    background: #161617 !important; /* Le gris des fiches Apple */
    border-radius: 18px;
    padding: 30px 24px;
    transition: transform 0.2s ease;
}
.apple-box:hover {
    transform: scale(1.02);
}
.apple-box h3 {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin-bottom: 8px;
}
.apple-box p {
    font-size: 0.9rem;
    color: #86868b !important;
    line-height: 1.4;
    margin: 0;
}

/* Titre de la Boutique */
.shop-title-clean {
    margin-bottom: 30px;
}
.shop-title-clean h2 {
    font-size: 2rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.8px !important;
    color: #ffffff !important;
}
.text-fade {
    color: #86868b !important;
}

/* ==========================================================================
   PRODUITS DU STORE
   ========================================================================== */
.product-miniature {
    background: #161617 !important;
    border: none !important;
    border-radius: 18px !important;
    padding: 20px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    transition: transform 0.2s ease;
}
.product-miniature:hover {
    transform: scale(1.02);
}

.product-title a {
    color: #f5f5f7 !important;
    font-weight: 600 !important;
    font-size: 1.1rem;
}

.price {
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 1.2rem !important;
    margin-top: 10px;
}

/* Bouton d'achat ovale Apple (Bleu Apple ou Blanc) */
.btn-primary {
    background: #0071e3 !important; /* Le bleu officiel des boutons Apple */
    color: #ffffff !important;
    border: none !important;
    border-radius: 30px !important; /* Bouton pilule */
    padding: 6px 16px !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
}
.btn-primary:hover {
    background: #147ce5 !important;
}
