.mca-caja-producto {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    max-width: 650px;
    margin: 24px 0;
    padding: 18px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #fafafa;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.mca-caja-producto .mca-imagen {
    flex: 0 0 120px;
    max-width: 120px;
}

.mca-caja-producto .mca-imagen img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
}

.mca-caja-producto .mca-info {
    flex: 1 1 220px;
    min-width: 200px;
}

.mca-caja-producto .mca-titulo {
    margin: 0 0 8px 0;
    font-size: 17px;
    line-height: 1.3;
}

.mca-caja-producto .mca-titulo a {
    color: #222;
    text-decoration: none;
}

.mca-caja-producto .mca-titulo a:hover {
    text-decoration: underline;
    color: #ff9900;
}

.mca-caja-producto .mca-precio {
    font-size: 20px;
    font-weight: 700;
    color: #B12704;
    margin-bottom: 12px;
}

.mca-caja-producto .mca-boton {
    display: inline-block;
    background: #ff9900;
    color: #111;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.mca-caja-producto .mca-boton:hover {
    background: #e68a00;
    color: #111;
}

.mca-caja-producto .mca-nota {
    margin-top: 8px;
    font-size: 11px;
    color: #888;
}

@media (max-width: 480px) {
    .mca-caja-producto {
        flex-direction: column;
        align-items: flex-start;
    }
    .mca-caja-producto .mca-imagen {
        max-width: 160px;
    }
}
