/* ===========================================================
   Con Cariño · Widget Mi Cuenta — estilos base
   (los controles de Elementor sobrescriben estos valores)
   =========================================================== */

.ccmc-account { width: 100%; }

.ccmc-account .ccmc-heading {
    margin: 0 0 18px;
    font-weight: 800;
    line-height: 1.1;
}

/* --- Estructura de columnas --- */
.ccmc-account .woocommerce {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    align-items: flex-start;
    margin: 0;
}

/* Posición del menú */
.ccmc-pos-left  .woocommerce { flex-direction: row; }
.ccmc-pos-right .woocommerce { flex-direction: row-reverse; }
.ccmc-pos-top   .woocommerce { flex-direction: column; }

.ccmc-account .woocommerce-MyAccount-navigation {
    flex: 0 0 24%;
    max-width: 24%;
    box-sizing: border-box;
}
.ccmc-pos-top .woocommerce-MyAccount-navigation {
    flex-basis: 100%;
    max-width: 100%;
}

.ccmc-account .woocommerce-MyAccount-content {
    flex: 1 1 0;
    min-width: 0;
    box-sizing: border-box;
}

/* Apilar en móvil/tablet */
@media (max-width: 768px) {
    .ccmc-stack-yes .woocommerce { flex-direction: column; }
    .ccmc-stack-yes .woocommerce-MyAccount-navigation {
        flex-basis: 100% !important;
        max-width: 100% !important;
    }
}

/* --- Menú: lista vertical (default agradable) --- */
.ccmc-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 16px;
}
.ccmc-account .woocommerce-MyAccount-navigation li { margin: 0; border: 0; }
.ccmc-account .woocommerce-MyAccount-navigation li a {
    display: block;
    padding: 12px 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    color: #5a4a44;
    transition: background-color .15s ease, color .15s ease;
}
.ccmc-account .woocommerce-MyAccount-navigation li a:hover {
    background: rgba(0,0,0,.04);
}
.ccmc-account .woocommerce-MyAccount-navigation li.is-active a {
    background: #8a3f17;
    color: #fff;
}

/* --- Menú horizontal (píldoras) --- */
.ccmc-nav-horizontal .woocommerce-MyAccount-navigation ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

/* --- Contenido: tarjeta por defecto --- */
.ccmc-account .woocommerce-MyAccount-content {
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 18px;
    padding: clamp(20px, 3vw, 34px);
}
.ccmc-account .woocommerce-MyAccount-content > :first-child { margin-top: 0; }
.ccmc-account .woocommerce-MyAccount-content > :last-child  { margin-bottom: 0; }

/* --- Tablas legibles por defecto --- */
.ccmc-account .woocommerce-MyAccount-content table {
    width: 100%;
    border-collapse: collapse;
}
.ccmc-account .woocommerce-MyAccount-content table thead th {
    text-align: left;
    background: #faf3ea;
    color: #8a3f17;
    font-weight: 700;
}
.ccmc-account .woocommerce-MyAccount-content table th,
.ccmc-account .woocommerce-MyAccount-content table td {
    padding: 14px 16px;
    border: 1px solid rgba(0,0,0,.08);
}

/* --- Aviso cuando falta WooCommerce --- */
.ccmc-fallback {
    padding: 16px 20px;
    border-radius: 12px;
    background: #fff6ea;
    border: 1px solid #ffe0b8;
    color: #b06a20;
    font-weight: 600;
}
