/* ── Base layout ─────────────────────────────────────── */
.profile-layout {
    min-height: 100vh;
    background: #0c1321;
}

/* ── Hero ────────────────────────────────────────────── */
.profile-hero {
    position: relative;
}

.profile-banner {
    position: relative;
    height: 260px;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #151b2a;
}

.profile-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    display: block;
}

/* gradient fadeout en bas de bannière */
.profile-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0c1321 0%, transparent 55%);
    pointer-events: none;
}

/* ── Avatar ──────────────────────────────────────────── */
.profile-avatar {
    width: 160px;
    height: 160px;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 4px solid #0c1321;
    background: #232a39;
    flex-shrink: 0;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.8);
    position: relative;
    z-index: 10;
    margin-top: -80px;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Stat / info cards ───────────────────────────────── */
.profile-stat-card {
    border-radius: 0.75rem;
    background: #151b2a;
    border: 1px solid rgba(88, 66, 55, 0.14);
    transition: border-color 0.2s;
}

.profile-stat-card:hover {
    border-color: rgba(249, 115, 22, 0.25);
}

/* ── Garage card ─────────────────────────────────────── */
.profile-garage-card {
    border-radius: 0.75rem;
    overflow: hidden;
    background: #151b2a;
    border: 1px solid rgba(88, 66, 55, 0.14);
    transition: border-color 0.2s, transform 0.2s;
}

.profile-garage-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-2px);
}

.profile-garage-card .card-img {
    height: 180px;
    overflow: hidden;
}

.profile-garage-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.profile-garage-card:hover .card-img img {
    transform: scale(1.06);
}

/* ── Signature gradient button ───────────────────────── */
.btn-signature {
    background: linear-gradient(135deg, #ffb690 0%, #f97316 100%);
    color: #341100;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: filter 0.15s, transform 0.1s;
    display: inline-block;
    text-align: center;
    box-shadow: 0 8px 24px rgba(249,115,22,0.25);
}

.btn-signature:hover  { filter: brightness(1.08); }
.btn-signature:active { transform: scale(0.97); }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 767px) {
    .profile-banner { height: 180px; }

    .profile-avatar {
        width: 104px;
        height: 104px;
        margin-top: -52px;
    }
}