/* ===== GLOBAL ===== */
body{
    margin:0;
    background:#000;
    font-family:Verdana, Arial, sans-serif;
    color:#fff;
    line-height:1.5;
}

img{
    max-width:100%;
    height:auto;
    border:0;
}

a{
    color:#0000FF;
    text-decoration:none;
}

a:hover{
    text-decoration:underline;
}

.wrapper{
    max-width:1180px;
    margin:0 auto;
    background:#c0c0c0;
}

/* ===== BANNIERE ===== */
.site-header{
    background:#ffffff;
    color:#000;
}

.site-header-top{
    text-align:center;
    padding:12px 20px;
    font-size:22px;
    font-weight:bold;
}

.site-header-top .atc-blue{
    color:#0000FF;
}

.site-header-top .atc-red{
    color:#FF0000;
}

.site-banner{
    background:#800000;
    color:#FFFF00;
    text-align:center;
    padding:18px 20px;
}

.site-banner h1{
    margin:0;
    font-size:38px;
    line-height:1.2;
}

.site-contact-bar{
    background:#FFFFCC;
    color:#000;
    text-align:center;
    padding:10px 15px;
    font-size:18px;
    font-weight:bold;
}

.phone{
    color:#008000;
    font-size:22px;
    font-weight:bold;
}

/* ===== CONTENU GENERAL ===== */
.page-content{
    padding:20px;
    color:#000;
    background:#c0c0c0;
}

.card{
    background:#fff;
    padding:20px;
    margin:0 0 20px 0;
    border:1px solid #999;
}

.section-title{
    margin:0 0 15px 0;
    font-size:30px;
    color:#000080;
}

.subsection-title{
    margin:20px 0 10px 0;
    font-size:24px;
    color:#000080;
}

.highlight-red{
    color:#cc0000;
}

.text-center{
    text-align:center;
}

.text-left{
    text-align:left;
}

/* ===== GALERIE PRODUIT ===== */
.product-hero{
    margin-bottom:20px;
}

.product-main-image{
    background:#fff;
    padding:10px;
    text-align:center;
    border:1px solid #aaa;
    margin-bottom:20px;
}

.product-gallery{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
}

.product-gallery .gallery-item{
    background:#fff;
    border:1px solid #aaa;
    padding:12px;
    text-align:center;
    color:#000;
}

.product-gallery .gallery-item h3{
    margin:10px 0 8px 0;
    font-size:16px;
    color:#000;
}

.product-gallery .gallery-item p{
    margin:0;
    font-size:14px;
}

/* ===== BLOCS TEXTE PRODUIT ===== */
.product-description,
.product-specs,
.product-observations,
.product-services,
.product-glossary,
.product-order{
    background:#fff;
    color:#000;
    padding:20px;
    border:1px solid #aaa;
    margin-bottom:20px;
}

.product-specs ul,
.product-observations ul,
.product-services ul,
.product-glossary ul{
    margin:10px 0 0 20px;
    padding:0;
}

.product-specs li,
.product-observations li,
.product-services li,
.product-glossary li{
    margin-bottom:8px;
}

/* ===== TABLEAUX ===== */
.atc-table{
    width:100%;
    border-collapse:collapse;
    table-layout:fixed;
    background:#fff;
    color:#000;
}

.atc-table th,
.atc-table td{
    border:1px solid #999;
    padding:10px;
    text-align:center;
    vertical-align:middle;
}

.atc-table th{
    background:#800000;
    color:#FFFF00;
    font-size:16px;
}

/* ===== TABLEAU COMMANDE ===== */
.order-table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    color:#000;
}

.order-table th,
.order-table td{
    border:1px solid #999;
    padding:12px 10px;
    text-align:center;
    vertical-align:middle;
}

.order-table th{
    background:#800000;
    color:#FFFF00;
}

.order-table input[type="number"]{
    width:70px;
    padding:6px;
    text-align:center;
}

.order-table .price{
    font-weight:bold;
    color:#800000;
}

/* ===== BOUTONS ===== */
.btn{
    display:inline-block;
    padding:12px 18px;
    background:#800000;
    color:#FFFF00;
    font-weight:bold;
    border:1px solid #400000;
    transition:all 0.2s ease;
}

.btn:hover{
    transform:scale(1.03);
    filter:brightness(1.08);
    text-decoration:none;
}

.btn:active{
    transform:scale(0.97);
}

.btn-image{
    width:150px;
    height:100px;
    transition:all 0.2s ease;
}

.btn-image:hover{
    transform:scale(1.05);
    filter:brightness(1.1);
}

.btn-image:active{
    transform:scale(0.95);
}

/* ===== ANCIENNES MINIATURES ===== */
.thumb{
    width:110px;
    height:110px;
    object-fit:contain;
}

/* ===== FOOTER ===== */
.site-footer{
    background:#000;
    padding:25px 20px;
    text-align:center;
}

.footer-buttons{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
    margin-bottom:15px;
}

.footer-note{
    color:#fff;
    font-size:14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width:768px){

    .site-header-top{
        font-size:18px;
        padding:10px 12px;
    }

    .site-banner h1{
        font-size:28px;
    }

    .site-contact-bar{
        font-size:15px;
    }

    .phone{
        font-size:18px;
    }

    .page-content{
        padding:12px;
    }

    .section-title{
        font-size:24px;
    }

    .subsection-title{
        font-size:20px;
    }

    .product-gallery{
        grid-template-columns:1fr;
    }

    .thumb{
        width:80px;
        height:80px;
    }

    .btn-image{
        width:120px;
        height:auto;
    }

    .atc-table,
    .atc-table tbody,
    .atc-table tr,
    .atc-table td,
    .atc-table th,
    .order-table,
    .order-table tbody,
    .order-table tr,
    .order-table td,
    .order-table th{
        display:block;
        width:100%;
    }

    .atc-table tr,
    .order-table tr{
        margin-bottom:12px;
    }

    .atc-table td,
    .order-table td,
    .atc-table th,
    .order-table th{
        box-sizing:border-box;
        
    }
    
    
    
    
    
    
    
    /* ===== HEADER ATC ===== */
.header-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:#fff;
    padding:10px;
}

.header-left{
    width:120px;
}

.logo-left{
    width:100px;
}

.header-center{
    text-align:center;
    flex:1;
}

.logo-center{
    max-width:400px;
}

.header-right{
    width:220px;
    text-align:center;
    font-size:14px;
}

.header-right a{
    display:block;
    color:#0000FF;
    margin:3px 0;
}

.header-slogan{
    background:#fff;
    color:#000;
    text-align:center;
    font-weight:bold;
    padding:10px;
}

.header-menu{
    display:flex;
    background:#fff;
}

.header-menu a{
    flex:1;
    text-align:center;
    padding:10px;
    color:#0000FF;
    border-right:1px solid #ccc;
}

.header-menu a:last-child{
    border-right:none;
}
}