.saved-header-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 38px;
    padding: 0 0.8rem;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 999px;
    background: #fff;
    color: #111827;
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.saved-nav-count {
    display: inline-grid;
    place-items: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #f05a3f;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 900;
    line-height: 1;
}

.saved-items-page {
    padding: 72px 0;
    background: linear-gradient(180deg, rgba(245, 243, 239, 0.7), #fff 44%);
}

.saved-items-shell {
    width: min(1040px, calc(100% - 32px));
    margin: 0 auto;
}

.saved-items-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    margin-bottom: 28px;
}

.saved-items-kicker {
    display: block;
    margin-bottom: 8px;
    color: #f05a3f;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.saved-items-hero h1 {
    margin: 0 0 10px;
    color: #111827;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.2vw, 3.4rem);
    line-height: 0.98;
}

.saved-items-hero p {
    max-width: 620px;
    margin: 0;
    color: #64748b;
    line-height: 1.65;
}

.saved-items-clear {
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid #d7dee8;
    border-radius: 999px;
    background: #fff;
    color: #334155;
    font-weight: 800;
    cursor: pointer;
}

.saved-items-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.saved-item-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 180px;
    padding: 18px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.saved-item-type {
    color: #f05a3f;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.saved-item-card h2 {
    margin: 0;
    color: #111827;
    font-size: 1.08rem;
    line-height: 1.2;
}

.saved-item-date {
    margin-top: auto;
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 700;
}

.saved-item-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.saved-item-actions a,
.saved-item-actions button {
    min-height: 36px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
}

.saved-item-actions a {
    display: inline-flex;
    align-items: center;
    background: #111827;
    color: #fff;
}

.saved-item-actions button {
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #64748b;
    cursor: pointer;
}

.saved-items-empty {
    padding: 36px;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    background: #fff;
    color: #64748b;
    text-align: center;
}

.saved-items-empty strong {
    display: block;
    margin-bottom: 8px;
    color: #111827;
    font-size: 1.2rem;
}

.saved-items-empty a {
    color: #f05a3f;
    font-weight: 900;
    text-decoration: none;
}

@media (max-width: 780px) {
    .saved-header-link span:first-child {
        display: none;
    }

    .saved-header-link::before {
        content: "Sauvegardes";
    }

    .saved-items-hero,
    .saved-items-grid {
        grid-template-columns: 1fr;
    }
}
