/* ===================== */
/*        RESET          */
/* ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    background: #0d0f17;
    color: #ffffff;
}

/* ===================== */
/*        HEADER         */
/* ===================== */
header {
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

header h1,
.logo {
    font-size: 26px;
    font-weight: 700;
    color: #ffda44;
}

nav a {
    margin: 0 15px;
    font-size: 15px;
    color: #ffffffc5;
    text-decoration: none;
    transition: 0.2s;
}

nav a:hover {
    color: #ffda44;
}

nav a.active {
    color: #ffda44;
    font-weight: 700;
}

/* ===================== */
/*         HERO          */
/* ===================== */
.hero {
    text-align: center;
    padding: 100px 40px;
    background: linear-gradient(to bottom, #11141e, #0d0f17);
}

.hero h2, .hero-text h1 {
    font-size: 45px;
    font-weight: 800;
    color: #ffda44;
}

.hero p, .hero-text p {
    margin: 20px auto 30px;
    font-size: 17px;
    max-width: 650px;
    color: #c9c9c9;
    line-height: 1.6;
}

.hero-btn {
    display: inline-block;
    padding: 14px 28px;
    background: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
    color: #000;
}

.hero-btn:hover {
    background: #ffd000;
}

/* HERO IMG (si utilisé) */
.hero-img img {
    width: 350px;
    border-radius: 20px;
    box-shadow: 0 0 25px #ffda4450;
}

/* ===================== */
/*      FEATURES         */
/* ===================== */
.section-title, .features h2 {
    text-align: center;
    font-size: 35px;
    margin: 50px 0 30px;
    font-weight: 700;
    color: white;
}

.card-grid, .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    padding: 0 40px 60px;
}

.card {
    background: #151824;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 18px;
    padding: 25px;
    text-align: center;
    transition: 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px #ffda4420;
}

.card img {
    width: 90px;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.card p {
    color: #c9c9c9;
    line-height: 1.4;
}

/* ===================== */
/*        FOOTER         */
/* ===================== */
footer {
    text-align: center;
    padding: 40px;
    margin-top: 40px;
    color: #999;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* ============================= */
/*          PAGE BOUTIQUE        */
/* ============================= */

/* HERO BOUTIQUE */
.boutique-hero {
    background: linear-gradient(135deg, #171a25, #0d0f17);
    padding: 80px 40px;
    text-align: center;
}

.boutique-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #ffda44;
}

.boutique-hero p {
    font-size: 18px;
    color: #c9c9c9;
}

/* SECTION SHOP */
.shop {
    padding: 40px 40px 80px;
}

.shop h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 25px;
}

/* GRADES */
.grades-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 40px 20px;
}

.grade-card {
    background: #161822;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 0 15px rgba(255, 218, 68, 0.15);
    color: #fff;
    transition: 0.2s;
}

.grade-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 22px rgba(255, 218, 68, 0.25);
}

.grade-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

/* PRIX */
.price {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.5;
}

.promo-price {
    color: #ffd43b;
}

/* AVANTAGES */
.benefits {
    list-style: none;
    margin-top: 10px;
}

.benefits li {
    margin: 6px 0;
    opacity: 0.9;
}

/* BOUTON ACHETER */
.buy-btn {
    margin-top: 15px;
    width: 100%;
    padding: 12px;
    background: #ffd43b;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}

.buy-btn:hover {
    background: #ffe580;
}

.buy-btn.legend {
    background: #ffb534;
}
