/* ============================================================
   PROJECT: JEFHIP DIGITAL - FULL PACK CSS 2046
   DESCRIPTION: LUXE, PERFORMANCE & HAUTE CONVERSION
   ============================================================ */

:root {
    /* Palette de Couleurs */
    --noir-pur: #000000;
    --noir-soft: #0a0a0a;
    --blanc: #ffffff;
    --rouge-promo: #ff0000;
    --vert-dispo: #2ecc71;
    --gris-bordure: #e5e5e5;
    --gris-fond: #f9f9f9;
    --gris-texte: #666666;
    
    /* Variables de Design */
    --header-h: 75px;
    --radius: 4px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* --- RESET & BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Arimo', sans-serif;
    background-color: var(--blanc);
    color: var(--noir-pur);
    line-height: 1.6;
    padding-top: var(--header-h);
    -webkit-font-smoothing: antialiased;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
img { max-width: 100%; height: auto; display: block; }

/* --- HEADER FIXÉ (GLASSMORPHISM) --- */
.site-header.header-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gris-bordure);
    z-index: 1000;
    display: flex;
    align-items: center;
}
.header__content { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo-text { font-weight: 700; letter-spacing: 2px; text-decoration: none; color: #000; font-size: 1.4rem; }
.logo-badge { font-size: 0.7rem; background: #000; color: #fff; padding: 2px 6px; margin-left: 5px; font-weight: 900; }
.header__status { font-size: 0.8rem; font-weight: 500; color: var(--vert-dispo); }

/* --- HERO SECTION --- */
.section-hero { padding: 80px 0 40px; text-align: center; }
.hero__title { font-size: clamp(2rem, 5vw, 3rem); text-transform: uppercase; letter-spacing: -1px; margin-bottom: 15px; }
.hero__description { font-size: 1.1rem; color: var(--gris-texte); max-width: 700px; margin: 0 auto; }

/* --- GRILLE DE PRODUITS & PACKS --- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding: 40px 0; }
.product-card {
    background: var(--blanc);
    border: 1px solid var(--gris-bordure);
    position: relative;
    transition: var(--transition);
    height: 100%;
}
.product-card:hover { transform: translateY(-10px); border-color: #000; box-shadow: var(--shadow); }
.product-card--featured { border: 2px solid #000; z-index: 2; transform: scale(1.02); }

/* Badge Promo % OFF */
.promo-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--rouge-promo);
    color: var(--blanc);
    padding: 6px 14px;
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 2px;
    box-shadow: 0 4px 10px rgba(255,0,0,0.2);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.product-card__inner { padding: 40px 30px; display: flex; flex-direction: column; height: 100%; }
.price-old { text-decoration: line-through; color: #999; margin-right: 10px; font-size: 0.95rem; }
.price-current { font-size: 1.5rem; font-weight: 700; color: #000; }
.product-features { list-style: none; margin: 30px 0; flex-grow: 1; }
.product-features li { font-size: 0.9rem; padding: 10px 0; border-bottom: 1px solid #f5f5f5; }
.product-features li:last-child { border-bottom: none; }

/* --- BOUTONS D'ACHAT AVANCÉS --- */
.button-group { display: flex; flex-direction: column; gap: 12px; }
.button {
    display: block;
    padding: 16px;
    text-align: center;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border-radius: var(--radius);
}
.button--primary { background: #000; color: #fff; border: 1px solid #000; }
.button--secondary { background: #fff; color: #000; border: 1px solid #000; }

.button--primary:hover { background: #333; transform: scale(1.02); }
.button--secondary:hover { background: #f9f9f9; transform: scale(1.02); }

.product-card__info { font-size: 0.75rem; text-align: center; margin-top: 15px; color: #888; }

/* --- SECTION TRUST (GARANTIES) --- */
.section-trust { background: var(--gris-fond); padding: 60px 0; border-top: 1px solid #eee; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.trust-icon { font-size: 2.5rem; margin-bottom: 15px; display: block; }
.trust-item h3 { font-size: 0.9rem; text-transform: uppercase; margin-bottom: 10px; letter-spacing: 1px; }
.trust-item p { font-size: 0.85rem; color: var(--gris-texte); }

/* --- SECTION AVIS CLIENTS --- */
.section-reviews { padding: 80px 0; }
.section-title { text-align: center; text-transform: uppercase; margin-bottom: 50px; letter-spacing: 3px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; }
.review-card { border: 1px solid #eee; padding: 30px; transition: var(--transition); background: #fff; }
.review-card:hover { border-color: #000; box-shadow: var(--shadow); }
.review-stars { color: #f1c40f; margin-bottom: 15px; font-size: 0.9rem; }
.review-text { font-size: 0.9rem; font-style: italic; margin-bottom: 20px; color: #333; line-height: 1.5; }
.review-author { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; color: #888; border-top: 1px solid #f5f5f5; padding-top: 15px; }

/* --- FOOTER EXPERT (SHOPIFY STYLE) --- */
.site-footer { background: #000; color: #fff; padding: 80px 0 30px; margin-top: 60px; }
.footer__container { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: 60px; }

/* Newsletter */
.footer__text { font-size: 0.9rem; color: #888; margin: 15px 0; }
.newsletter-form { display: flex; border: 1px solid #333; margin-top: 20px; }
.newsletter-input { flex: 1; padding: 15px; background: transparent; border: none; color: #fff; outline: none; }
.newsletter-submit { background: #fff; color: #000; border: none; padding: 0 25px; font-weight: 700; cursor: pointer; transition: 0.3s; }
.newsletter-submit:hover { background: #ccc; }

/* App Image Frame */
.app-single-container { display: flex; flex-direction: column; gap: 10px; }
.app-label { font-size: 10px; color: #555; text-transform: uppercase; letter-spacing: 1px; }
.app-full-image { 
    max-width: 240px; border: 1px solid #222; border-radius: 8px; padding: 5px; background: #050505; transition: 0.3s; 
}
.app-full-image:hover { border-color: #fff; }

/* Social Icons (Dossier media/) */
.social-icons-row { display: flex; justify-content: center; gap: 20px; padding: 40px 0; border-top: 1px solid #111; margin-top: 40px; }
.social-icon { width: 45px; height: 45px; border: 1px solid #222; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.social-icon img { width: 22px; height: 22px; filter: invert(1); }
.social-icon:hover { background: #fff; border-color: #fff; }
.social-icon:hover img { filter: invert(0); }

/* Paiement Cards (Dossier card/) */
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; border-top: 1px solid #111; }
.footer__payment-methods { display: flex; gap: 10px; }
.pay-card-svg { height: 28px; background: #fff; border-radius: 4px; padding: 4px 8px; border: 1px solid #ddd; transition: transform 0.2s; }
.pay-card-svg:hover { transform: translateY(-3px); }

/* --- RESPONSIVE OPTIMISÉ --- */
@media (max-width: 992px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .footer__container { grid-template-columns: 1fr; text-align: center; }
    .newsletter-form { max-width: 450px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 767px) {
    .product-grid { grid-template-columns: 1fr; }
    .product-card--featured { transform: scale(1); }
    .trust-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer__bottom-inner { flex-direction: column; gap: 20px; text-align: center; }
    .hero__title { font-size: 2rem; }
}