/* ================================================
   Listing Host Card — Carte profil loueur
   ================================================ */

.listing-host-card {
    width: 100%;
    padding: 12px;
    background: var(--white);
    box-shadow: var(--shadow-card);
    border-radius: var(--border-radius-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* ── Profile ── */
.listing-host-card__profile {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    border: 0.5px solid var(--dark5);
    display: flex;
    align-items: center;
    gap: 10px;
}

.listing-host-card__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.listing-host-card__avatar--placeholder {
    background: var(--light2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.listing-host-card__avatar--placeholder i {
    font-size: 24px;
    color: var(--dark4);
}

.listing-host-card__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.listing-host-card__name {
    color: var(--dark-brown);
    font-family: var(--font-helvetica);
    font-size: 16px;
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-button);
}

.listing-host-card__type {
    color: var(--dark3);
    font-family: var(--font-rubik);
    font-size: 14px;
    font-weight: var(--font-weight-regular);
}

/* ── Trust badge ── */
.listing-host-card__badge {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: linear-gradient(135deg, #37241C 0%, #5c3a28 100%);
    border-radius: var(--border-radius-base);
    box-shadow: 0 4px 16px rgba(55, 36, 28, 0.25);
    transition: background 0.2s ease;
    cursor: default;
}

.listing-host-card__badge:hover {
    background: var(--main-color-orange);
}

.listing-host-card__badge:hover .listing-host-card__badge-icon {
    background: var(--white);
}

.listing-host-card__badge:hover .listing-host-card__badge-icon i {
    color: var(--main-color-orange);
}

.listing-host-card__badge-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--main-color-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.listing-host-card__badge-icon i {
    font-size: 22px;
    color: var(--white);
    transition: color 0.2s ease;
}

.listing-host-card__badge-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.listing-host-card__badge-label {
    color: var(--white);
    font-family: var(--font-rubik);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.listing-host-card__badge-sub {
    color: rgba(255, 255, 255, 0.65);
    font-family: var(--font-rubik);
    font-size: 12px;
    font-weight: 400;
}

/* ── Contact button ── */
.listing-host-card__contact {
    width: 100%;
    min-height: 48px;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--main-color);
    box-shadow: -2px 2px 7px #DDDDDD;
    border-radius: var(--border-radius-small);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
    font-family: var(--font-helvetica);
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.listing-host-card__contact:hover {
    background: var(--main-color-orange);
    color: var(--white);
    border-color: var(--main-color-orange);
    transform: translateY(-1px);
}
