/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.5.1765893105
Updated: 2025-12-16 13:51:45

*/
.header-inner a {
    display: none !important;
}

#buttonlocation {
    width: 150px;
}

/* --- DESIGN DU CATALOGUE CAMIONLOCAL --- */

/* Grille principale */
.cl-catalogue {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

/* Carte de chaque camionnette */
.cl-card {
    background: #ffffff;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cl-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Image du camion */
.cl-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 3px solid #0073aa;
    /* Petite ligne de rappel couleur */
}

/* Contenu textuel */
.cl-content {
    padding: 25px;
    flex-grow: 1;
}

.cl-content h3 {
    margin: 0 0 10px 0;
    font-size: 22px;
    color: #1a1a1a;
    font-weight: 700;
}

/* Prix */
.cl-price {
    background: #e3fcef;
    color: #27ae60;
    display: inline-block;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 18px;
    margin-bottom: 15px;
}

/* Formulaire interne */
.cl-form-pop {
    background: #fcfcfc;
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    border: 1px solid #f0f0f0;
}

.cl-form-pop label {
    font-weight: bold;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cl-form-pop input {
    background: #fff;
    border: 1px solid #ddd !important;
    height: 45px;
    margin-bottom: 12px !important;
    font-size: 15px !important;
}

.cl-form-pop input:focus {
    border-color: #0073aa !important;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

/* Bouton de réservation */
.cl-btn {
    background: #0073aa !important;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    height: 50px;
    border-radius: 8px !important;
    margin-top: 15px !important;
    box-shadow: 0 4px 6px rgba(0, 115, 170, 0.2);
}

.cl-btn:hover {
    background: #005177 !important;
    box-shadow: 0 6px 12px rgba(0, 115, 170, 0.3);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cl-catalogue {
        grid-template-columns: 1fr;
    }
}