/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 10 2025 | 05:44:13 */
/* ========================================
   SEBTACAR - CSS UNIQUEMENT POUR /OUR-CARS/
   ======================================== */

/* === CIBLAGE UNIQUEMENT PAGE VOITURES === */

body:not(.home) .car_result,
body.page .car_result,
body[class*="cars"] .car_result {
    background: white !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important;
    overflow: hidden !important;
    transition: all 0.4s ease !important;
    border: none !important;
    display: flex !important;
    flex-direction: column !important;
}

body:not(.home) .car_result:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 20px 60px rgba(26, 188, 156, 0.25) !important;
}

/* === GRILLE === */

body:not(.home) .vrc-search-results-block-list {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
    gap: 30px !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 40px 20px !important;
}

/* === FOND === */

body:not(.home),
body.page {
    background: linear-gradient(135deg, #f5f7fa 0%, #e3e8f0 100%) !important;
}

/* === IMAGE === */

body:not(.home) .vrc-car-result-left {
    height: 250px !important;
    overflow: hidden !important;
}

body:not(.home) .imgresult,
body:not(.home) .vrc-car-result-left img {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover !important;
    transition: transform 0.5s ease !important;
}

body:not(.home) .car_result:hover .imgresult {
    transform: scale(1.1) !important;
}

/* === INFOS === */

body:not(.home) .vrc-car-result-right {
    padding: 25px !important;
}

body:not(.home) .vrc-car-result-right h4,
body:not(.home) .vrc-car-result-right h3 {
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #2c3e50 !important;
    margin: 0 0 15px 0 !important;
}

/* === BADGE === */

body:not(.home) .vrc-car-category {
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%) !important;
    color: white !important;
    padding: 6px 16px !important;
    border-radius: 20px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
}

/* === PRIX === */

body:not(.home) .vrc_price,
body:not(.home) .car_cost {
    background: #ffffff !important;                /* Fond blanc premium */
    padding: 18px 22px !important;                 /* Padding premium */
    border-radius: 18px !important;                /* Coins arrondis façon Airbnb */
    margin: 18px 0 !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);     /* Ombre élégante Booking */
    border: 1px solid #f1f1f1 !important;          /* Fine bordure comme Airbnb */
    transition: all 0.25s ease-in-out;             /* Animation premium */
}

/* Effet au survol, style Airbnb */
body:not(.home) .vrc_price:hover,
body:not(.home) .car_cost:hover {
    transform: translateY(-4px);                   /* Petite élévation premium */
}

/* Style des prix */
body:not(.home) .vrc_price span,
body:not(.home) .car_cost span {
    font-size: 26px !important;                    /* Medium+ premium */
    font-weight: 700 !important;
    color: #0f8bff !important;                      /* Bleu Booking moderne */
    letter-spacing: -0.5px;                         /* Finesse Airbnb */
}


/* === BOUTON === */

/* Animation premium */
@keyframes fadeStagger {
    0% {
        opacity: 0;
        transform: translateY(25px) scale(0.97);
        filter: blur(3px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* Application généralisée */
body:not(.home) .car_result {
    opacity: 0; /* Pour éviter les flashs */
    animation: fadeStagger 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
}

/* Stagger effect = décalage progressif entre les blocs */
body:not(.home) .car_result:nth-child(1) { animation-delay: 0.10s !important; }
body:not(.home) .car_result:nth-child(2) { animation-delay: 0.22s !important; }
body:not(.home) .car_result:nth-child(3) { animation-delay: 0.34s !important; }
body:not(.home) .car_result:nth-child(4) { animation-delay: 0.46s !important; }
body:not(.home) .car_result:nth-child(5) { animation-delay: 0.58s !important; }
body:not(.home) .car_result:nth-child(6) { animation-delay: 0.70s !important; }

/* S’il y a plus de 6 voitures, on peut continuer */
body:not(.home) .car_result:nth-child(n+7) {
    animation-delay: calc(0.10s + (var(--i) * 0.12s)) !important;
}

```
```
4. Update
5. Vider cache Hostinger
6. Ctrl+Shift+R sur /Our-cars/
```

---

## ✅ RÉSULTAT ATTENDU

**Page d'accueil (sebtacar.com) :**
- ✅ Affichage NORMAL (pas de CSS moderne)
- ✅ Voitures normales (pas miniatures)

**Page /Our-cars/ :**
- ✅ Design MODERNE
- ✅ Cartes 3D turquoise
- ✅ Effets hover

---

## 🎯 LA CLÉ : `body:not(.home)`

**Cette syntaxe CSS signifie :**
```
"Applique le CSS à TOUTES les pages SAUF la page d'accueil"