/* ============================
   RESET LOCAL — PAS DE CONFLIT
   ============================ */
.tokibook-presta-wrapper {
    all: initial;              /* 🔥 neutralise TOUT le style global */
    font-family: Arial, sans-serif;
    display: block;
}

/* Empêche l’héritage Cinzel */
.tokibook-presta-wrapper * {
    font-family: Arial, sans-serif !important;
    box-sizing: border-box;
}

/* ============================
   GRID
   ============================ */
.tokibook-presta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 9px;
    padding: 6px;
    align-content: space-evenly;
    grid-auto-flow: column;
    justify-content: space-around;
    align-items: stretch;
}

/* ============================
   CARD CLASSIQUE, PRO
   ============================ */
.tokibook-presta-card {
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    border: 1px solid #ddd;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    min-height: 380px;
    justify-content: space-between;
    text-align: center;
    transition: 0.25s;
}

.tokibook-presta-card:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}

/* ============================
   PHOTO
   ============================ */
.tokibook-presta-photo {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: none !important;
}

/* ============================
   TITRE
   ============================ */
.tokibook-presta-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 6px 0;
    color: #222;
}

/* ============================
   METIER
   ============================ */
.tokibook-presta-metier {
    font-size: 0.95rem;
    font-weight: 600;
    color: #7d3c98;
    margin-bottom: 6px;
}

/* ============================
   SUBSERVICES
   ============================ */
.tokibook-presta-sub {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 8px;
}

/* ============================
   ZONE
   ============================ */
.tokibook-presta-zone {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 10px;
}

/* ============================
   DESCRIPTION
   ============================ */
.tokibook-presta-desc {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.3rem;
    flex-grow: 1;
    margin-bottom: 12px;
}

/* ============================
   BOUTON
   ============================ */
.tokibook-presta-btn {
    display: block;
    padding: 10px;
    background: #7d3c98;
    color: white !important;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.25s;
}

.tokibook-presta-btn:hover {
    background: #5e2d73;
}
