/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */

/* ---- Carte cagnotte fidélité dans le dropdown "Mon compte" ---- */
.login-dropdown__cagnotte {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin: 1.5rem 2rem;
    padding: 1.4rem 1.6rem;
    background: #fbf1e6;
    border: 1px solid #f0e0cd;
    border-radius: 1rem;
    color: #9a6a1e;
    transition: background .2s ease, border-color .2s ease;
}
.login-dropdown__cagnotte:hover {
    background: #f7e8d6;
    border-color: #e6cba6;
    color: #9a6a1e;
}
.login-dropdown__cagnotte-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    flex-shrink: 0;
    border-radius: .8rem;
    background: #fff;
    color: #c8963e;
    font-size: 2rem;
}
.login-dropdown__cagnotte-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.login-dropdown__cagnotte-info small {
    font-size: 1.3rem;
    color: #b08a54;
}
.login-dropdown__cagnotte-info strong {
    font-size: 2rem;
    font-weight: 700;
    color: #3c2f1a;
}
.login-dropdown__cagnotte-arrow {
    margin-left: auto;
    font-size: 1.6rem;
    color: #c8963e;
}
