/* ============================================================
   GLOBAL RESET & FONTS
============================================================ */
body {
    margin: 0;
    font-family: 'Nunito', sans-serif;
    background: #f5f6fa;
}

/* Container général */
.section-container {
    width: 92%;
    max-width: 1300px;
    margin: 60px auto;
}

h1, h2, h3, h4,
.hero-title,
.page-title,
.domain-title,
.section-header h3,
.kit-detail-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
}

p, .kit-desc, .domain-subtitle, .kit-detail-description {
    font-family: 'Nunito', sans-serif;
    line-height: 1.65;
}

/* ============================================================
   BANDEAU DÉFILANT
============================================================ */
.top-marquee {
    width: 100%;
    background: #ff6a00;
    color: #fff;
    padding: 8px 0;
    font-size: 15px;
    font-weight: 600;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marqueeUltraSlow 60s linear infinite;
}

@keyframes marqueeUltraSlow {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
}

/* ============================================================
   HEADER PREMIUM
============================================================ */
.ibig-header {
    background: #041b4d;
    padding: 18px 0;
    box-shadow: 0 3px 15px rgba(0,0,0,0.20);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-container {
    width: 92%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 40px;
    width: auto;
}

/* Menu Desktop */
.desktop-menu ul {
    list-style: none;
    display: flex;
    gap: 38px;
    margin: 0;
    padding: 0;
}

.desktop-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: .25s;
}

.desktop-menu ul li a:hover {
    color: #ff6a00;
}

.desktop-menu .active {
    color: #ff6a00 !important;
}

/* ============================================================
   MENU MOBILE – VERSION FINALE
============================================================ */
.mobile-btn {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 12px rgba(0,0,0,0.15);
    padding-top: 70px;
    z-index: 99999;
    transition: right 0.35s ease-in-out;
}

/* Header mobile */
.mobile-menu-header {
    position: absolute;
    top: 15px;
    left: 20px;
    right: 20px;
    font-size: 18px;
    font-weight: 700;
    color: #041b4d;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-btn {
    font-size: 26px;
    cursor: pointer;
    color: #041b4d;
}

/* Liens mobile */
.mobile-menu a {
    display: block;
    padding: 15px 20px;
    font-size: 16px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #efefef;
}

.mobile-menu a:hover {
    background: #f7f7f7;
}

/* Responsive */
@media(max-width: 768px){
    .desktop-menu { display: none; }
    .mobile-btn { display: block; }
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero-home {
    background-image: url('/assets/img/hero-kits.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}

.hero-overlay {
    background: linear-gradient(90deg, rgba(7,29,68,0.95), rgba(7,29,68,0.78));
    padding: 65px 0;
}

.hero-container {
    width: 92%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.hero-left {
    max-width: 650px;
}

.hero-title {
    font-size: 41px;
    font-weight: 900;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 12px;
}

.hero-text {
    font-size: 15px;
    margin-bottom: 25px;
}

.hero-buttons .btn-primary-orange {
    background: #ff6a00;
    padding: 12px 25px;
    border-radius: 8px;
    color: white;
    font-weight: 700;
    margin-right: 10px;
}

.hero-buttons .btn-secondary-outline {
    border: 1px solid white;
    padding: 12px 25px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
}

/* Mobile hero */
@media(max-width:900px){
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-right { display:none; }
}

/* ============================================================
   KITS GRID
============================================================ */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-header h3 {
    color: #071D44;
    font-size: 24px;
}

.kits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 28px;
}

.kit-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    padding: 18px;
    box-shadow: 0 0 12px rgba(0,0,0,0.05);
}

.kit-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 10px;
    background: #f1f1f1;
}

.kit-title {
    font-size: 15px;
    font-weight: 700;
    height: 42px;
    overflow: hidden;
}

.kit-price {
    color: #ff6a00;
    font-weight: 700;
    margin-top: 6px;
}

/* ============================================================
   CTA BOX
============================================================ */
.cta-box {
    width: 92%;
    max-width: 1300px;
    margin: 50px auto;
    background: #071D44;
    color: white;
    padding: 35px 28px;
    border-radius: 22px;
    text-align: center;
}

.cta-box h2 {
    font-size: 25px;
    font-weight: 800;
}

/* ============================================================
   DOMAINES
============================================================ */
.domain-section {
    background: #f0f1f5;
    padding: 55px 0;
}

.domain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
    gap: 18px;
}

.domain-item {
    background: #fff;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    color: #071D44;
    font-weight: 700;
}

/* ============================================================
   FOOTER
============================================================ */
.ibig-footer {
    background: #041b4d;
    color: #cbd5e1;
    padding: 55px 0 25px;
    margin-top: 60px;
    border-radius: 40px 40px 0 0;
}

.footer-bottom {
    background: #ff6d00;
    color: #fff;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
}

/* ============================================================
   PAGE PACK COM-001 (responsive)
============================================================ */
.com-kit-page {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
}

.com-kit-cover img {
    width: 100%;
    border-radius: 14px;
}

.com-kit-price-main {
    font-size: 32px;
    font-weight: 900;
    color: #0a1f44;
}

.btn-com {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    margin: 5px;
    text-decoration: none;
}

.btn-com-whatsapp {
    background: #25D366;
    color: white;
}

.btn-com-chariow {
    background: #ff6d00;
    color: white;
}

/* Mobile buttons more compact */
@media(max-width:480px){
    .btn-com {
        padding: 11px 18px;
        font-size: 15px;
        width: 46%;
    }
}
.kits-grid{
    display:grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap:25px;
}

.kit-card{
    background:#fff;
    border-radius:15px;
    padding:15px;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
    position:relative;
    display:flex;
    flex-direction:column;
    height:100%;
}

.kit-card img{
    width:100%;
    height:160px;
    object-fit:cover;
    border-radius:10px;
    margin-bottom:12px;
}

.kit-title{
    font-size:16px;
    font-weight:700;
    line-height:20px;
    height:40px; /* 2 lignes max */
    overflow:hidden;
    margin-bottom:8px;
}

.kit-desc{
    font-size:14px;
    color:#555;
    height:40px;     /* 2 lignes max */
    overflow:hidden;
    margin-bottom:12px;
}

.kit-price{
    margin-bottom:15px;
}

.old-price{
    text-decoration: line-through;
    color:#aaa;
    font-size:14px;
    margin-right:8px;
}

.new-price{
    font-weight:700;
    font-size:18px;
    color:#ff4500;
}

.btn-dark{
    margin-top:auto;
    padding:10px;
    background:#0a1c44;
    color:#fff !important;
    border-radius:8px;
    text-align:center;
    font-weight:600;
    display:block;
}

.promo-badge{
    position:absolute;
    top:10px;
    left:10px;
    background:#ff4500;
    color:#fff;
    padding:5px 10px;
    border-radius:5px;
    font-size:13px;
    font-weight:bold;
}

@media (max-width: 600px){
    .kit-title{
        font-size:14px;
        line-height:18px;
        height:36px;
    }
}

.kit-title{
    font-size:15px !important;
    font-weight:600 !important;
    line-height:19px !important;
    height:38px !important;
    overflow:hidden !important;
    margin-bottom:8px !important;
}

.kit-card img {
    font-size: 0 !important;
    color: transparent !important;
}

.kit-card img {
    font-size: 0 !important;
    color: transparent !important;
}

