/* ============================================================
   Presta'Tour — Annuaire des prestataires — styles dédiés
   ============================================================ */

/* Filtres select */
#presta-filtres select {
    font-size: 13px;
    padding: 6px 10px;
    border: 1px solid #d0cec8;
    border-radius: 8px;
    background: #ffffff;
    color: #1a1a18;
    cursor: pointer;
}

/* ---- Carte de base ---------------------------------------- */
.presta-card {
    background: #ffffff;
    border: 1px solid #e8e6e0;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 8px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

/* Variante PREMIUM */
.presta-card--premium {
    background: #fdf8f2;
    border-color: #e0d6c8;
    border-left: 3px solid #c8933c;
    border-radius: 0 12px 12px 0;
    padding-left: 13px;
}

/* ---- Logo (gauche) ---------------------------------------- */
.presta-card__logo {
    flex-shrink: 0;
    width: 90px;
    display: flex;
    align-items: flex-start;
    padding-top: 2px;
}
.presta-card__logo-img {
    width: 90px;
    height: 60px;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid #e8e6e0;
    background: #f8f6f2;
    display: block;
}
.presta-card__logo-fallback {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #f1ede4;
    border: 1px solid #e8e0d0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: #a08050;
    letter-spacing: 0.04em;
}

/* ---- Corps de la carte ------------------------------------ */
.presta-card__body {
    flex: 1;
    min-width: 0;
}

/* ---- Badges ----------------------------------------------- */
.presta-card__tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}
.presta-tag {
    font-size: 11px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 20px;
    white-space: nowrap;
}
.presta-tag--premium { background: #f5e8ce; color: #7a5210; }
.presta-tag--expert  { background: #eaeffd; color: #1d3a8a; }

/* ---- Nom -------------------------------------------------- */
.presta-card__title {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a18;
    margin-bottom: 4px;
    line-height: 1.35;
}
.presta-card__title a {
    color: inherit;
    text-decoration: none;
}
.presta-card__title a:hover {
    color: #c8933c;
    text-decoration: underline;
}

/* ---- Domaines --------------------------------------------- */
.presta-card__cats {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #c0421a;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ---- Description (2 lignes max) --------------------------- */
.presta-card__desc {
    font-size: 12px;
    color: #5f5e5a;
    line-height: 1.55;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ---- Pied ------------------------------------------------- */
.presta-card__footer {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 6px;
}
.presta-card__site {
    font-size: 11px;
    color: #c0421a;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 220px;
    border: 1px solid #e8d8cc;
    padding: 3px 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
}
.presta-card__site:hover { background: #fff5f0; }
.presta-card__site--none {
    color: #aaa9a4;
    border-color: #e8e6e0;
    cursor: default;
}
.presta-card__site--none:hover { background: transparent; }

.presta-card__btn {
    margin-left: auto;
    font-size: 11px;
    padding: 5px 12px;
    border: 1px solid #d0cec8;
    border-radius: 8px;
    background: transparent;
    color: #5f5e5a;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}
.presta-card__btn:hover { background: #f5f4f0; }

/* ---- Mur abonnement --------------------------------------- */
.presta-wall {
    background: #fff8f0;
    border: 1px solid #f0d8b8;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 13px;
    color: #7a4a10;
    text-align: center;
}

/* ---- Fiche : réalisations / projets ----------------------------- */
.presta-projets {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.presta-projet {
    padding: 12px 14px;
    background: #f9f8f5;
    border-radius: 8px;
    border-left: 3px solid #e0d6c8;
}

/* Variante deux colonnes (logo + contenu) */
.presta-projet--row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.presta-projet__thumb {
    flex-shrink: 0;
    width: 80px;
}
.presta-projet__thumb-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid #e8e6e0;
    background: #fff;
    display: block;
}
.presta-projet__thumb-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    background: #f1ede4;
    border: 1px solid #e8e0d0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.presta-projet__body {
    flex: 1;
    min-width: 0;
}

.presta-projet__titre {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a18;
    margin-bottom: 4px;
}
.presta-projet__texte {
    margin-top: 4px;
    margin-bottom: 6px;
}
.presta-projet__meta {
    font-size: 11px;
    color: #888780;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .03em;
}
