﻿/* ============================================
   ModHeberg – custom.css
   Styles complémentaires (pages internes, etc.)
   ============================================ */

/* Utilitaires couleur / fond */
.color-primary   { color: #00c47a; }
.bg-primary-soft { background: rgba(0, 196, 122, 0.1); }
.bg-dark-card    { background: rgba(255,255,255,0.04); }

/* Radius */
.radius    { border-radius: 16px; }
.radius-sm { border-radius: 10px; }

/* Typographie */
.font-poppins { font-family: 'Poppins', sans-serif; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.text-muted-custom { color: #94a3b8; }

/* Boutons personnalisés */
.btn-nano {
    background: linear-gradient(135deg, #00c47a 0%, #0099cc 100%);
    color: #fff;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(0,196,122,0.3);
}
.btn-nano:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(0,196,122,0.5);
    color: #fff;
}

/* Carte offre (pages produit) */
.offer-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 30px 26px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.offer-card:hover {
    border-color: rgba(0,196,122,0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.offer-card.featured::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(135deg, #00c47a, #0099cc);
}
.offer-card-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00c47a, #0099cc);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.offer-price {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.offer-price sub {
    font-size: 1rem;
    font-weight: 500;
    color: #94a3b8;
    vertical-align: baseline;
}

/* Specs list (pages produit) */
.spec-list {
    list-style: none;
    padding: 0; margin: 0;
}
.spec-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.88rem;
    color: #e2e8f0;
}
.spec-list li:last-child { border-bottom: none; }
.spec-list li i { color: #00c47a; width: 16px; flex-shrink: 0; }

/* Badge tag section */
.tag-label {
    display: inline-block;
    color: #00c47a;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

/* Divider dégradé */
.gradient-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #00c47a, transparent);
    opacity: 0.4;
    margin: 0;
}

/* Glow sur image */
.img-glow {
    filter: drop-shadow(0 0 30px rgba(0,196,122,0.25));
}

/* Pastille état (en ligne / hors ligne) */
.status-dot {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #00c47a;
    animation: pulse-status 2s infinite;
}
.status-dot.offline { background: #ef4444; animation: none; }
@keyframes pulse-status {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,196,122,0.5); }
    50%       { box-shadow: 0 0 0 6px rgba(0,196,122,0); }
}

/* Responsive helpers */
@media (max-width: 768px) {
    .hide-mobile { display: none !important; }
}
@media (min-width: 769px) {
    .hide-desktop { display: none !important; }
}
