/*
Theme Name:     Motta Child
Template:       motta
Version:        1.0
Author:         Racercross
*/

/* CONTENEDOR GENERAL */
.cuenta-racercross {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: inherit;
}

/* ENCABEZADO CON AVATAR Y SALUDO */
.cuenta-encabezado {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: nowrap; /* 🔥 evitar salto en desktop */
    text-align: left;
}

@media (max-width: 600px) {
    .cuenta-encabezado {
        flex-direction: column;
        text-align: center;
    }
}


.cuenta-avatar {
    flex-shrink: 0;
}

.cuenta-avatar img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid #000;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cuenta-saludo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.cuenta-bienvenida {
    font-size: 18px;
    color: #555;
    margin: 0;
}

.cuenta-nombre {
    font-size: 26px;
    font-weight: 700;
    color: #111;
    margin: 0;
}


/* MENÚ DE BOTONES HORIZONTAL */
.cuenta-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 50px;
}

.cuenta-menu a {
    background-color: #000;
    color: #fff;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
}

.cuenta-menu a:hover {
    background-color: #ebdb00;
    color: #000;
}

/* CONTENIDO DE CADA SECCIÓN (ej. edit-address, edit-account...) */
.cuenta-contenido {
    background-color: #fff;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    text-align: justify-all;
}


.page-id-9 h1.page-header__title {
    display: none !important;
}

.verificado-icono {
    width: 20px;
    height: 20px;
    margin-left: 8px;
    vertical-align: middle;
}
